ETH Price: $2,698.96 (-1.68%)

Token

Son of TRUMP (EXPERT)
 

Overview

Max Total Supply

17,000,000 EXPERT

Holders

22

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
184,074.502465463527324284 EXPERT

Value
$0.00
0x3f467aceabda651a0cf468ac7d0244c08d10e7f1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
AntiBotBABYTOKEN

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-06
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

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


// Dependency file: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC20/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);
}


// Dependency file: @openzeppelin/contracts/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;
    }
}


// Dependency file: @openzeppelin/contracts/token/ERC20/ERC20.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
// import "@openzeppelin/contracts/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 {}
}


// Dependency file: @openzeppelin/contracts/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);
            }
        }
    }
}


// Dependency file: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. 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;
        }
    }
}


// Dependency file: @openzeppelin/contracts/proxy/Clones.sol


// pragma solidity ^0.8.0;

/**
 * @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for
 * deploying minimal proxy contracts, also known as "clones".
 *
 * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies
 * > a minimal bytecode implementation that delegates all calls to a known, fixed address.
 *
 * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`
 * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the
 * deterministic method.
 *
 * _Available since v3.4._
 */
library Clones {
    /**
     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
     *
     * This function uses the create opcode, which should never revert.
     */
    function clone(address implementation) internal returns (address instance) {
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)
            mstore(add(ptr, 0x14), shl(0x60, implementation))
            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)
            instance := create(0, ptr, 0x37)
        }
        require(instance != address(0), "ERC1167: create failed");
    }

    /**
     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
     *
     * This function uses the create2 opcode and a `salt` to deterministically deploy
     * the clone. Using the same `implementation` and `salt` multiple time will revert, since
     * the clones cannot be deployed twice at the same address.
     */
    function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)
            mstore(add(ptr, 0x14), shl(0x60, implementation))
            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)
            instance := create2(0, ptr, 0x37, salt)
        }
        require(instance != address(0), "ERC1167: create2 failed");
    }

    /**
     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
     */
    function predictDeterministicAddress(
        address implementation,
        bytes32 salt,
        address deployer
    ) internal pure returns (address predicted) {
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)
            mstore(add(ptr, 0x14), shl(0x60, implementation))
            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000)
            mstore(add(ptr, 0x38), shl(0x60, deployer))
            mstore(add(ptr, 0x4c), salt)
            mstore(add(ptr, 0x6c), keccak256(ptr, 0x37))
            predicted := keccak256(add(ptr, 0x37), 0x55)
        }
    }

    /**
     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
     */
    function predictDeterministicAddress(address implementation, bytes32 salt)
        internal
        view
        returns (address predicted)
    {
        return predictDeterministicAddress(implementation, salt, address(this));
    }
}


// Dependency file: contracts/libs/SafeERC20NoRevert.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

/**
 * @title SafeERC20NoRevert
 * @dev Taken from OpenZeppelin's SafeERC20 implementation, just return a bool value without reverting
 * Clients using this function need to check for the return value themselves.
 */
library SafeERC20NoRevert {
    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal returns (bool) {
        (bool success, bytes memory returndata) = address(token).call(
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
        return
            success &&
            (returndata.length == 0 || abi.decode(returndata, (bool))) &&
            address(token).code.length > 0;
    }
}


// Dependency file: contracts/interfaces/IUniswapV2Factory.sol

// pragma solidity >=0.5.0;

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


// Dependency file: contracts/interfaces/IUniswapV2Router02.sol

// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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


// Dependency file: contracts/interfaces/IPinkAntiBot.sol

// pragma solidity >=0.5.0;

interface IPinkAntiBot {
  function setTokenOwner(address owner) external;

  function onPreTransferCheck(
    address from,
    address to,
    uint256 amount
  ) external;
}


// Dependency file: @openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol


// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @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);
}


// Dependency file: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20MetadataUpgradeable is IERC20Upgradeable {
    /**
     * @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);
}


// Dependency file: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol


// pragma solidity ^0.8.0;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}


// Dependency file: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol


// pragma solidity ^0.8.0;
// import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[50] private __gap;
}


// Dependency file: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
// import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol";
// import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
// import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
    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.
     */
    function __ERC20_init(string memory name_, string memory symbol_) internal initializer {
        __Context_init_unchained();
        __ERC20_init_unchained(name_, symbol_);
    }

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer {
        _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 {}
    uint256[45] private __gap;
}


// Dependency file: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
// import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
    uint256[49] private __gap;
}


// Dependency file: contracts/interfaces/IUniswapV2Pair.sol

// pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// Dependency file: contracts/libs/SafeMathInt.sol

// pragma solidity =0.8.4;

/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}


// Dependency file: contracts/libs/SafeMathUint.sol

// pragma solidity =0.8.4;

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}


// Dependency file: contracts/baby/IterableMapping.sol

// pragma solidity =0.8.4;

library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint256) values;
        mapping(address => uint256) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) public view returns (uint256) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key)
        public
        view
        returns (int256)
    {
        if (!map.inserted[key]) {
            return -1;
        }
        return int256(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint256 index)
        public
        view
        returns (address)
    {
        return map.keys[index];
    }

    function size(Map storage map) public view returns (uint256) {
        return map.keys.length;
    }

    function set(
        Map storage map,
        address key,
        uint256 val
    ) public {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(Map storage map, address key) public {
        if (!map.inserted[key]) {
            return;
        }

        delete map.inserted[key];
        delete map.values[key];

        uint256 index = map.indexOf[key];
        uint256 lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];

        map.indexOf[lastKey] = index;
        delete map.indexOf[key];

        map.keys[index] = lastKey;
        map.keys.pop();
    }
}


// Dependency file: contracts/baby/BabyTokenDividendTracker.sol

// pragma solidity =0.8.4;

// import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
// import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/interfaces/IUniswapV2Factory.sol";
// import "contracts/interfaces/IUniswapV2Router02.sol";
// import "contracts/interfaces/IUniswapV2Pair.sol";
// import "contracts/libs/SafeMathInt.sol";
// import "contracts/libs/SafeMathUint.sol";
// import "contracts/libs/SafeERC20NoRevert.sol";
// import "contracts/baby/IterableMapping.sol";

/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function dividendOf(address _owner) external view returns (uint256);

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
    ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
    function withdrawDividend() external;

    /// @dev This event MUST emit when ether is distributed to token holders.
    /// @param from The address which sends ether to this contract.
    /// @param weiAmount The amount of distributed ether in wei.
    event DividendsDistributed(address indexed from, uint256 weiAmount);

    /// @dev This event MUST emit when an address withdraws their dividend.
    /// @param to The address which withdraws ether from this contract.
    /// @param weiAmount The amount of withdrawn ether in wei.
    event DividendWithdrawn(address indexed to, uint256 weiAmount);
}

/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface DividendPayingTokenOptionalInterface {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner)
        external
        view
        returns (uint256);

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner)
        external
        view
        returns (uint256);

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner)
        external
        view
        returns (uint256);
}

/// @title Dividend-Paying Token
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev A mintable ERC20 token that allows anyone to pay and distribute ether
///  to token holders as dividends and allows token holders to withdraw their dividends.
///  Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
contract DividendPayingToken is
    ERC20Upgradeable,
    OwnableUpgradeable,
    DividendPayingTokenInterface,
    DividendPayingTokenOptionalInterface
{
    using SafeMath for uint256;
    using SafeMathUint for uint256;
    using SafeMathInt for int256;

    address public rewardToken;

    // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
    // For more discussion about choosing the value of `magnitude`,
    //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
    uint256 internal constant magnitude = 2**128;

    uint256 internal magnifiedDividendPerShare;

    // About dividendCorrection:
    // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
    //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
    // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
    //   `dividendOf(_user)` should not be changed,
    //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
    // To keep the `dividendOf(_user)` unchanged, we add a correction term:
    //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
    //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
    //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
    // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
    mapping(address => int256) internal magnifiedDividendCorrections;
    mapping(address => uint256) internal withdrawnDividends;

    uint256 public totalDividendsDistributed;

    function __DividendPayingToken_init(
        address _rewardToken,
        string memory _name,
        string memory _symbol
    ) internal initializer {
        __Ownable_init();
        __ERC20_init(_name, _symbol);
        rewardToken = _rewardToken;
    }

    function distributeCAKEDividends(uint256 amount) public onlyOwner {
        require(totalSupply() > 0);

        if (amount > 0) {
            magnifiedDividendPerShare = magnifiedDividendPerShare.add(
                (amount).mul(magnitude) / totalSupply()
            );
            emit DividendsDistributed(msg.sender, amount);

            totalDividendsDistributed = totalDividendsDistributed.add(amount);
        }
    }

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
    function withdrawDividend() public virtual override {
        _withdrawDividendOfUser(payable(msg.sender));
    }

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
    function _withdrawDividendOfUser(address payable user)
        internal
        returns (uint256)
    {
        uint256 _withdrawableDividend = withdrawableDividendOf(user);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[user] = withdrawnDividends[user].add(
                _withdrawableDividend
            );
            emit DividendWithdrawn(user, _withdrawableDividend);

            bool success = SafeERC20NoRevert.safeTransfer(
                IERC20(rewardToken),
                user,
                _withdrawableDividend
            );

            if (!success) {
                withdrawnDividends[user] = withdrawnDividends[user].sub(
                    _withdrawableDividend
                );
                return 0;
            }
            return _withdrawableDividend;
        }

        return 0;
    }

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function dividendOf(address _owner) public view override returns (uint256) {
        return withdrawableDividendOf(_owner);
    }

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner)
        public
        view
        override
        returns (uint256)
    {
        return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
    }

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner)
        public
        view
        override
        returns (uint256)
    {
        return withdrawnDividends[_owner];
    }

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner)
        public
        view
        override
        returns (uint256)
    {
        return
            magnifiedDividendPerShare
                .mul(balanceOf(_owner))
                .toInt256Safe()
                .add(magnifiedDividendCorrections[_owner])
                .toUint256Safe() / magnitude;
    }

    /// @dev Internal function that transfer tokens from one address to another.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param from The address to transfer from.
    /// @param to The address to transfer to.
    /// @param value The amount to be transferred.
    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal virtual override {
        require(false);

        int256 _magCorrection = magnifiedDividendPerShare
            .mul(value)
            .toInt256Safe();
        magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from]
            .add(_magCorrection);
        magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(
            _magCorrection
        );
    }

    /// @dev Internal function that mints tokens to an account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account that will receive the created tokens.
    /// @param value The amount that will be created.
    function _mint(address account, uint256 value) internal override {
        super._mint(account, value);

        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[
            account
        ].sub((magnifiedDividendPerShare.mul(value)).toInt256Safe());
    }

    /// @dev Internal function that burns an amount of the token of a given account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account whose tokens will be burnt.
    /// @param value The amount that will be burnt.
    function _burn(address account, uint256 value) internal override {
        super._burn(account, value);

        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[
            account
        ].add((magnifiedDividendPerShare.mul(value)).toInt256Safe());
    }

    function _setBalance(address account, uint256 newBalance) internal {
        uint256 currentBalance = balanceOf(account);

        if (newBalance > currentBalance) {
            uint256 mintAmount = newBalance.sub(currentBalance);
            _mint(account, mintAmount);
        } else if (newBalance < currentBalance) {
            uint256 burnAmount = currentBalance.sub(newBalance);
            _burn(account, burnAmount);
        }
    }
}

contract BABYTOKENDividendTracker is OwnableUpgradeable, DividendPayingToken {
    using SafeMath for uint256;
    using SafeMathInt for int256;
    using IterableMapping for IterableMapping.Map;

    IterableMapping.Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping(address => bool) public excludedFromDividends;

    mapping(address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Claim(
        address indexed account,
        uint256 amount,
        bool indexed automatic
    );

    function initialize(
        address rewardToken_,
        uint256 minimumTokenBalanceForDividends_
    ) external initializer {
        DividendPayingToken.__DividendPayingToken_init(
            rewardToken_,
            "DIVIDEND_TRACKER",
            "DIVIDEND_TRACKER"
        );
        claimWait = 3600;
        minimumTokenBalanceForDividends = minimumTokenBalanceForDividends_;
    }

    function _transfer(
        address,
        address,
        uint256
    ) internal pure override {
        require(false, "Dividend_Tracker: No transfers allowed");
    }

    function withdrawDividend() public pure override {
        require(
            false,
            "Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main BABYTOKEN contract."
        );
    }

    function excludeFromDividends(address account) external onlyOwner {
        require(!excludedFromDividends[account]);
        excludedFromDividends[account] = true;

        _setBalance(account, 0);
        tokenHoldersMap.remove(account);

        emit ExcludeFromDividends(account);
    }

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

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(
            newClaimWait >= 3600 && newClaimWait <= 86400,
            "Dividend_Tracker: claimWait must be updated to between 1 and 24 hours"
        );
        require(
            newClaimWait != claimWait,
            "Dividend_Tracker: Cannot update claimWait to same value"
        );
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

    function updateMinimumTokenBalanceForDividends(uint256 amount)
        external
        onlyOwner
    {
        minimumTokenBalanceForDividends = amount;
    }

    function getLastProcessedIndex() external view returns (uint256) {
        return lastProcessedIndex;
    }

    function getNumberOfTokenHolders() external view returns (uint256) {
        return tokenHoldersMap.keys.length;
    }

    function getAccount(address _account)
        public
        view
        returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable
        )
    {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

        if (index >= 0) {
            if (uint256(index) > lastProcessedIndex) {
                iterationsUntilProcessed = index.sub(
                    int256(lastProcessedIndex)
                );
            } else {
                uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length >
                    lastProcessedIndex
                    ? tokenHoldersMap.keys.length.sub(lastProcessedIndex)
                    : 0;

                iterationsUntilProcessed = index.add(
                    int256(processesUntilEndOfArray)
                );
            }
        }

        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0;

        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp
            ? nextClaimTime.sub(block.timestamp)
            : 0;
    }

    function getAccountAtIndex(uint256 index)
        public
        view
        returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        if (index >= tokenHoldersMap.size()) {
            return (address(0), -1, -1, 0, 0, 0, 0, 0);
        }

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

    function canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
        if (lastClaimTime > block.timestamp) {
            return false;
        }

        return block.timestamp.sub(lastClaimTime) >= claimWait;
    }

    function setBalance(address payable account, uint256 newBalance)
        external
        onlyOwner
    {
        if (excludedFromDividends[account]) {
            return;
        }
        if (newBalance >= minimumTokenBalanceForDividends) {
            _setBalance(account, newBalance);
            tokenHoldersMap.set(account, newBalance);
        } else {
            _setBalance(account, 0);
            tokenHoldersMap.remove(account);
        }
        processAccount(account, true);
    }

    function process(uint256 gas)
        public
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

        if (numberOfTokenHolders == 0) {
            return (0, 0, lastProcessedIndex);
        }

        uint256 _lastProcessedIndex = lastProcessedIndex;

        uint256 gasUsed = 0;

        uint256 gasLeft = gasleft();

        uint256 iterations = 0;
        uint256 claims = 0;

        while (gasUsed < gas && iterations < numberOfTokenHolders) {
            _lastProcessedIndex++;

            if (_lastProcessedIndex >= tokenHoldersMap.keys.length) {
                _lastProcessedIndex = 0;
            }

            address account = tokenHoldersMap.keys[_lastProcessedIndex];

            if (canAutoClaim(lastClaimTimes[account])) {
                if (processAccount(payable(account), true)) {
                    claims++;
                }
            }

            iterations++;

            uint256 newGasLeft = gasleft();

            if (gasLeft > newGasLeft) {
                gasUsed = gasUsed.add(gasLeft.sub(newGasLeft));
            }

            gasLeft = newGasLeft;
        }

        lastProcessedIndex = _lastProcessedIndex;

        return (iterations, claims, lastProcessedIndex);
    }

    function processAccount(address payable account, bool automatic)
        public
        onlyOwner
        returns (bool)
    {
        uint256 amount = _withdrawDividendOfUser(account);

        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
            return true;
        }

        return false;
    }
}


// Dependency file: contracts/BaseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard,
    antiBotStandard,
    liquidityGenerator,
    antiBotLiquidityGenerator,
    baby,
    antiBotBaby,
    buybackBaby,
    antiBotBuybackBaby
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}


// Root file: contracts/baby/AntiBotBabyToken.sol

pragma solidity =0.8.4;

// import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "@openzeppelin/contracts/proxy/Clones.sol";
// import "@openzeppelin/contracts/utils/Address.sol";

// import "contracts/libs/SafeERC20NoRevert.sol";
// import "contracts/interfaces/IUniswapV2Factory.sol";
// import "contracts/interfaces/IUniswapV2Router02.sol";
// import "contracts/interfaces/IPinkAntiBot.sol";
// import "contracts/baby/BabyTokenDividendTracker.sol";
// import "contracts/BaseToken.sol";

contract AntiBotBABYTOKEN is ERC20, Ownable, BaseToken {
    using SafeMath for uint256;
    using Address for address;
    using Address for address payable;
    using SafeERC20 for IERC20;

    uint256 public constant VERSION = 6;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private swapping;

    BABYTOKENDividendTracker public dividendTracker;

    address public rewardToken;

    uint256 public swapTokensAtAmount;

    uint256 public tokenRewardsFee;
    uint256 public liquidityFee;
    uint256 public marketingFee;
    uint256 public totalFees;

    address public _marketingWalletAddress;

    uint256 public gasForProcessing;

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

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

    IPinkAntiBot public pinkAntiBot;
    bool public enableAntiBot;

    event ExcludeFromFees(address indexed account);
    event ExcludeMultipleAccountsFromFees(address[] accounts);

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

    event GasForProcessingUpdated(
        uint256 indexed newValue,
        uint256 indexed oldValue
    );

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

    event SendDividends(uint256 tokensSwapped, uint256 amount);
    event SendDividendsReverted(uint256 tokensSwapped, uint256 amount);

    event ProcessedDividendTracker(
        uint256 iterations,
        uint256 claims,
        uint256 lastProcessedIndex,
        bool indexed automatic,
        uint256 gas,
        address indexed processor
    );

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 totalSupply_,
        address[5] memory addrs, // reward, router, marketing wallet, dividendTracker, anti bot
        uint256[3] memory feeSettings, // rewards, liquidity, marketing
        uint256 minimumTokenBalanceForDividends_,
        address serviceFeeReceiver_,
        uint256 serviceFee_
    ) payable ERC20(name_, symbol_) {
        rewardToken = addrs[0];
        _marketingWalletAddress = addrs[2];
        require(
            msg.sender != _marketingWalletAddress,
            "Owner and marketing wallet cannot be the same"
        );
        require(
            !_marketingWalletAddress.isContract(),
            "Marketing wallet cannot be a contract"
        );

        pinkAntiBot = IPinkAntiBot(addrs[4]);
        pinkAntiBot.setTokenOwner(owner());
        enableAntiBot = true;

        tokenRewardsFee = feeSettings[0];
        liquidityFee = feeSettings[1];
        marketingFee = feeSettings[2];
        totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee);
        require(totalFees <= 25, "Total fee is over 25%");
        swapTokensAtAmount = totalSupply_.div(1000); // 0.1%

        // use by default 300,000 gas to process auto-claiming dividends
        gasForProcessing = 300000;

        dividendTracker = BABYTOKENDividendTracker(
            payable(Clones.clone(addrs[3]))
        );
        dividendTracker.initialize(
            rewardToken,
            minimumTokenBalanceForDividends_
        );

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(addrs[1]);
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(owner());
        dividendTracker.excludeFromDividends(address(0xdead));
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));
        // exclude from paying fees or having max transaction amount
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[_marketingWalletAddress] = true;
        _isExcludedFromFees[address(this)] = true;
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), totalSupply_);

        emit TokenCreated(
            owner(),
            address(this),
            TokenType.antiBotBaby,
            VERSION
        );

        payable(serviceFeeReceiver_).transfer(serviceFee_);
    }

    function setEnableAntiBot(bool _enable) external onlyOwner {
        enableAntiBot = _enable;
    }

    receive() external payable {}

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
        require(
            amount > totalSupply() / 10 ** 5,
            "BABYTOKEN: Amount must be greater than 0.001% of total supply"
        );
        swapTokensAtAmount = amount;
    }

    function excludeFromFees(address account) external onlyOwner {
        require(
            !_isExcludedFromFees[account],
            "BABYTOKEN: Account is already excluded"
        );
        _isExcludedFromFees[account] = true;

        emit ExcludeFromFees(account);
    }

    function excludeMultipleAccountsFromFees(
        address[] calldata accounts
    ) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = true;
        }

        emit ExcludeMultipleAccountsFromFees(accounts);
    }

    function setMarketingWallet(address payable wallet) external onlyOwner {
        require(
            wallet != address(0),
            "BABYTOKEN: The marketing wallet cannot be the value of zero"
        );
        require(!wallet.isContract(), "Marketing wallet cannot be a contract");
        _marketingWalletAddress = wallet;
    }

    function setTokenRewardsFee(uint256 value) external onlyOwner {
        tokenRewardsFee = value;
        totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee);
        require(totalFees <= 25, "Total fee is over 25%");
    }

    function setLiquiditFee(uint256 value) external onlyOwner {
        liquidityFee = value;
        totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee);
        require(totalFees <= 25, "Total fee is over 25%");
    }

    function setMarketingFee(uint256 value) external onlyOwner {
        marketingFee = value;
        totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee);
        require(totalFees <= 25, "Total fee is over 25%");
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "BABYTOKEN: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        if (value) {
            dividendTracker.excludeFromDividends(pair);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        require(
            newValue >= 200000 && newValue <= 500000,
            "BABYTOKEN: gasForProcessing must be between 200,000 and 500,000"
        );
        require(
            newValue != gasForProcessing,
            "BABYTOKEN: Cannot update gasForProcessing to same value"
        );
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

    function updateClaimWait(uint256 claimWait) external onlyOwner {
        dividendTracker.updateClaimWait(claimWait);
    }

    function getClaimWait() external view returns (uint256) {
        return dividendTracker.claimWait();
    }

    function updateMinimumTokenBalanceForDividends(
        uint256 amount
    ) external onlyOwner {
        dividendTracker.updateMinimumTokenBalanceForDividends(amount);
    }

    function getMinimumTokenBalanceForDividends()
        external
        view
        returns (uint256)
    {
        return dividendTracker.minimumTokenBalanceForDividends();
    }

    function getTotalDividendsDistributed() external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed();
    }

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

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

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

    function excludeFromDividends(address account) external onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }

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

    function getAccountDividendsInfo(
        address account
    )
        external
        view
        returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccount(account);
    }

    function getAccountDividendsInfoAtIndex(
        uint256 index
    )
        external
        view
        returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccountAtIndex(index);
    }

    function processDividendTracker(uint256 gas) external {
        (
            uint256 iterations,
            uint256 claims,
            uint256 lastProcessedIndex
        ) = dividendTracker.process(gas);
        emit ProcessedDividendTracker(
            iterations,
            claims,
            lastProcessedIndex,
            false,
            gas,
            tx.origin
        );
    }

    function claim() external {
        dividendTracker.processAccount(payable(msg.sender), false);
    }

    function getLastProcessedIndex() external view returns (uint256) {
        return dividendTracker.getLastProcessedIndex();
    }

    function getNumberOfDividendTokenHolders() external view returns (uint256) {
        return dividendTracker.getNumberOfTokenHolders();
    }

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

        if (enableAntiBot) {
            pinkAntiBot.onPreTransferCheck(from, to, amount);
        }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            from != owner() &&
            to != owner() &&
            totalFees > 0
        ) {
            swapping = true;

            if (marketingFee > 0) {
                uint256 marketingTokens = contractTokenBalance
                    .mul(marketingFee)
                    .div(totalFees);
                swapAndSendToFee(marketingTokens);
            }

            if (liquidityFee > 0) {
                uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div(
                    totalFees
                );
                swapAndLiquify(swapTokens);
            }

            uint256 sellTokens = balanceOf(address(this));
            if (sellTokens > 0) {
                swapAndSendDividends(sellTokens);
            }

            swapping = false;
        }

        bool takeFee = !swapping;

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

        if (takeFee && totalFees > 0) {
            uint256 fees = amount.mul(totalFees).div(100);
            amount = amount.sub(fees);

            super._transfer(from, address(this), fees);
        }

        super._transfer(from, to, amount);

        try
            dividendTracker.setBalance(payable(from), balanceOf(from))
        {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}

        if (!swapping) {
            uint256 gas = gasForProcessing;

            try dividendTracker.process(gas) returns (
                uint256 iterations,
                uint256 claims,
                uint256 lastProcessedIndex
            ) {
                emit ProcessedDividendTracker(
                    iterations,
                    claims,
                    lastProcessedIndex,
                    true,
                    gas,
                    tx.origin
                );
            } catch {}
        }
    }

    function swapAndSendToFee(uint256 tokens) private {
        uint256 initialCAKEBalance = IERC20(rewardToken).balanceOf(
            address(this)
        );

        swapTokensForCake(tokens);
        uint256 newBalance = (IERC20(rewardToken).balanceOf(address(this))).sub(
            initialCAKEBalance
        );
        IERC20(rewardToken).safeTransfer(_marketingWalletAddress, newBalance);
    }

    function swapAndLiquify(uint256 tokens) private {
        // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

    function swapTokensForCake(uint256 tokenAmount) private {
        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        path[2] = rewardToken;

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

        // make the swap
        try
            uniswapV2Router
                .swapExactTokensForTokensSupportingFeeOnTransferTokens(
                    tokenAmount,
                    0,
                    path,
                    address(this),
                    block.timestamp
                )
        {} catch {}
    }

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

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

    function swapAndSendDividends(uint256 tokens) private {
        swapTokensForCake(tokens);
        uint256 dividends = IERC20(rewardToken).balanceOf(address(this));
        bool success = SafeERC20NoRevert.safeTransfer(
            IERC20(rewardToken),
            address(dividendTracker),
            dividends
        );
        if (success) {
            try dividendTracker.distributeCAKEDividends(dividends) {} catch {
                emit SendDividendsReverted(tokens, dividends);
                return;
            }
            emit SendDividends(tokens, dividends);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address[5]","name":"addrs","type":"address[5]"},{"internalType":"uint256[3]","name":"feeSettings","type":"uint256[3]"},{"internalType":"uint256","name":"minimumTokenBalanceForDividends_","type":"uint256"},{"internalType":"address","name":"serviceFeeReceiver_","type":"address"},{"internalType":"uint256","name":"serviceFee_","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","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":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividendsReverted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract BABYTOKENDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"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":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"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":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinimumTokenBalanceForDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","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":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pinkAntiBot","outputs":[{"internalType":"contract IPinkAntiBot","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setEnableAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setLiquiditFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTokenRewardsFee","outputs":[],"stateMutability":"nonpayable","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":"tokenRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMinimumTokenBalanceForDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040516200434638038062004346833981016040819052620000269162000e2c565b8751889088906200003f90600390602085019062000c47565b5080516200005590600490602084019062000c47565b505050620000726200006c620008b660201b60201c565b620008ba565b8451600980546001600160a01b03199081166001600160a01b03938416179091556040870151600f805490921692169182179055331415620001115760405162461bcd60e51b815260206004820152602d60248201527f4f776e657220616e64206d61726b6574696e672077616c6c65742063616e6e6f60448201526c74206265207468652073616d6560981b60648201526084015b60405180910390fd5b600f5462000134906001600160a01b03166200090c602090811b62001a4617901c565b15620001915760405162461bcd60e51b815260206004820152602560248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265206120636f6e6044820152641d1c9858dd60da1b606482015260840162000108565b8460046020020151601380546001600160a01b0319166001600160a01b0390921691821790556318e02bd9620001cf6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b1580156200021157600080fd5b505af115801562000226573d6000803e3d6000fd5b50506013805460ff60a01b1916600160a01b17905550508351600b819055602080860151600c8190556040870151600d8190556200028993909262000275929062000921811b62001a4c17901c565b6200092160201b62001a4c1790919060201c565b600e81905560191015620002e05760405162461bcd60e51b815260206004820152601560248201527f546f74616c20666565206973206f766572203235250000000000000000000000604482015260640162000108565b620002fc6103e8876200093660201b62001a581790919060201c565b600a55620493e06010556200032385600360200201516200094460201b62001a641760201c565b600880546001600160a01b0319166001600160a01b0392831690811790915560095460405163cd6dc68760e01b815292166004830152602482018590529063cd6dc68790604401600060405180830381600087803b1580156200038557600080fd5b505af11580156200039a573d6000803e3d6000fd5b50505050600085600160058110620003c257634e487b7160e01b600052603260045260246000fd5b602002015190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040557600080fd5b505afa1580156200041a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000440919062000e0f565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200048957600080fd5b505afa1580156200049e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c4919062000e0f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200050d57600080fd5b505af115801562000522573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000548919062000e0f565b600680546001600160a01b038086166001600160a01b0319928316179092556007805492841692909116919091179055905062000587816001620009f3565b60085460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620005ce57600080fd5b505af1158015620005e3573d6000803e3d6000fd5b505060085460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200062d57600080fd5b505af115801562000642573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db090506200066c6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620006ae57600080fd5b505af1158015620006c3573d6000803e3d6000fd5b505060085460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200070f57600080fd5b505af115801562000724573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200077057600080fd5b505af115801562000785573d6000803e3d6000fd5b505050506001601160006200079f6200091260201b60201c565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600f549091168152601190925280822080548416600190811790915530835291208054909216179055620008146200080d6005546001600160a01b031690565b8962000b62565b30620008286005546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe3562600560066040516200086692919062000f3d565b60405180910390a36040516001600160a01b0385169084156108fc029085906000818181858888f19350505050158015620008a5573d6000803e3d6000fd5b505050505050505050505062001061565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3b151590565b6005546001600160a01b031690565b60006200092f828462000fc8565b9392505050565b60006200092f828462000fed565b60006040517f3d602d80600a3d3981f3363d3d373d3d3d363d7300000000000000000000000081528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b038116620009ee5760405162461bcd60e51b815260206004820152601660248201527f455243313136373a20637265617465206661696c656400000000000000000000604482015260640162000108565b919050565b6001600160a01b03821660009081526012602052604090205460ff161515811515141562000a965760405162461bcd60e51b815260206004820152604360248201527f42414259544f4b454e3a204175746f6d61746564206d61726b6574206d616b6560448201527f72207061697220697320616c72656164792073657420746f20746861742076616064820152626c756560e81b608482015260a40162000108565b6001600160a01b0382166000908152601260205260409020805460ff1916821580159190911790915562000b265760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801562000b0c57600080fd5b505af115801562000b21573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03821662000bba5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000108565b806002600082825462000bce919062000fc8565b90915550506001600160a01b0382166000908152602081905260408120805483929062000bfd90849062000fc8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000c55906200100e565b90600052602060002090601f01602090048101928262000c79576000855562000cc4565b82601f1062000c9457805160ff191683800117855562000cc4565b8280016001018555821562000cc4579182015b8281111562000cc457825182559160200191906001019062000ca7565b5062000cd292915062000cd6565b5090565b5b8082111562000cd2576000815560010162000cd7565b80516001600160a01b0381168114620009ee57600080fd5b600082601f83011262000d16578081fd5b604051606081016001600160401b038111828210171562000d3b5762000d3b6200104b565b60405280836060810186101562000d50578384fd5b835b600381101562000d7357815183526020928301929091019060010162000d52565b509195945050505050565b600082601f83011262000d8f578081fd5b81516001600160401b0381111562000dab5762000dab6200104b565b602062000dc1601f8301601f1916820162000f95565b828152858284870101111562000dd5578384fd5b835b8381101562000df457858101830151828201840152820162000dd7565b8381111562000e0557848385840101525b5095945050505050565b60006020828403121562000e21578081fd5b6200092f8262000ced565b6000806000806000806000806101c0898b03121562000e49578384fd5b88516001600160401b038082111562000e60578586fd5b62000e6e8c838d0162000d7e565b995060209150818b01518181111562000e85578687fd5b62000e938d828e0162000d7e565b9950505060408a015196508a607f8b011262000ead578485fd5b62000eb762000f6a565b8060608c016101008d018e81111562000ece578889fd5b885b600581101562000ef85762000ee58362000ced565b8552938501939185019160010162000ed0565b5082995062000f088f8262000d05565b98505050505050610160890151925062000f266101808a0162000ced565b91506101a089015190509295985092959890939650565b604081016008841062000f6057634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60405160a081016001600160401b038111828210171562000f8f5762000f8f6200104b565b60405290565b604051601f8201601f191681016001600160401b038111828210171562000fc05762000fc06200104b565b604052919050565b6000821982111562000fe857634e487b7160e01b81526011600452602481fd5b500190565b6000826200100957634e487b7160e01b81526012600452602481fd5b500490565b600181811c908216806200102357607f821691505b602082108114156200104557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6132d580620010716000396000f3fe6080604052600436106103395760003560e01c806370a08231116101ab578063afa4f3b2116100f7578063e708a0f911610095578063f27fd2541161006f578063f27fd254146109ce578063f2fde38b146109ee578063f7c618c114610a0e578063ffa1ad7414610a2e57600080fd5b8063e708a0f914610983578063e7841ec014610999578063e98030c7146109ae57600080fd5b8063c705c569116100d1578063c705c569146108e7578063dd62ed3e14610907578063e2f456051461094d578063e57f14e11461096357600080fd5b8063afa4f3b214610882578063b62496f5146108a2578063bdd4f29f146108d257600080fd5b80639c1b8af511610164578063a8b9d2401161013e578063a8b9d240146107bd578063a9059cbb146107dd578063ad56c13c146107fd578063adefd90c1461086257600080fd5b80639c1b8af514610772578063a26579ad14610788578063a457c2d71461079d57600080fd5b806370a08231146106be578063715018a6146106f4578063871c128d146107095780638da5cb5b1461072957806395d89b411461074757806398118cb41461075c57600080fd5b806331e79db0116102855780634fbee1931161022357806364b0f653116101fd57806364b0f653146106535780636843cd84146106685780636b67c4df14610688578063700bb1911461069e57600080fd5b80634fbee193146105da5780635d098b3814610613578063625e764c1461063357600080fd5b80634144d9e41161025f5780634144d9e41461056557806349bd5a5e146105855780634e71d92d146105a55780634ed080c7146105ba57600080fd5b806331e79db0146105055780633950935114610525578063407133d21461054557600080fd5b806318160ddd116102f2578063241ec3be116102cc578063241ec3be146104935780632c1f5216146104b457806330bb4cff146104d4578063313ce567146104e957600080fd5b806318160ddd1461043e5780631f46b1c61461045357806323b872dd1461047357600080fd5b806306fdde0314610345578063095ea7b3146103705780630c43c79b146103a05780630dcb2e89146103c257806313114a9d146103e25780631694505e1461040657600080fd5b3661034057005b600080fd5b34801561035157600080fd5b5061035a610a43565b6040516103679190613016565b60405180910390f35b34801561037c57600080fd5b5061039061038b366004612e7c565b610ad5565b6040519015158152602001610367565b3480156103ac57600080fd5b506103c06103bb366004612ea7565b610aeb565b005b3480156103ce57600080fd5b506103c06103dd366004612f4f565b610bdc565b3480156103ee57600080fd5b506103f8600e5481565b604051908152602001610367565b34801561041257600080fd5b50600654610426906001600160a01b031681565b6040516001600160a01b039091168152602001610367565b34801561044a57600080fd5b506002546103f8565b34801561045f57600080fd5b506103c061046e366004612f17565b610c68565b34801561047f57600080fd5b5061039061048e366004612dd3565b610cb0565b34801561049f57600080fd5b5060135461039090600160a01b900460ff1681565b3480156104c057600080fd5b50600854610426906001600160a01b031681565b3480156104e057600080fd5b506103f8610d5c565b3480156104f557600080fd5b5060405160128152602001610367565b34801561051157600080fd5b506103c0610520366004612d63565b610dde565b34801561053157600080fd5b50610390610540366004612e7c565b610e3a565b34801561055157600080fd5b50601354610426906001600160a01b031681565b34801561057157600080fd5b50600f54610426906001600160a01b031681565b34801561059157600080fd5b50600754610426906001600160a01b031681565b3480156105b157600080fd5b506103c0610e76565b3480156105c657600080fd5b506103c06105d5366004612f4f565b610efd565b3480156105e657600080fd5b506103906105f5366004612d63565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561061f57600080fd5b506103c061062e366004612d63565b610f95565b34801561063f57600080fd5b506103c061064e366004612f4f565b6110c3565b34801561065f57600080fd5b506103f8611107565b34801561067457600080fd5b506103f8610683366004612d63565b61114c565b34801561069457600080fd5b506103f8600d5481565b3480156106aa57600080fd5b506103c06106b9366004612f4f565b6111d1565b3480156106ca57600080fd5b506103f86106d9366004612d63565b6001600160a01b031660009081526020819052604090205490565b34801561070057600080fd5b506103c06112b3565b34801561071557600080fd5b506103c0610724366004612f4f565b6112e9565b34801561073557600080fd5b506005546001600160a01b0316610426565b34801561075357600080fd5b5061035a611446565b34801561076857600080fd5b506103f8600c5481565b34801561077e57600080fd5b506103f860105481565b34801561079457600080fd5b506103f8611455565b3480156107a957600080fd5b506103906107b8366004612e7c565b61149a565b3480156107c957600080fd5b506103f86107d8366004612d63565b611533565b3480156107e957600080fd5b506103906107f8366004612e7c565b611566565b34801561080957600080fd5b5061081d610818366004612d63565b611573565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610367565b34801561086e57600080fd5b506103c061087d366004612f4f565b61161d565b34801561088e57600080fd5b506103c061089d366004612f4f565b611661565b3480156108ae57600080fd5b506103906108bd366004612d63565b60126020526000908152604090205460ff1681565b3480156108de57600080fd5b506103f861171b565b3480156108f357600080fd5b50610390610902366004612d63565b611760565b34801561091357600080fd5b506103f8610922366004612d9b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561095957600080fd5b506103f8600a5481565b34801561096f57600080fd5b506103c061097e366004612d63565b6117de565b34801561098f57600080fd5b506103f8600b5481565b3480156109a557600080fd5b506103f86118cc565b3480156109ba57600080fd5b506103c06109c9366004612f4f565b611911565b3480156109da57600080fd5b5061081d6109e9366004612f4f565b61196c565b3480156109fa57600080fd5b506103c0610a09366004612d63565b6119ae565b348015610a1a57600080fd5b50600954610426906001600160a01b031681565b348015610a3a57600080fd5b506103f8600681565b606060038054610a5290613210565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e90613210565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b5050505050905090565b6000610ae2338484611b01565b50600192915050565b6005546001600160a01b03163314610b1e5760405162461bcd60e51b8152600401610b159061308c565b60405180910390fd5b60005b81811015610b9e57600160116000858585818110610b4f57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b649190612d63565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610b968161324b565b915050610b21565b507f6f058e77d614a1061fc197c99cdde12f5fa414c92529bbe8f48b02f8d9f4f95d8282604051610bd0929190612fc8565b60405180910390a15050565b6005546001600160a01b03163314610c065760405162461bcd60e51b8152600401610b159061308c565b600854604051630dcb2e8960e01b8152600481018390526001600160a01b0390911690630dcb2e89906024015b600060405180830381600087803b158015610c4d57600080fd5b505af1158015610c61573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610c925760405162461bcd60e51b8152600401610b159061308c565b60138054911515600160a01b0260ff60a01b19909216919091179055565b6000610cbd848484611c25565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d425760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b15565b610d4f8533858403611b01565b60019150505b9392505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610da157600080fd5b505afa158015610db5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd99190612f67565b905090565b6005546001600160a01b03163314610e085760405162461bcd60e51b8152600401610b159061308c565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401610c33565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ae2918590610e71908690613176565b611b01565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610ec257600080fd5b505af1158015610ed6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efa9190612f33565b50565b6005546001600160a01b03163314610f275760405162461bcd60e51b8152600401610b159061308c565b600b819055600d54600c54610f489190610f42908490611a4c565b90611a4c565b600e81905560191015610efa5760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610b15565b6005546001600160a01b03163314610fbf5760405162461bcd60e51b8152600401610b159061308c565b6001600160a01b03811661103b5760405162461bcd60e51b815260206004820152603b60248201527f42414259544f4b454e3a20546865206d61726b6574696e672077616c6c65742060448201527f63616e6e6f74206265207468652076616c7565206f66207a65726f00000000006064820152608401610b15565b6001600160a01b0381163b156110a15760405162461bcd60e51b815260206004820152602560248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265206120636f6e6044820152641d1c9858dd60da1b6064820152608401610b15565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110ed5760405162461bcd60e51b8152600401610b159061308c565b600d819055600c54600b54610f48918391610f4291611a4c565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610da157600080fd5b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b15801561119357600080fd5b505afa1580156111a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cb9190612f67565b92915050565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561121f57600080fd5b505af1158015611233573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112579190612f7f565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6005546001600160a01b031633146112dd5760405162461bcd60e51b8152600401610b159061308c565b6112e760006120fd565b565b6005546001600160a01b031633146113135760405162461bcd60e51b8152600401610b159061308c565b62030d40811015801561132957506207a1208111155b61139b5760405162461bcd60e51b815260206004820152603f60248201527f42414259544f4b454e3a20676173466f7250726f63657373696e67206d75737460448201527f206265206265747765656e203230302c30303020616e64203530302c303030006064820152608401610b15565b6010548114156114135760405162461bcd60e51b815260206004820152603760248201527f42414259544f4b454e3a2043616e6e6f742075706461746520676173466f725060448201527f726f63657373696e6720746f2073616d652076616c75650000000000000000006064820152608401610b15565b60105460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601055565b606060048054610a5290613210565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610da157600080fd5b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561151c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b15565b6115293385858403611b01565b5060019392505050565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d2409060240161117b565b6000610ae2338484611c25565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b1580156115ca57600080fd5b505afa1580156115de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116029190612e13565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b031633146116475760405162461bcd60e51b8152600401610b159061308c565b600c819055600d54600b54610f489190610f429084611a4c565b6005546001600160a01b0316331461168b5760405162461bcd60e51b8152600401610b159061308c565b620186a061169860025490565b6116a2919061318e565b81116117165760405162461bcd60e51b815260206004820152603d60248201527f42414259544f4b454e3a20416d6f756e74206d7573742062652067726561746560448201527f72207468616e20302e30303125206f6620746f74616c20737570706c790000006064820152608401610b15565b600a55565b60085460408051632f842d8560e21b815290516000926001600160a01b03169163be10b614916004808301926020929190829003018186803b158015610da157600080fd5b60085460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c5699060240160206040518083038186803b1580156117a657600080fd5b505afa1580156117ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cb9190612f33565b6005546001600160a01b031633146118085760405162461bcd60e51b8152600401610b159061308c565b6001600160a01b03811660009081526011602052604090205460ff16156118805760405162461bcd60e51b815260206004820152602660248201527f42414259544f4b454e3a204163636f756e7420697320616c726561647920657860448201526518db1d59195960d21b6064820152608401610b15565b6001600160a01b038116600081815260116020526040808220805460ff19166001179055517f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369190a250565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610da157600080fd5b6005546001600160a01b0316331461193b5760405162461bcd60e51b8152600401610b159061308c565b60085460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610c33565b600854604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd906024016115b1565b6005546001600160a01b031633146119d85760405162461bcd60e51b8152600401610b159061308c565b6001600160a01b038116611a3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b15565b610efa816120fd565b3b151590565b6000610d558284613176565b6000610d55828461318e565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b038116611afc5760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b6044820152606401610b15565b919050565b6001600160a01b038316611b635760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b15565b6001600160a01b038216611bc45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b15565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c4b5760405162461bcd60e51b8152600401610b15906130c1565b6001600160a01b038216611c715760405162461bcd60e51b8152600401610b1590613049565b601354600160a01b900460ff1615611cf25760135460405163090ec10b60e31b81526001600160a01b03858116600483015284811660248301526044820184905290911690634876085890606401600060405180830381600087803b158015611cd957600080fd5b505af1158015611ced573d6000803e3d6000fd5b505050505b80611d0857611d038383600061214f565b505050565b30600090815260208190526040902054600a5481108015908190611d365750600754600160a01b900460ff16155b8015611d5b57506001600160a01b03851660009081526012602052604090205460ff16155b8015611d7557506005546001600160a01b03868116911614155b8015611d8f57506005546001600160a01b03858116911614155b8015611d9d57506000600e54115b15611e4d576007805460ff60a01b1916600160a01b179055600d5415611ded576000611de0600e54611dda600d548661229c90919063ffffffff16565b90611a58565b9050611deb816122a8565b505b600c5415611e1f576000611e12600e54611dda600c548661229c90919063ffffffff16565b9050611e1d816123d7565b505b306000908152602081905260409020548015611e3e57611e3e8161245e565b506007805460ff60a01b191690555b6007546001600160a01b03861660009081526011602052604090205460ff600160a01b909204821615911680611e9b57506001600160a01b03851660009081526011602052604090205460ff165b15611ea4575060005b808015611eb357506000600e54115b15611eef576000611ed46064611dda600e548861229c90919063ffffffff16565b9050611ee085826125de565b9450611eed87308361214f565b505b611efa86868661214f565b6008546001600160a01b031663e30443bc87611f2b816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611f7157600080fd5b505af1925050508015611f82575060015b506008546001600160a01b031663e30443bc86611fb4816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611ffa57600080fd5b505af192505050801561200b575060015b50600754600160a01b900460ff166120f5576010546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561206957600080fd5b505af1925050508015612099575060408051601f3d908101601f1916820190925261209691810190612f7f565b60015b6120a2576120f3565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166121755760405162461bcd60e51b8152600401610b15906130c1565b6001600160a01b03821661219b5760405162461bcd60e51b8152600401610b1590613049565b6001600160a01b038316600090815260208190526040902054818110156122135760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b15565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061224a908490613176565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a591815260200190565b50505050565b6000610d5582846131ae565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156122ec57600080fd5b505afa158015612300573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123249190612f67565b905061232f826125ea565b6009546040516370a0823160e01b81523060048201526000916123b79184916001600160a01b0316906370a082319060240160206040518083038186803b15801561237957600080fd5b505afa15801561238d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b19190612f67565b906125de565b600f54600954919250611d03916001600160a01b039081169116836127a6565b60006123e4826002611a58565b905060006123f283836125de565b9050476123fe836127f8565b600061240a47836125de565b90506124168382612975565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b612467816125ea565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156124ab57600080fd5b505afa1580156124bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e39190612f67565b600954600854919250600091612506916001600160a01b03908116911684612a2f565b90508015611d035760085460405163ba72a95560e01b8152600481018490526001600160a01b039091169063ba72a95590602401600060405180830381600087803b15801561255457600080fd5b505af1925050508015612565575060015b6125a85760408051848152602081018490527f6b59b56c6c108c779c4d23141e617147844e0ba79d9230d44ff5e6de86801c5691015b60405180910390a1505050565b60408051848152602081018490527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910161259b565b6000610d5582846131cd565b6040805160038082526080820190925260009160208201606080368337019050509050308160008151811061262f57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561268357600080fd5b505afa158015612697573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126bb9190612d7f565b816001815181106126dc57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260095482519116908290600290811061271b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526006546127419130911684611b01565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d7959061277a908590600090869030904290600401613106565b600060405180830381600087803b15801561279457600080fd5b505af1925050508015611d0357505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611d03908490612b19565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061283b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561288f57600080fd5b505afa1580156128a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128c79190612d7f565b816001815181106128e857634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260065461290e9130911684611b01565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612947908590600090869030904290600401613106565b600060405180830381600087803b15801561296157600080fd5b505af11580156120f5573d6000803e3d6000fd5b60065461298d9030906001600160a01b031684611b01565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b1580156129f657600080fd5b505af1158015612a0a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c619190612f7f565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291516000928392839291881691612a8d9190612fac565b6000604051808303816000865af19150503d8060008114612aca576040519150601f19603f3d011682016040523d82523d6000602084013e612acf565b606091505b5091509150818015612af9575080511580612af9575080806020019051810190612af99190612f33565b8015612b0f57506000866001600160a01b03163b115b9695505050505050565b6000612b6e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612beb9092919063ffffffff16565b805190915015611d035780806020019051810190612b8c9190612f33565b611d035760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b15565b6060612bfa8484600085612c02565b949350505050565b606082471015612c635760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b15565b843b612cb15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b15565b600080866001600160a01b03168587604051612ccd9190612fac565b60006040518083038185875af1925050503d8060008114612d0a576040519150601f19603f3d011682016040523d82523d6000602084013e612d0f565b606091505b5091509150612d1f828286612d2a565b979650505050505050565b60608315612d39575081610d55565b825115612d495782518084602001fd5b8160405162461bcd60e51b8152600401610b159190613016565b600060208284031215612d74578081fd5b8135610d558161327c565b600060208284031215612d90578081fd5b8151610d558161327c565b60008060408385031215612dad578081fd5b8235612db88161327c565b91506020830135612dc88161327c565b809150509250929050565b600080600060608486031215612de7578081fd5b8335612df28161327c565b92506020840135612e028161327c565b929592945050506040919091013590565b600080600080600080600080610100898b031215612e2f578384fd5b8851612e3a8161327c565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612e8e578182fd5b8235612e998161327c565b946020939093013593505050565b60008060208385031215612eb9578182fd5b823567ffffffffffffffff80821115612ed0578384fd5b818501915085601f830112612ee3578384fd5b813581811115612ef1578485fd5b8660208260051b8501011115612f05578485fd5b60209290920196919550909350505050565b600060208284031215612f28578081fd5b8135610d5581613291565b600060208284031215612f44578081fd5b8151610d5581613291565b600060208284031215612f60578081fd5b5035919050565b600060208284031215612f78578081fd5b5051919050565b600080600060608486031215612f93578283fd5b8351925060208401519150604084015190509250925092565b60008251612fbe8184602087016131e4565b9190910192915050565b60208082528181018390526000908460408401835b8681101561300b578235612ff08161327c565b6001600160a01b031682529183019190830190600101612fdd565b509695505050505050565b60208152600082518060208401526130358160408501602087016131e4565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156131555784516001600160a01b031683529383019391830191600101613130565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561318957613189613266565b500190565b6000826131a957634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156131c8576131c8613266565b500290565b6000828210156131df576131df613266565b500390565b60005b838110156131ff5781810151838201526020016131e7565b838111156122965750506000910152565b600181811c9082168061322457607f821691505b6020821081141561324557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561325f5761325f613266565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610efa57600080fd5b8015158114610efa57600080fdfea26469706673582212202a0e8f0d236d43466532a2d127724674d2a2457e7eb7d9a3bd4d4a9ddbe127a064736f6c6343000804003300000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000e0fe3d8bb9bc7b1000000000000000000000000000000576e2bed8f7b46d34016198911cdf9886f78bea70000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ff9b0aebc01a02f0152e2bc4b262bad5c6084e950000000000000000000000006702d0857027ff9dcb6e56f50a0df3fa29c7d3fc000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca350000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000197a8f6dd5519800000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000c536f6e206f66205452554d50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064558504552540000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103395760003560e01c806370a08231116101ab578063afa4f3b2116100f7578063e708a0f911610095578063f27fd2541161006f578063f27fd254146109ce578063f2fde38b146109ee578063f7c618c114610a0e578063ffa1ad7414610a2e57600080fd5b8063e708a0f914610983578063e7841ec014610999578063e98030c7146109ae57600080fd5b8063c705c569116100d1578063c705c569146108e7578063dd62ed3e14610907578063e2f456051461094d578063e57f14e11461096357600080fd5b8063afa4f3b214610882578063b62496f5146108a2578063bdd4f29f146108d257600080fd5b80639c1b8af511610164578063a8b9d2401161013e578063a8b9d240146107bd578063a9059cbb146107dd578063ad56c13c146107fd578063adefd90c1461086257600080fd5b80639c1b8af514610772578063a26579ad14610788578063a457c2d71461079d57600080fd5b806370a08231146106be578063715018a6146106f4578063871c128d146107095780638da5cb5b1461072957806395d89b411461074757806398118cb41461075c57600080fd5b806331e79db0116102855780634fbee1931161022357806364b0f653116101fd57806364b0f653146106535780636843cd84146106685780636b67c4df14610688578063700bb1911461069e57600080fd5b80634fbee193146105da5780635d098b3814610613578063625e764c1461063357600080fd5b80634144d9e41161025f5780634144d9e41461056557806349bd5a5e146105855780634e71d92d146105a55780634ed080c7146105ba57600080fd5b806331e79db0146105055780633950935114610525578063407133d21461054557600080fd5b806318160ddd116102f2578063241ec3be116102cc578063241ec3be146104935780632c1f5216146104b457806330bb4cff146104d4578063313ce567146104e957600080fd5b806318160ddd1461043e5780631f46b1c61461045357806323b872dd1461047357600080fd5b806306fdde0314610345578063095ea7b3146103705780630c43c79b146103a05780630dcb2e89146103c257806313114a9d146103e25780631694505e1461040657600080fd5b3661034057005b600080fd5b34801561035157600080fd5b5061035a610a43565b6040516103679190613016565b60405180910390f35b34801561037c57600080fd5b5061039061038b366004612e7c565b610ad5565b6040519015158152602001610367565b3480156103ac57600080fd5b506103c06103bb366004612ea7565b610aeb565b005b3480156103ce57600080fd5b506103c06103dd366004612f4f565b610bdc565b3480156103ee57600080fd5b506103f8600e5481565b604051908152602001610367565b34801561041257600080fd5b50600654610426906001600160a01b031681565b6040516001600160a01b039091168152602001610367565b34801561044a57600080fd5b506002546103f8565b34801561045f57600080fd5b506103c061046e366004612f17565b610c68565b34801561047f57600080fd5b5061039061048e366004612dd3565b610cb0565b34801561049f57600080fd5b5060135461039090600160a01b900460ff1681565b3480156104c057600080fd5b50600854610426906001600160a01b031681565b3480156104e057600080fd5b506103f8610d5c565b3480156104f557600080fd5b5060405160128152602001610367565b34801561051157600080fd5b506103c0610520366004612d63565b610dde565b34801561053157600080fd5b50610390610540366004612e7c565b610e3a565b34801561055157600080fd5b50601354610426906001600160a01b031681565b34801561057157600080fd5b50600f54610426906001600160a01b031681565b34801561059157600080fd5b50600754610426906001600160a01b031681565b3480156105b157600080fd5b506103c0610e76565b3480156105c657600080fd5b506103c06105d5366004612f4f565b610efd565b3480156105e657600080fd5b506103906105f5366004612d63565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561061f57600080fd5b506103c061062e366004612d63565b610f95565b34801561063f57600080fd5b506103c061064e366004612f4f565b6110c3565b34801561065f57600080fd5b506103f8611107565b34801561067457600080fd5b506103f8610683366004612d63565b61114c565b34801561069457600080fd5b506103f8600d5481565b3480156106aa57600080fd5b506103c06106b9366004612f4f565b6111d1565b3480156106ca57600080fd5b506103f86106d9366004612d63565b6001600160a01b031660009081526020819052604090205490565b34801561070057600080fd5b506103c06112b3565b34801561071557600080fd5b506103c0610724366004612f4f565b6112e9565b34801561073557600080fd5b506005546001600160a01b0316610426565b34801561075357600080fd5b5061035a611446565b34801561076857600080fd5b506103f8600c5481565b34801561077e57600080fd5b506103f860105481565b34801561079457600080fd5b506103f8611455565b3480156107a957600080fd5b506103906107b8366004612e7c565b61149a565b3480156107c957600080fd5b506103f86107d8366004612d63565b611533565b3480156107e957600080fd5b506103906107f8366004612e7c565b611566565b34801561080957600080fd5b5061081d610818366004612d63565b611573565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610367565b34801561086e57600080fd5b506103c061087d366004612f4f565b61161d565b34801561088e57600080fd5b506103c061089d366004612f4f565b611661565b3480156108ae57600080fd5b506103906108bd366004612d63565b60126020526000908152604090205460ff1681565b3480156108de57600080fd5b506103f861171b565b3480156108f357600080fd5b50610390610902366004612d63565b611760565b34801561091357600080fd5b506103f8610922366004612d9b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561095957600080fd5b506103f8600a5481565b34801561096f57600080fd5b506103c061097e366004612d63565b6117de565b34801561098f57600080fd5b506103f8600b5481565b3480156109a557600080fd5b506103f86118cc565b3480156109ba57600080fd5b506103c06109c9366004612f4f565b611911565b3480156109da57600080fd5b5061081d6109e9366004612f4f565b61196c565b3480156109fa57600080fd5b506103c0610a09366004612d63565b6119ae565b348015610a1a57600080fd5b50600954610426906001600160a01b031681565b348015610a3a57600080fd5b506103f8600681565b606060038054610a5290613210565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e90613210565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b5050505050905090565b6000610ae2338484611b01565b50600192915050565b6005546001600160a01b03163314610b1e5760405162461bcd60e51b8152600401610b159061308c565b60405180910390fd5b60005b81811015610b9e57600160116000858585818110610b4f57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b649190612d63565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610b968161324b565b915050610b21565b507f6f058e77d614a1061fc197c99cdde12f5fa414c92529bbe8f48b02f8d9f4f95d8282604051610bd0929190612fc8565b60405180910390a15050565b6005546001600160a01b03163314610c065760405162461bcd60e51b8152600401610b159061308c565b600854604051630dcb2e8960e01b8152600481018390526001600160a01b0390911690630dcb2e89906024015b600060405180830381600087803b158015610c4d57600080fd5b505af1158015610c61573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610c925760405162461bcd60e51b8152600401610b159061308c565b60138054911515600160a01b0260ff60a01b19909216919091179055565b6000610cbd848484611c25565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d425760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b15565b610d4f8533858403611b01565b60019150505b9392505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610da157600080fd5b505afa158015610db5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd99190612f67565b905090565b6005546001600160a01b03163314610e085760405162461bcd60e51b8152600401610b159061308c565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401610c33565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ae2918590610e71908690613176565b611b01565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610ec257600080fd5b505af1158015610ed6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efa9190612f33565b50565b6005546001600160a01b03163314610f275760405162461bcd60e51b8152600401610b159061308c565b600b819055600d54600c54610f489190610f42908490611a4c565b90611a4c565b600e81905560191015610efa5760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610b15565b6005546001600160a01b03163314610fbf5760405162461bcd60e51b8152600401610b159061308c565b6001600160a01b03811661103b5760405162461bcd60e51b815260206004820152603b60248201527f42414259544f4b454e3a20546865206d61726b6574696e672077616c6c65742060448201527f63616e6e6f74206265207468652076616c7565206f66207a65726f00000000006064820152608401610b15565b6001600160a01b0381163b156110a15760405162461bcd60e51b815260206004820152602560248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265206120636f6e6044820152641d1c9858dd60da1b6064820152608401610b15565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110ed5760405162461bcd60e51b8152600401610b159061308c565b600d819055600c54600b54610f48918391610f4291611a4c565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610da157600080fd5b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b15801561119357600080fd5b505afa1580156111a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cb9190612f67565b92915050565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561121f57600080fd5b505af1158015611233573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112579190612f7f565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6005546001600160a01b031633146112dd5760405162461bcd60e51b8152600401610b159061308c565b6112e760006120fd565b565b6005546001600160a01b031633146113135760405162461bcd60e51b8152600401610b159061308c565b62030d40811015801561132957506207a1208111155b61139b5760405162461bcd60e51b815260206004820152603f60248201527f42414259544f4b454e3a20676173466f7250726f63657373696e67206d75737460448201527f206265206265747765656e203230302c30303020616e64203530302c303030006064820152608401610b15565b6010548114156114135760405162461bcd60e51b815260206004820152603760248201527f42414259544f4b454e3a2043616e6e6f742075706461746520676173466f725060448201527f726f63657373696e6720746f2073616d652076616c75650000000000000000006064820152608401610b15565b60105460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601055565b606060048054610a5290613210565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610da157600080fd5b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561151c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b15565b6115293385858403611b01565b5060019392505050565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d2409060240161117b565b6000610ae2338484611c25565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b1580156115ca57600080fd5b505afa1580156115de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116029190612e13565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b031633146116475760405162461bcd60e51b8152600401610b159061308c565b600c819055600d54600b54610f489190610f429084611a4c565b6005546001600160a01b0316331461168b5760405162461bcd60e51b8152600401610b159061308c565b620186a061169860025490565b6116a2919061318e565b81116117165760405162461bcd60e51b815260206004820152603d60248201527f42414259544f4b454e3a20416d6f756e74206d7573742062652067726561746560448201527f72207468616e20302e30303125206f6620746f74616c20737570706c790000006064820152608401610b15565b600a55565b60085460408051632f842d8560e21b815290516000926001600160a01b03169163be10b614916004808301926020929190829003018186803b158015610da157600080fd5b60085460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c5699060240160206040518083038186803b1580156117a657600080fd5b505afa1580156117ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cb9190612f33565b6005546001600160a01b031633146118085760405162461bcd60e51b8152600401610b159061308c565b6001600160a01b03811660009081526011602052604090205460ff16156118805760405162461bcd60e51b815260206004820152602660248201527f42414259544f4b454e3a204163636f756e7420697320616c726561647920657860448201526518db1d59195960d21b6064820152608401610b15565b6001600160a01b038116600081815260116020526040808220805460ff19166001179055517f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369190a250565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610da157600080fd5b6005546001600160a01b0316331461193b5760405162461bcd60e51b8152600401610b159061308c565b60085460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610c33565b600854604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd906024016115b1565b6005546001600160a01b031633146119d85760405162461bcd60e51b8152600401610b159061308c565b6001600160a01b038116611a3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b15565b610efa816120fd565b3b151590565b6000610d558284613176565b6000610d55828461318e565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b038116611afc5760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b6044820152606401610b15565b919050565b6001600160a01b038316611b635760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b15565b6001600160a01b038216611bc45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b15565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c4b5760405162461bcd60e51b8152600401610b15906130c1565b6001600160a01b038216611c715760405162461bcd60e51b8152600401610b1590613049565b601354600160a01b900460ff1615611cf25760135460405163090ec10b60e31b81526001600160a01b03858116600483015284811660248301526044820184905290911690634876085890606401600060405180830381600087803b158015611cd957600080fd5b505af1158015611ced573d6000803e3d6000fd5b505050505b80611d0857611d038383600061214f565b505050565b30600090815260208190526040902054600a5481108015908190611d365750600754600160a01b900460ff16155b8015611d5b57506001600160a01b03851660009081526012602052604090205460ff16155b8015611d7557506005546001600160a01b03868116911614155b8015611d8f57506005546001600160a01b03858116911614155b8015611d9d57506000600e54115b15611e4d576007805460ff60a01b1916600160a01b179055600d5415611ded576000611de0600e54611dda600d548661229c90919063ffffffff16565b90611a58565b9050611deb816122a8565b505b600c5415611e1f576000611e12600e54611dda600c548661229c90919063ffffffff16565b9050611e1d816123d7565b505b306000908152602081905260409020548015611e3e57611e3e8161245e565b506007805460ff60a01b191690555b6007546001600160a01b03861660009081526011602052604090205460ff600160a01b909204821615911680611e9b57506001600160a01b03851660009081526011602052604090205460ff165b15611ea4575060005b808015611eb357506000600e54115b15611eef576000611ed46064611dda600e548861229c90919063ffffffff16565b9050611ee085826125de565b9450611eed87308361214f565b505b611efa86868661214f565b6008546001600160a01b031663e30443bc87611f2b816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611f7157600080fd5b505af1925050508015611f82575060015b506008546001600160a01b031663e30443bc86611fb4816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611ffa57600080fd5b505af192505050801561200b575060015b50600754600160a01b900460ff166120f5576010546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561206957600080fd5b505af1925050508015612099575060408051601f3d908101601f1916820190925261209691810190612f7f565b60015b6120a2576120f3565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166121755760405162461bcd60e51b8152600401610b15906130c1565b6001600160a01b03821661219b5760405162461bcd60e51b8152600401610b1590613049565b6001600160a01b038316600090815260208190526040902054818110156122135760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b15565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061224a908490613176565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a591815260200190565b50505050565b6000610d5582846131ae565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156122ec57600080fd5b505afa158015612300573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123249190612f67565b905061232f826125ea565b6009546040516370a0823160e01b81523060048201526000916123b79184916001600160a01b0316906370a082319060240160206040518083038186803b15801561237957600080fd5b505afa15801561238d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b19190612f67565b906125de565b600f54600954919250611d03916001600160a01b039081169116836127a6565b60006123e4826002611a58565b905060006123f283836125de565b9050476123fe836127f8565b600061240a47836125de565b90506124168382612975565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b612467816125ea565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156124ab57600080fd5b505afa1580156124bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e39190612f67565b600954600854919250600091612506916001600160a01b03908116911684612a2f565b90508015611d035760085460405163ba72a95560e01b8152600481018490526001600160a01b039091169063ba72a95590602401600060405180830381600087803b15801561255457600080fd5b505af1925050508015612565575060015b6125a85760408051848152602081018490527f6b59b56c6c108c779c4d23141e617147844e0ba79d9230d44ff5e6de86801c5691015b60405180910390a1505050565b60408051848152602081018490527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910161259b565b6000610d5582846131cd565b6040805160038082526080820190925260009160208201606080368337019050509050308160008151811061262f57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561268357600080fd5b505afa158015612697573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126bb9190612d7f565b816001815181106126dc57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260095482519116908290600290811061271b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526006546127419130911684611b01565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d7959061277a908590600090869030904290600401613106565b600060405180830381600087803b15801561279457600080fd5b505af1925050508015611d0357505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611d03908490612b19565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061283b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561288f57600080fd5b505afa1580156128a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128c79190612d7f565b816001815181106128e857634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260065461290e9130911684611b01565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612947908590600090869030904290600401613106565b600060405180830381600087803b15801561296157600080fd5b505af11580156120f5573d6000803e3d6000fd5b60065461298d9030906001600160a01b031684611b01565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b1580156129f657600080fd5b505af1158015612a0a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c619190612f7f565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291516000928392839291881691612a8d9190612fac565b6000604051808303816000865af19150503d8060008114612aca576040519150601f19603f3d011682016040523d82523d6000602084013e612acf565b606091505b5091509150818015612af9575080511580612af9575080806020019051810190612af99190612f33565b8015612b0f57506000866001600160a01b03163b115b9695505050505050565b6000612b6e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612beb9092919063ffffffff16565b805190915015611d035780806020019051810190612b8c9190612f33565b611d035760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b15565b6060612bfa8484600085612c02565b949350505050565b606082471015612c635760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b15565b843b612cb15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b15565b600080866001600160a01b03168587604051612ccd9190612fac565b60006040518083038185875af1925050503d8060008114612d0a576040519150601f19603f3d011682016040523d82523d6000602084013e612d0f565b606091505b5091509150612d1f828286612d2a565b979650505050505050565b60608315612d39575081610d55565b825115612d495782518084602001fd5b8160405162461bcd60e51b8152600401610b159190613016565b600060208284031215612d74578081fd5b8135610d558161327c565b600060208284031215612d90578081fd5b8151610d558161327c565b60008060408385031215612dad578081fd5b8235612db88161327c565b91506020830135612dc88161327c565b809150509250929050565b600080600060608486031215612de7578081fd5b8335612df28161327c565b92506020840135612e028161327c565b929592945050506040919091013590565b600080600080600080600080610100898b031215612e2f578384fd5b8851612e3a8161327c565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612e8e578182fd5b8235612e998161327c565b946020939093013593505050565b60008060208385031215612eb9578182fd5b823567ffffffffffffffff80821115612ed0578384fd5b818501915085601f830112612ee3578384fd5b813581811115612ef1578485fd5b8660208260051b8501011115612f05578485fd5b60209290920196919550909350505050565b600060208284031215612f28578081fd5b8135610d5581613291565b600060208284031215612f44578081fd5b8151610d5581613291565b600060208284031215612f60578081fd5b5035919050565b600060208284031215612f78578081fd5b5051919050565b600080600060608486031215612f93578283fd5b8351925060208401519150604084015190509250925092565b60008251612fbe8184602087016131e4565b9190910192915050565b60208082528181018390526000908460408401835b8681101561300b578235612ff08161327c565b6001600160a01b031682529183019190830190600101612fdd565b509695505050505050565b60208152600082518060208401526130358160408501602087016131e4565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156131555784516001600160a01b031683529383019391830191600101613130565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561318957613189613266565b500190565b6000826131a957634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156131c8576131c8613266565b500290565b6000828210156131df576131df613266565b500390565b60005b838110156131ff5781810151838201526020016131e7565b838111156122965750506000910152565b600181811c9082168061322457607f821691505b6020821081141561324557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561325f5761325f613266565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610efa57600080fd5b8015158114610efa57600080fdfea26469706673582212202a0e8f0d236d43466532a2d127724674d2a2457e7eb7d9a3bd4d4a9ddbe127a064736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000e0fe3d8bb9bc7b1000000000000000000000000000000576e2bed8f7b46d34016198911cdf9886f78bea70000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ff9b0aebc01a02f0152e2bc4b262bad5c6084e950000000000000000000000006702d0857027ff9dcb6e56f50a0df3fa29c7d3fc000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca350000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000197a8f6dd5519800000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000c536f6e206f66205452554d50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064558504552540000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Son of TRUMP
Arg [1] : symbol_ (string): EXPERT
Arg [2] : totalSupply_ (uint256): 17000000000000000000000000
Arg [3] : addrs (address[5]): 0x576e2BeD8F7b46D34016198911Cdf9886f78bea7,0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,0xFF9b0AEBc01A02F0152e2bc4B262BAd5C6084e95,0x6702d0857027ff9Dcb6e56F50a0DF3FA29c7D3fC,0xf4f071EB637b64fC78C9eA87DaCE4445D119CA35
Arg [4] : feeSettings (uint256[3]): 1,1,1
Arg [5] : minimumTokenBalanceForDividends_ (uint256): 470000000000000000000
Arg [6] : serviceFeeReceiver_ (address): 0x4B04213C2774f77e60702880654206B116D00508
Arg [7] : serviceFee_ (uint256): 10000000000000000

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [2] : 0000000000000000000000000000000000000000000e0fe3d8bb9bc7b1000000
Arg [3] : 000000000000000000000000576e2bed8f7b46d34016198911cdf9886f78bea7
Arg [4] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [5] : 000000000000000000000000ff9b0aebc01a02f0152e2bc4b262bad5c6084e95
Arg [6] : 0000000000000000000000006702d0857027ff9dcb6e56f50a0df3fa29c7d3fc
Arg [7] : 000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca35
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 0000000000000000000000000000000000000000000000197a8f6dd551980000
Arg [12] : 0000000000000000000000004b04213c2774f77e60702880654206b116d00508
Arg [13] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [14] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [15] : 536f6e206f66205452554d500000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [17] : 4558504552540000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

99640:17683:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6747:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8914:169;;;;;;;;;;-1:-1:-1;8914:169:0;;;;;:::i;:::-;;:::i;:::-;;;8555:14:1;;8548:22;8530:41;;8518:2;8503:18;8914:169:0;8485:92:1;105321:294:0;;;;;;;;;;-1:-1:-1;105321:294:0;;;;;:::i;:::-;;:::i;:::-;;107900:178;;;;;;;;;;-1:-1:-1;107900:178:0;;;;;:::i;:::-;;:::i;100239:24::-;;;;;;;;;;;;;;;;;;;17833:25:1;;;17821:2;17806:18;100239:24:0;17788:76:1;99886:41:0;;;;;;;;;;-1:-1:-1;99886:41:0;;;;-1:-1:-1;;;;;99886:41:0;;;;;;-1:-1:-1;;;;;5056:32:1;;;5038:51;;5026:2;5011:18;99886:41:0;4993:102:1;7867:108:0;;;;;;;;;;-1:-1:-1;7955:12:0;;7867:108;;104608:101;;;;;;;;;;-1:-1:-1;104608:101:0;;;;;:::i;:::-;;:::i;9565:492::-;;;;;;;;;;-1:-1:-1;9565:492:0;;;;;:::i;:::-;;:::i;100726:25::-;;;;;;;;;;-1:-1:-1;100726:25:0;;;;-1:-1:-1;;;100726:25:0;;;;;;100001:47;;;;;;;;;;-1:-1:-1;100001:47:0;;;;-1:-1:-1;;;;;100001:47:0;;;108279:141;;;;;;;;;;;;;:::i;7709:93::-;;;;;;;;;;-1:-1:-1;7709:93:0;;7792:2;19972:36:1;;19960:2;19945:18;7709:93:0;19927:87:1;108901:130:0;;;;;;;;;;-1:-1:-1;108901:130:0;;;;;:::i;:::-;;:::i;10466:215::-;;;;;;;;;;-1:-1:-1;10466:215:0;;;;;:::i;:::-;;:::i;100688:31::-;;;;;;;;;;-1:-1:-1;100688:31:0;;;;-1:-1:-1;;;;;100688:31:0;;;100272:38;;;;;;;;;;-1:-1:-1;100272:38:0;;;;-1:-1:-1;;;;;100272:38:0;;;99934:28;;;;;;;;;;-1:-1:-1;99934:28:0;;;;-1:-1:-1;;;;;99934:28:0;;;110392:103;;;;;;;;;;;;;:::i;105974:238::-;;;;;;;;;;-1:-1:-1;105974:238:0;;;;;:::i;:::-;;:::i;108428:126::-;;;;;;;;;;-1:-1:-1;108428:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;108518:28:0;108494:4;108518:28;;;:19;:28;;;;;;;;;108428:126;105623:343;;;;;;;;;;-1:-1:-1;105623:343:0;;;;;:::i;:::-;;:::i;106459:232::-;;;;;;;;;;-1:-1:-1;106459:232:0;;;;;:::i;:::-;;:::i;110641:142::-;;;;;;;;;;;;;:::i;108738:155::-;;;;;;;;;;-1:-1:-1;108738:155:0;;;;;:::i;:::-;;:::i;100205:27::-;;;;;;;;;;;;;;;;109974:410;;;;;;;;;;-1:-1:-1;109974:410:0;;;;;:::i;:::-;;:::i;8038:127::-;;;;;;;;;;-1:-1:-1;8038:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8139:18:0;8112:7;8139:18;;;;;;;;;;;;8038:127;30592:94;;;;;;;;;;;;;:::i;107155:488::-;;;;;;;;;;-1:-1:-1;107155:488:0;;;;;:::i;:::-;;:::i;29941:87::-;;;;;;;;;;-1:-1:-1;30014:6:0;;-1:-1:-1;;;;;30014:6:0;29941:87;;6966:104;;;;;;;;;;;;;:::i;100171:27::-;;;;;;;;;;;;;;;;100319:31;;;;;;;;;;;;;;;;107783:109;;;;;;;;;;;;;:::i;11184:413::-;;;;;;;;;;-1:-1:-1;11184:413:0;;;;;:::i;:::-;;:::i;108562:168::-;;;;;;;;;;-1:-1:-1;108562:168:0;;;;;:::i;:::-;;:::i;8378:175::-;;;;;;;;;;-1:-1:-1;8378:175:0;;;;;:::i;:::-;;:::i;109214:367::-;;;;;;;;;;-1:-1:-1;109214:367:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6437:32:1;;;6419:51;;6501:2;6486:18;;6479:34;;;;6529:18;;;6522:34;;;;6587:2;6572:18;;6565:34;;;;6630:3;6615:19;;6608:35;6457:3;6659:19;;6652:35;6718:3;6703:19;;6696:35;6762:3;6747:19;;6740:35;6406:3;6391:19;109214:367:0;6373:408:1;106220:231:0;;;;;;;;;;-1:-1:-1;106220:231:0;;;;;:::i;:::-;;:::i;104754:266::-;;;;;;;;;;-1:-1:-1;104754:266:0;;;;;:::i;:::-;;:::i;100622:57::-;;;;;;;;;;-1:-1:-1;100622:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;108086:185;;;;;;;;;;;;;:::i;109039:167::-;;;;;;;;;;-1:-1:-1;109039:167:0;;;;;:::i;:::-;;:::i;8616:151::-;;;;;;;;;;-1:-1:-1;8616:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8732:18:0;;;8705:7;8732:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8616:151;100092:33;;;;;;;;;;;;;;;;105028:285;;;;;;;;;;-1:-1:-1;105028:285:0;;;;;:::i;:::-;;:::i;100134:30::-;;;;;;;;;;;;;;;;110503:130;;;;;;;;;;;;;:::i;107651:124::-;;;;;;;;;;-1:-1:-1;107651:124:0;;;;;:::i;:::-;;:::i;109589:377::-;;;;;;;;;;-1:-1:-1;109589:377:0;;;;;:::i;:::-;;:::i;30841:192::-;;;;;;;;;;-1:-1:-1;30841:192:0;;;;;:::i;:::-;;:::i;100057:26::-;;;;;;;;;;-1:-1:-1;100057:26:0;;;;-1:-1:-1;;;;;100057:26:0;;;99842:35;;;;;;;;;;;;99876:1;99842:35;;6747:100;6801:13;6834:5;6827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6747:100;:::o;8914:169::-;8997:4;9014:39;4333:10;9037:7;9046:6;9014:8;:39::i;:::-;-1:-1:-1;9071:4:0;8914:169;;;;:::o;105321:294::-;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;;;;;;;;;105442:9:::1;105437:112;105457:19:::0;;::::1;105437:112;;;105533:4;105498:19;:32;105518:8;;105527:1;105518:11;;;;;-1:-1:-1::0;;;105518:11:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;105498:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;105498:32:0;:39;;-1:-1:-1;;105498:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;105478:3;::::1;::::0;::::1;:::i;:::-;;;;105437:112;;;;105566:41;105598:8;;105566:41;;;;;;;:::i;:::-;;;;;;;;105321:294:::0;;:::o;107900:178::-;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;108009:15:::1;::::0;:61:::1;::::0;-1:-1:-1;;;108009:61:0;;::::1;::::0;::::1;17833:25:1::0;;;-1:-1:-1;;;;;108009:15:0;;::::1;::::0;:53:::1;::::0;17806:18:1;;108009:61:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;107900:178:::0;:::o;104608:101::-;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;104678:13:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;104678:23:0::1;-1:-1:-1::0;;;;104678:23:0;;::::1;::::0;;;::::1;::::0;;104608:101::o;9565:492::-;9705:4;9722:36;9732:6;9740:9;9751:6;9722:9;:36::i;:::-;-1:-1:-1;;;;;9798:19:0;;9771:24;9798:19;;;:11;:19;;;;;;;;4333:10;9798:33;;;;;;;;9850:26;;;;9842:79;;;;-1:-1:-1;;;9842:79:0;;14281:2:1;9842:79:0;;;14263:21:1;14320:2;14300:18;;;14293:30;14359:34;14339:18;;;14332:62;-1:-1:-1;;;14410:18:1;;;14403:38;14458:19;;9842:79:0;14253:230:1;9842:79:0;9957:57;9966:6;4333:10;10007:6;9988:16;:25;9957:8;:57::i;:::-;10045:4;10038:11;;;9565:492;;;;;;:::o;108279:141::-;108369:15;;:43;;;-1:-1:-1;;;108369:43:0;;;;108342:7;;-1:-1:-1;;;;;108369:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;108362:50;;108279:141;:::o;108901:130::-;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;108978:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;108978:45:0;;-1:-1:-1;;;;;5056:32:1;;;108978:45:0::1;::::0;::::1;5038:51:1::0;108978:15:0;;::::1;::::0;:36:::1;::::0;5011:18:1;;108978:45:0::1;4993:102:1::0;10466:215:0;4333:10;10554:4;10603:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10603:34:0;;;;;;;;;;10554:4;;10571:80;;10594:7;;10603:47;;10640:10;;10603:47;:::i;:::-;10571:8;:80::i;110392:103::-;110429:15;;:58;;-1:-1:-1;;;110429:58:0;;110468:10;110429:58;;;5284:51:1;110429:15:0;5351:18:1;;;5344:50;-1:-1:-1;;;;;110429:15:0;;;;:30;;5257:18:1;;110429:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;110392:103::o;105974:238::-;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;106047:15:::1;:23:::0;;;106131:12:::1;::::0;106113::::1;::::0;106093:51:::1;::::0;106131:12;106093:33:::1;::::0;106065:5;;106093:19:::1;:33::i;:::-;:37:::0;::::1;:51::i;:::-;106081:9;:63:::0;;;106176:2:::1;-1:-1:-1::0;106163:15:0::1;106155:49;;;::::0;-1:-1:-1;;;106155:49:0;;13150:2:1;106155:49:0::1;::::0;::::1;13132:21:1::0;13189:2;13169:18;;;13162:30;-1:-1:-1;;;13208:18:1;;;13201:51;13269:18;;106155:49:0::1;13122:171:1::0;105623:343:0;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;105727:20:0;::::1;105705:129;;;::::0;-1:-1:-1;;;105705:129:0;;15051:2:1;105705:129:0::1;::::0;::::1;15033:21:1::0;15090:2;15070:18;;;15063:30;15129:34;15109:18;;;15102:62;15200:29;15180:18;;;15173:57;15247:19;;105705:129:0::1;15023:249:1::0;105705:129:0::1;-1:-1:-1::0;;;;;105854:17:0;::::1;17811:20:::0;17859:8;105845:70:::1;;;::::0;-1:-1:-1;;;105845:70:0;;11523:2:1;105845:70:0::1;::::0;::::1;11505:21:1::0;11562:2;11542:18;;;11535:30;11601:34;11581:18;;;11574:62;-1:-1:-1;;;11652:18:1;;;11645:35;11697:19;;105845:70:0::1;11495:227:1::0;105845:70:0::1;105926:23;:32:::0;;-1:-1:-1;;;;;;105926:32:0::1;-1:-1:-1::0;;;;;105926:32:0;;;::::1;::::0;;;::::1;::::0;;105623:343::o;106459:232::-;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;106529:12:::1;:20:::0;;;106592:12:::1;::::0;106572:15:::1;::::0;:51:::1;::::0;106544:5;;106572:33:::1;::::0;:19:::1;:33::i;110641:142::-:0;110734:15;;:41;;;-1:-1:-1;;;110734:41:0;;;;110707:7;;-1:-1:-1;;;;;110734:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;108738:155;108851:15;;:34;;-1:-1:-1;;;108851:34:0;;-1:-1:-1;;;;;5056:32:1;;;108851:34:0;;;5038:51:1;108824:7:0;;108851:15;;:25;;5011:18:1;;108851:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;108844:41;108738:155;-1:-1:-1;;108738:155:0:o;109974:410::-;110156:15;;:28;;-1:-1:-1;;;;;;110156:28:0;;;;;17833:25:1;;;110054:18:0;;;;;;-1:-1:-1;;;;;110156:15:0;;:23;;17806:18:1;;110156:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;110200:176;;;19665:25:1;;;19721:2;19706:18;;19699:34;;;19749:18;;;19742:34;;;19807:2;19792:18;;19785:34;;;110039:145:0;;-1:-1:-1;110039:145:0;;-1:-1:-1;110039:145:0;-1:-1:-1;110356:9:0;;110318:5;;110200:176;;19652:3:1;19637:19;110200:176:0;;;;;;;;109974:410;;;;:::o;30592:94::-;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;30657:21:::1;30675:1;30657:9;:21::i;:::-;30592:94::o:0;107155:488::-;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;107267:6:::1;107255:8;:18;;:40;;;;;107289:6;107277:8;:18;;107255:40;107233:153;;;::::0;-1:-1:-1;;;107233:153:0;;10281:2:1;107233:153:0::1;::::0;::::1;10263:21:1::0;10320:2;10300:18;;;10293:30;10359:34;10339:18;;;10332:62;10430:33;10410:18;;;10403:61;10481:19;;107233:153:0::1;10253:253:1::0;107233:153:0::1;107431:16;;107419:8;:28;;107397:133;;;::::0;-1:-1:-1;;;107397:133:0;;17059:2:1;107397:133:0::1;::::0;::::1;17041:21:1::0;17098:2;17078:18;;;17071:30;17137:34;17117:18;;;17110:62;17208:25;17188:18;;;17181:53;17251:19;;107397:133:0::1;17031:245:1::0;107397:133:0::1;107580:16;::::0;107546:51:::1;::::0;107570:8;;107546:51:::1;::::0;;;::::1;107608:16;:27:::0;107155:488::o;6966:104::-;7022:13;7055:7;7048:14;;;;;:::i;107783:109::-;107857:15;;:27;;;-1:-1:-1;;;107857:27:0;;;;107830:7;;-1:-1:-1;;;;;107857:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;11184:413;4333:10;11277:4;11321:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11321:34:0;;;;;;;;;;11374:35;;;;11366:85;;;;-1:-1:-1;;;11366:85:0;;17483:2:1;11366:85:0;;;17465:21:1;17522:2;17502:18;;;17495:30;17561:34;17541:18;;;17534:62;-1:-1:-1;;;17612:18:1;;;17605:35;17657:19;;11366:85:0;17455:227:1;11366:85:0;11487:67;4333:10;11510:7;11538:15;11519:16;:34;11487:8;:67::i;:::-;-1:-1:-1;11585:4:0;;11184:413;-1:-1:-1;;;11184:413:0:o;108562:168::-;108675:15;;:47;;-1:-1:-1;;;108675:47:0;;-1:-1:-1;;;;;5056:32:1;;;108675:47:0;;;5038:51:1;108648:7:0;;108675:15;;:38;;5011:18:1;;108675:47:0;4993:102:1;8378:175:0;8464:4;8481:42;4333:10;8505:9;8516:6;8481:9;:42::i;109214:367::-;109538:15;;:35;;-1:-1:-1;;;109538:35:0;;-1:-1:-1;;;;;5056:32:1;;;109538:35:0;;;5038:51:1;109344:7:0;;;;;;;;;;;;;;;;109538:15;;;:26;;5011:18:1;;109538:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;109531:42;;;;;;;;;;;;;;;;109214:367;;;;;;;;;:::o;106220:231::-;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;106289:12:::1;:20:::0;;;106370:12:::1;::::0;106332:15:::1;::::0;:51:::1;::::0;106370:12;106332:33:::1;::::0;106304:5;106332:19:::1;:33::i;104754:266::-:0;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;104878:7:::1;104862:13;7955:12:::0;;;7867:108;104862:13:::1;:23;;;;:::i;:::-;104853:6;:32;104831:143;;;::::0;-1:-1:-1;;;104831:143:0;;13500:2:1;104831:143:0::1;::::0;::::1;13482:21:1::0;13539:2;13519:18;;;13512:30;13578:34;13558:18;;;13551:62;13649:31;13629:18;;;13622:59;13698:19;;104831:143:0::1;13472:251:1::0;104831:143:0::1;104985:18;:27:::0;104754:266::o;108086:185::-;108214:15;;:49;;;-1:-1:-1;;;108214:49:0;;;;108182:7;;-1:-1:-1;;;;;108214:15:0;;:47;;:49;;;;;;;;;;;;;;:15;:49;;;;;;;;;;109039:167;109150:15;;:48;;-1:-1:-1;;;109150:48:0;;-1:-1:-1;;;;;5056:32:1;;;109150:48:0;;;5038:51:1;109126:4:0;;109150:15;;:39;;5011:18:1;;109150:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;105028:285::-;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;105123:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;105122:29;105100:117;;;::::0;-1:-1:-1;;;105100:117:0;;12336:2:1;105100:117:0::1;::::0;::::1;12318:21:1::0;12375:2;12355:18;;;12348:30;12414:34;12394:18;;;12387:62;-1:-1:-1;;;12465:18:1;;;12458:36;12511:19;;105100:117:0::1;12308:228:1::0;105100:117:0::1;-1:-1:-1::0;;;;;105228:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:35;;-1:-1:-1;;105228:35:0::1;105259:4;105228:35;::::0;;105281:24;::::1;::::0;105228:28;105281:24:::1;105028:285:::0;:::o;110503:130::-;110586:15;;:39;;;-1:-1:-1;;;110586:39:0;;;;110559:7;;-1:-1:-1;;;;;110586:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;107651:124;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;107725:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;107725:42:0;;::::1;::::0;::::1;17833:25:1::0;;;-1:-1:-1;;;;;107725:15:0;;::::1;::::0;:31:::1;::::0;17806:18:1;;107725:42:0::1;17788:76:1::0;109589:377:0;109918:15;;:40;;-1:-1:-1;;;109918:40:0;;;;;17833:25:1;;;109724:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;109918:15:0;;;;:33;;17806:18:1;;109918:40:0;17788:76:1;30841:192:0;30014:6;;-1:-1:-1;;;;;30014:6:0;4333:10;30161:23;30153:68;;;;-1:-1:-1;;;30153:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30930:22:0;::::1;30922:73;;;::::0;-1:-1:-1;;;30922:73:0;;10713:2:1;30922:73:0::1;::::0;::::1;10695:21:1::0;10752:2;10732:18;;;10725:30;10791:34;10771:18;;;10764:62;-1:-1:-1;;;10842:18:1;;;10835:36;10888:19;;30922:73:0::1;10685:228:1::0;30922:73:0::1;31006:19;31016:8;31006:9;:19::i;17488:387::-:0;17811:20;17859:8;;;17488:387::o;34027:98::-;34085:7;34112:5;34116:1;34112;:5;:::i;35164:98::-;35222:7;35249:5;35253:1;35249;:5;:::i;39157:524::-;39214:16;39284:4;39278:11;-1:-1:-1;;;39310:3:0;39303:79;39429:14;39423:4;39419:25;39412:4;39407:3;39403:14;39396:49;-1:-1:-1;;;39475:4:0;39470:3;39466:14;39459:90;39590:4;39585:3;39582:1;39575:20;39563:32;-1:-1:-1;;;;;;;39624:22:0;;39616:57;;;;-1:-1:-1;;;39616:57:0;;13930:2:1;39616:57:0;;;13912:21:1;13969:2;13949:18;;;13942:30;-1:-1:-1;;;13988:18:1;;;13981:52;14050:18;;39616:57:0;13902:172:1;39616:57:0;39157:524;;;:::o;14868:380::-;-1:-1:-1;;;;;15004:19:0;;14996:68;;;;-1:-1:-1;;;14996:68:0;;15885:2:1;14996:68:0;;;15867:21:1;15924:2;15904:18;;;15897:30;15963:34;15943:18;;;15936:62;-1:-1:-1;;;16014:18:1;;;16007:34;16058:19;;14996:68:0;15857:226:1;14996:68:0;-1:-1:-1;;;;;15083:21:0;;15075:68;;;;-1:-1:-1;;;15075:68:0;;11120:2:1;15075:68:0;;;11102:21:1;11159:2;11139:18;;;11132:30;11198:34;11178:18;;;11171:62;-1:-1:-1;;;11249:18:1;;;11242:32;11291:19;;15075:68:0;11092:224:1;15075:68:0;-1:-1:-1;;;;;15156:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15208:32;;17833:25:1;;;15208:32:0;;17806:18:1;15208:32:0;;;;;;;14868:380;;;:::o;110791:2791::-;-1:-1:-1;;;;;110923:18:0;;110915:68;;;;-1:-1:-1;;;110915:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;111002:16:0;;110994:64;;;;-1:-1:-1;;;110994:64:0;;;;;;;:::i;:::-;111075:13;;-1:-1:-1;;;111075:13:0;;;;111071:94;;;111105:11;;:48;;-1:-1:-1;;;111105:48:0;;-1:-1:-1;;;;;5958:15:1;;;111105:48:0;;;5940:34:1;6010:15;;;5990:18;;;5983:43;6042:18;;;6035:34;;;111105:11:0;;;;:30;;5875:18:1;;111105:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111071:94;111181:11;111177:93;;111209:28;111225:4;111231:2;111235:1;111209:15;:28::i;:::-;110791:2791;;;:::o;111177:93::-;111331:4;111282:28;8139:18;;;;;;;;;;;111389;;111365:42;;;;;;;111438:33;;-1:-1:-1;111463:8:0;;-1:-1:-1;;;111463:8:0;;;;111462:9;111438:33;:82;;;;-1:-1:-1;;;;;;111489:31:0;;;;;;:25;:31;;;;;;;;111488:32;111438:82;:114;;;;-1:-1:-1;30014:6:0;;-1:-1:-1;;;;;111537:15:0;;;30014:6;;111537:15;;111438:114;:144;;;;-1:-1:-1;30014:6:0;;-1:-1:-1;;;;;111569:13:0;;;30014:6;;111569:13;;111438:144;:174;;;;;111611:1;111599:9;;:13;111438:174;111420:922;;;111639:8;:15;;-1:-1:-1;;;;111639:15:0;-1:-1:-1;;;111639:15:0;;;111675:12;;:16;111671:232;;111712:23;111738:97;111825:9;;111738:60;111785:12;;111738:20;:46;;:60;;;;:::i;:::-;:86;;:97::i;:::-;111712:123;;111854:33;111871:15;111854:16;:33::i;:::-;111671:232;;111923:12;;:16;111919:216;;111960:18;111981:93;112046:9;;111981:38;112006:12;;111981:20;:24;;:38;;;;:::i;:93::-;111960:114;;112093:26;112108:10;112093:14;:26::i;:::-;111919:216;;112190:4;112151:18;8139;;;;;;;;;;;112215:14;;112211:87;;112250:32;112271:10;112250:20;:32::i;:::-;-1:-1:-1;112314:8:0;:16;;-1:-1:-1;;;;112314:16:0;;;111420:922;112370:8;;-1:-1:-1;;;;;112480:25:0;;112354:12;112480:25;;;:19;:25;;;;;;112370:8;-1:-1:-1;;;112370:8:0;;;;;112369:9;;112480:25;;:52;;-1:-1:-1;;;;;;112509:23:0;;;;;;:19;:23;;;;;;;;112480:52;112476:100;;;-1:-1:-1;112559:5:0;112476:100;112592:7;:24;;;;;112615:1;112603:9;;:13;112592:24;112588:201;;;112633:12;112648:30;112674:3;112648:21;112659:9;;112648:6;:10;;:21;;;;:::i;:30::-;112633:45;-1:-1:-1;112702:16:0;:6;112633:45;112702:10;:16::i;:::-;112693:25;;112735:42;112751:4;112765;112772;112735:15;:42::i;:::-;112588:201;;112801:33;112817:4;112823:2;112827:6;112801:15;:33::i;:::-;112864:15;;-1:-1:-1;;;;;112864:15:0;:26;112899:4;112906:15;112899:4;-1:-1:-1;;;;;8139:18:0;8112:7;8139:18;;;;;;;;;;;;8038:127;112906:15;112864:58;;-1:-1:-1;;;;;;112864:58:0;;;;;;;-1:-1:-1;;;;;5613:32:1;;;112864:58:0;;;5595:51:1;5662:18;;;5655:34;5568:18;;112864:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112847:96;112957:15;;-1:-1:-1;;;;;112957:15:0;:26;112992:2;112997:13;112992:2;-1:-1:-1;;;;;8139:18:0;8112:7;8139:18;;;;;;;;;;;;8038:127;112997:13;112957:54;;-1:-1:-1;;;;;;112957:54:0;;;;;;;-1:-1:-1;;;;;5613:32:1;;;112957:54:0;;;5595:51:1;5662:18;;;5655:34;5568:18;;112957:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112953:70;113040:8;;-1:-1:-1;;;113040:8:0;;;;113035:540;;113079:16;;113116:15;;:28;;-1:-1:-1;;;;;;113116:28:0;;;;;17833:25:1;;;-1:-1:-1;;;;;113116:15:0;;;;:23;;17806:18:1;;113116:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;113116:28:0;;;;;;;;-1:-1:-1;;113116:28:0;;;;;;;;;;;;:::i;:::-;;;113112:452;;;;;113308:231;;;19665:25:1;;;19721:2;19706:18;;19699:34;;;19749:18;;;19742:34;;;19807:2;19792:18;;19785:34;;;113511:9:0;;113458:4;;113308:231;;19652:3:1;19637:19;113308:231:0;;;;;;;113145:410;;;113112:452;113035:540;;110791:2791;;;;;;:::o;31041:173::-;31116:6;;;-1:-1:-1;;;;;31133:17:0;;;-1:-1:-1;;;;;;31133:17:0;;;;;;;31166:40;;31116:6;;;31133:17;31116:6;;31166:40;;31097:16;;31166:40;31041:173;;:::o;12087:733::-;-1:-1:-1;;;;;12227:20:0;;12219:70;;;;-1:-1:-1;;;12219:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12308:23:0;;12300:71;;;;-1:-1:-1;;;12300:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12468:17:0;;12444:21;12468:17;;;;;;;;;;;12504:23;;;;12496:74;;;;-1:-1:-1;;;12496:74:0;;11929:2:1;12496:74:0;;;11911:21:1;11968:2;11948:18;;;11941:30;12007:34;11987:18;;;11980:62;-1:-1:-1;;;12058:18:1;;;12051:36;12104:19;;12496:74:0;11901:228:1;12496:74:0;-1:-1:-1;;;;;12606:17:0;;;:9;:17;;;;;;;;;;;12626:22;;;12606:42;;12670:20;;;;;;;;:30;;12642:6;;12606:9;12670:30;;12642:6;;12670:30;:::i;:::-;;;;;;;;12735:9;-1:-1:-1;;;;;12718:35:0;12727:6;-1:-1:-1;;;;;12718:35:0;;12746:6;12718:35;;;;17833:25:1;;17821:2;17806:18;;17788:76;12766:46:0;12087:733;;;;:::o;34765:98::-;34823:7;34850:5;34854:1;34850;:5;:::i;113590:410::-;113687:11;;113680:68;;-1:-1:-1;;;113680:68:0;;113732:4;113680:68;;;5038:51:1;113651:26:0;;-1:-1:-1;;;;;113687:11:0;;113680:29;;5011:18:1;;113680:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;113651:97;;113761:25;113779:6;113761:17;:25::i;:::-;113826:11;;113819:44;;-1:-1:-1;;;113819:44:0;;113857:4;113819:44;;;5038:51:1;113797:18:0;;113818:94;;113883:18;;-1:-1:-1;;;;;113826:11:0;;113819:29;;5011:18:1;;113819:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;113818:50;;:94::i;:::-;113956:23;;113930:11;;113797:115;;-1:-1:-1;113923:69:0;;-1:-1:-1;;;;;113930:11:0;;;;113956:23;113797:115;113923:32;:69::i;114008:923::-;114118:12;114133:13;:6;114144:1;114133:10;:13::i;:::-;114118:28;-1:-1:-1;114157:17:0;114177:16;:6;114118:28;114177:10;:16::i;:::-;114157:36;-1:-1:-1;114496:21:0;114562:22;114579:4;114562:16;:22::i;:::-;114715:18;114736:41;:21;114762:14;114736:25;:41::i;:::-;114715:62;;114827:35;114840:9;114851:10;114827:12;:35::i;:::-;114880:43;;;19312:25:1;;;19368:2;19353:18;;19346:34;;;19396:18;;;19389:34;;;114880:43:0;;19300:2:1;19285:18;114880:43:0;;;;;;;114008:923;;;;;:::o;116713:607::-;116778:25;116796:6;116778:17;:25::i;:::-;116841:11;;116834:44;;-1:-1:-1;;;116834:44:0;;116872:4;116834:44;;;5038:51:1;116814:17:0;;-1:-1:-1;;;;;116841:11:0;;116834:29;;5011:18:1;;116834:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;116956:11;;116991:15;;116814:64;;-1:-1:-1;116889:12:0;;116904:138;;-1:-1:-1;;;;;116956:11:0;;;;116991:15;116814:64;116904:30;:138::i;:::-;116889:153;;117057:7;117053:260;;;117085:15;;:50;;-1:-1:-1;;;117085:50:0;;;;;17833:25:1;;;-1:-1:-1;;;;;117085:15:0;;;;:39;;17806:18:1;;117085:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117081:169;;117169:40;;;19031:25:1;;;19087:2;19072:18;;19065:34;;;117169:40:0;;19004:18:1;117169:40:0;;;;;;;;117228:7;;116713:607;:::o;117081:169::-;117269:32;;;19031:25:1;;;19087:2;19072:18;;19065:34;;;117269:32:0;;19004:18:1;117269:32:0;18986:119:1;34408:98:0;34466:7;34493:5;34497:1;34493;:5;:::i;115536:640::-;115627:16;;;115641:1;115627:16;;;;;;;;;115603:21;;115627:16;;;;;;;;;;-1:-1:-1;115627:16:0;115603:40;;115672:4;115654;115659:1;115654:7;;;;;;-1:-1:-1;;;115654:7:0;;;;;;;;;-1:-1:-1;;;;;115654:23:0;;;:7;;;;;;;;;;:23;;;;115698:15;;:22;;;-1:-1:-1;;;115698:22:0;;;;:15;;;;;:20;;:22;;;;;115654:7;;115698:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;115688:4;115693:1;115688:7;;;;;;-1:-1:-1;;;115688:7:0;;;;;;;;;-1:-1:-1;;;;;115688:32:0;;;:7;;;;;;;;;:32;115741:11;;115731:7;;115741:11;;;115731:4;;115736:1;;115731:7;;;;-1:-1:-1;;;115731:7:0;;;;;;;;;-1:-1:-1;;;;;115731:21:0;;;:7;;;;;;;;;:21;115797:15;;115765:62;;115782:4;;115797:15;115815:11;115765:8;:62::i;:::-;115883:15;;:265;;-1:-1:-1;;;115883:265:0;;-1:-1:-1;;;;;115883:15:0;;;;:87;;:265;;115993:11;;115883:15;;116051:4;;116086;;116114:15;;115883:265;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115536:640;;:::o;25577:211::-;25721:58;;;-1:-1:-1;;;;;5613:32:1;;25721:58:0;;;5595:51:1;5662:18;;;;5655:34;;;25721:58:0;;;;;;;;;;5568:18:1;;;;25721:58:0;;;;;;;;-1:-1:-1;;;;;25721:58:0;-1:-1:-1;;;25721:58:0;;;25694:86;;25714:5;;25694:19;:86::i;114939:589::-;115089:16;;;115103:1;115089:16;;;;;;;;115065:21;;115089:16;;;;;;;;;;-1:-1:-1;115089:16:0;115065:40;;115134:4;115116;115121:1;115116:7;;;;;;-1:-1:-1;;;115116:7:0;;;;;;;;;-1:-1:-1;;;;;115116:23:0;;;:7;;;;;;;;;;:23;;;;115160:15;;:22;;;-1:-1:-1;;;115160:22:0;;;;:15;;;;;:20;;:22;;;;;115116:7;;115160:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;115150:4;115155:1;115150:7;;;;;;-1:-1:-1;;;115150:7:0;;;;;;;;;-1:-1:-1;;;;;115150:32:0;;;:7;;;;;;;;;:32;115227:15;;115195:62;;115212:4;;115227:15;115245:11;115195:8;:62::i;:::-;115296:15;;:224;;-1:-1:-1;;;115296:224:0;;-1:-1:-1;;;;;115296:15:0;;;;:66;;:224;;115377:11;;115296:15;;115447:4;;115474;;115494:15;;115296:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116184:521;116364:15;;116332:62;;116349:4;;-1:-1:-1;;;;;116364:15:0;116382:11;116332:8;:62::i;:::-;116437:15;;:260;;-1:-1:-1;;;116437:260:0;;116509:4;116437:260;;;7406:34:1;7456:18;;;7449:34;;;116437:15:0;7499:18:1;;;7492:34;;;7542:18;;;7535:34;116649:6:0;7585:19:1;;;7578:44;116671:15:0;7638:19:1;;;7631:35;-1:-1:-1;;;;;116437:15:0;;;;:31;;116476:9;;7340:19:1;;116437:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;42231:445::-;42439:58;;;-1:-1:-1;;;;;5613:32:1;;;42439:58:0;;;5595:51:1;5662:18;;;;5655:34;;;42439:58:0;;;;;;;;;;5568:18:1;;;;42439:58:0;;;;;;;-1:-1:-1;;;;;42439:58:0;-1:-1:-1;;;42439:58:0;;;42405:103;;-1:-1:-1;;;;;;42405:19:0;;;;:103;;42439:58;42405:103;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42363:145;;;;42539:7;:82;;;;-1:-1:-1;42564:17:0;;:22;;:56;;;42601:10;42590:30;;;;;;;;;;;;:::i;:::-;42539:129;;;;;42667:1;42646:5;-1:-1:-1;;;;;42638:26:0;;:30;42539:129;42519:149;42231:445;-1:-1:-1;;;;;;42231:445:0:o;28150:716::-;28574:23;28600:69;28628:4;28600:69;;;;;;;;;;;;;;;;;28608:5;-1:-1:-1;;;;;28600:27:0;;;:69;;;;;:::i;:::-;28684:17;;28574:95;;-1:-1:-1;28684:21:0;28680:179;;28781:10;28770:30;;;;;;;;;;;;:::i;:::-;28762:85;;;;-1:-1:-1;;;28762:85:0;;16648:2:1;28762:85:0;;;16630:21:1;16687:2;16667:18;;;16660:30;16726:34;16706:18;;;16699:62;-1:-1:-1;;;16777:18:1;;;16770:40;16827:19;;28762:85:0;16620:232:1;20294:229:0;20431:12;20463:52;20485:6;20493:4;20499:1;20502:12;20463:21;:52::i;:::-;20456:59;20294:229;-1:-1:-1;;;;20294:229:0:o;21414:510::-;21584:12;21642:5;21617:21;:30;;21609:81;;;;-1:-1:-1;;;21609:81:0;;12743:2:1;21609:81:0;;;12725:21:1;12782:2;12762:18;;;12755:30;12821:34;12801:18;;;12794:62;-1:-1:-1;;;12872:18:1;;;12865:36;12918:19;;21609:81:0;12715:228:1;21609:81:0;17811:20;;21701:60;;;;-1:-1:-1;;;21701:60:0;;16290:2:1;21701:60:0;;;16272:21:1;16329:2;16309:18;;;16302:30;16368:31;16348:18;;;16341:59;16417:18;;21701:60:0;16262:179:1;21701:60:0;21775:12;21789:23;21816:6;-1:-1:-1;;;;;21816:11:0;21835:5;21842:4;21816:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21774:73;;;;21865:51;21882:7;21891:10;21903:12;21865:16;:51::i;:::-;21858:58;21414:510;-1:-1:-1;;;;;;;21414:510:0:o;24100:712::-;24250:12;24279:7;24275:530;;;-1:-1:-1;24310:10:0;24303:17;;24275:530;24424:17;;:21;24420:374;;24622:10;24616:17;24683:15;24670:10;24666:2;24662:19;24655:44;24570:148;24765:12;24758:20;;-1:-1:-1;;;24758:20:0;;;;;;;;:::i;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;812:398::-;880:6;888;941:2;929:9;920:7;916:23;912:32;909:2;;;962:6;954;947:22;909:2;1006:9;993:23;1025:31;1050:5;1025:31;:::i;:::-;1075:5;-1:-1:-1;1132:2:1;1117:18;;1104:32;1145:33;1104:32;1145:33;:::i;:::-;1197:7;1187:17;;;899:311;;;;;:::o;1215:466::-;1292:6;1300;1308;1361:2;1349:9;1340:7;1336:23;1332:32;1329:2;;;1382:6;1374;1367:22;1329:2;1426:9;1413:23;1445:31;1470:5;1445:31;:::i;:::-;1495:5;-1:-1:-1;1552:2:1;1537:18;;1524:32;1565:33;1524:32;1565:33;:::i;:::-;1319:362;;1617:7;;-1:-1:-1;;;1671:2:1;1656:18;;;;1643:32;;1319:362::o;1686:691::-;1817:6;1825;1833;1841;1849;1857;1865;1873;1926:3;1914:9;1905:7;1901:23;1897:33;1894:2;;;1948:6;1940;1933:22;1894:2;1985:9;1979:16;2004:31;2029:5;2004:31;:::i;:::-;2054:5;2044:15;;;2099:2;2088:9;2084:18;2078:25;2068:35;;2143:2;2132:9;2128:18;2122:25;2112:35;;2187:2;2176:9;2172:18;2166:25;2156:35;;2231:3;2220:9;2216:19;2210:26;2200:36;;2276:3;2265:9;2261:19;2255:26;2245:36;;2321:3;2310:9;2306:19;2300:26;2290:36;;2366:3;2355:9;2351:19;2345:26;2335:36;;1884:493;;;;;;;;;;;:::o;2382:325::-;2450:6;2458;2511:2;2499:9;2490:7;2486:23;2482:32;2479:2;;;2532:6;2524;2517:22;2479:2;2576:9;2563:23;2595:31;2620:5;2595:31;:::i;:::-;2645:5;2697:2;2682:18;;;;2669:32;;-1:-1:-1;;;2469:238:1:o;2712:665::-;2798:6;2806;2859:2;2847:9;2838:7;2834:23;2830:32;2827:2;;;2880:6;2872;2865:22;2827:2;2925:9;2912:23;2954:18;2995:2;2987:6;2984:14;2981:2;;;3016:6;3008;3001:22;2981:2;3059:6;3048:9;3044:22;3034:32;;3104:7;3097:4;3093:2;3089:13;3085:27;3075:2;;3131:6;3123;3116:22;3075:2;3176;3163:16;3202:2;3194:6;3191:14;3188:2;;;3223:6;3215;3208:22;3188:2;3281:7;3276:2;3266:6;3263:1;3259:14;3255:2;3251:23;3247:32;3244:45;3241:2;;;3307:6;3299;3292:22;3241:2;3343;3335:11;;;;;3365:6;;-1:-1:-1;2817:560:1;;-1:-1:-1;;;;2817:560:1:o;3382:251::-;3438:6;3491:2;3479:9;3470:7;3466:23;3462:32;3459:2;;;3512:6;3504;3497:22;3459:2;3556:9;3543:23;3575:28;3597:5;3575:28;:::i;3638:255::-;3705:6;3758:2;3746:9;3737:7;3733:23;3729:32;3726:2;;;3779:6;3771;3764:22;3726:2;3816:9;3810:16;3835:28;3857:5;3835:28;:::i;3898:190::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:2;;;4031:6;4023;4016:22;3978:2;-1:-1:-1;4059:23:1;;3968:120;-1:-1:-1;3968:120:1:o;4093:194::-;4163:6;4216:2;4204:9;4195:7;4191:23;4187:32;4184:2;;;4237:6;4229;4222:22;4184:2;-1:-1:-1;4265:16:1;;4174:113;-1:-1:-1;4174:113:1:o;4292:316::-;4380:6;4388;4396;4449:2;4437:9;4428:7;4424:23;4420:32;4417:2;;;4470:6;4462;4455:22;4417:2;4504:9;4498:16;4488:26;;4554:2;4543:9;4539:18;4533:25;4523:35;;4598:2;4587:9;4583:18;4577:25;4567:35;;4407:201;;;;;:::o;4613:274::-;4742:3;4780:6;4774:13;4796:53;4842:6;4837:3;4830:4;4822:6;4818:17;4796:53;:::i;:::-;4865:16;;;;;4750:137;-1:-1:-1;;4750:137:1:o;7677:708::-;7858:2;7910:21;;;7883:18;;;7966:22;;;7829:4;;8045:6;8019:2;8004:18;;7829:4;8082:277;8096:6;8093:1;8090:13;8082:277;;;8171:6;8158:20;8191:31;8216:5;8191:31;:::i;:::-;-1:-1:-1;;;;;8247:31:1;8235:44;;8334:15;;;;8299:12;;;;8275:1;8111:9;8082:277;;;-1:-1:-1;8376:3:1;7838:547;-1:-1:-1;;;;;;7838:547:1:o;9287:383::-;9436:2;9425:9;9418:21;9399:4;9468:6;9462:13;9511:6;9506:2;9495:9;9491:18;9484:34;9527:66;9586:6;9581:2;9570:9;9566:18;9561:2;9553:6;9549:15;9527:66;:::i;:::-;9654:2;9633:15;-1:-1:-1;;9629:29:1;9614:45;;;;9661:2;9610:54;;9408:262;-1:-1:-1;;9408:262:1:o;9675:399::-;9877:2;9859:21;;;9916:2;9896:18;;;9889:30;9955:34;9950:2;9935:18;;9928:62;-1:-1:-1;;;10021:2:1;10006:18;;9999:33;10064:3;10049:19;;9849:225::o;14488:356::-;14690:2;14672:21;;;14709:18;;;14702:30;14768:34;14763:2;14748:18;;14741:62;14835:2;14820:18;;14662:182::o;15277:401::-;15479:2;15461:21;;;15518:2;15498:18;;;15491:30;15557:34;15552:2;15537:18;;15530:62;-1:-1:-1;;;15623:2:1;15608:18;;15601:35;15668:3;15653:19;;15451:227::o;17869:983::-;18131:4;18179:3;18168:9;18164:19;18210:6;18199:9;18192:25;18236:2;18274:6;18269:2;18258:9;18254:18;18247:34;18317:3;18312:2;18301:9;18297:18;18290:31;18341:6;18376;18370:13;18407:6;18399;18392:22;18445:3;18434:9;18430:19;18423:26;;18484:2;18476:6;18472:15;18458:29;;18505:4;18518:195;18532:6;18529:1;18526:13;18518:195;;;18597:13;;-1:-1:-1;;;;;18593:39:1;18581:52;;18688:15;;;;18653:12;;;;18629:1;18547:9;18518:195;;;-1:-1:-1;;;;;;;18769:32:1;;;;18764:2;18749:18;;18742:60;-1:-1:-1;;;18833:3:1;18818:19;18811:35;18730:3;18140:712;-1:-1:-1;;;18140:712:1:o;20019:128::-;20059:3;20090:1;20086:6;20083:1;20080:13;20077:2;;;20096:18;;:::i;:::-;-1:-1:-1;20132:9:1;;20067:80::o;20152:217::-;20192:1;20218;20208:2;;-1:-1:-1;;;20243:31:1;;20297:4;20294:1;20287:15;20325:4;20250:1;20315:15;20208:2;-1:-1:-1;20354:9:1;;20198:171::o;20374:168::-;20414:7;20480:1;20476;20472:6;20468:14;20465:1;20462:21;20457:1;20450:9;20443:17;20439:45;20436:2;;;20487:18;;:::i;:::-;-1:-1:-1;20527:9:1;;20426:116::o;20547:125::-;20587:4;20615:1;20612;20609:8;20606:2;;;20620:18;;:::i;:::-;-1:-1:-1;20657:9:1;;20596:76::o;20677:258::-;20749:1;20759:113;20773:6;20770:1;20767:13;20759:113;;;20849:11;;;20843:18;20830:11;;;20823:39;20795:2;20788:10;20759:113;;;20890:6;20887:1;20884:13;20881:2;;;-1:-1:-1;;20925:1:1;20907:16;;20900:27;20730:205::o;20940:380::-;21019:1;21015:12;;;;21062;;;21083:2;;21137:4;21129:6;21125:17;21115:27;;21083:2;21190;21182:6;21179:14;21159:18;21156:38;21153:2;;;21236:10;21231:3;21227:20;21224:1;21217:31;21271:4;21268:1;21261:15;21299:4;21296:1;21289:15;21153:2;;20995:325;;;:::o;21325:135::-;21364:3;-1:-1:-1;;21385:17:1;;21382:2;;;21405:18;;:::i;:::-;-1:-1:-1;21452:1:1;21441:13;;21372:88::o;21465:127::-;21526:10;21521:3;21517:20;21514:1;21507:31;21557:4;21554:1;21547:15;21581:4;21578:1;21571:15;21597:131;-1:-1:-1;;;;;21672:31:1;;21662:42;;21652:2;;21718:1;21715;21708:12;21733:118;21819:5;21812:13;21805:21;21798:5;21795:32;21785:2;;21841:1;21838;21831:12

Swarm Source

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