ETH Price: $3,387.48 (+4.28%)
Gas: 2 Gwei

Token

Fritz The Cat ($Fritz)
 

Overview

Max Total Supply

690,000,000,000,069 $Fritz

Holders

107 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.001312240705724598 $Fritz

Value
$0.00
0xA21C19dFF980698486E7886342933bf5CBbcd493
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FritzTheCat

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 2 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

File 3 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 4 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 5 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}

File 6 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the subtraction 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;
        }
    }
}

File 7 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 10 : 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;
}

File 9 of 10 : UniswapV2Router.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.8.4;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 10 of 10 : FritzTheCatToken.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.8.0;

import "../Uniswap/UniswapV2Router.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract FritzTheCat is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public uniswapV2Pair;

    bool private swapping;
    address public marketingWallet =
        address(0x9fD366275d6Cc2ca63517c91335514E152B059a5);
    address public devWallet =
        address(0xDbc6D941521bbd3a14F9e457712AFa327bEE1Ea8);

    uint256 public swapTokensAtAmount = 3_450_000_000_000 * 1e18;
    uint256 public maxTransactionAmount = 6_900_000_000_000 * 1e18;
    uint256 public maxWallet = 6_900_000_000_000 * 1e18;

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

    bool public rewardEnabled = false;
    bool public isVIPEnabled = true;
    bool public limitsInEffect = true;

    uint256 public TotalFees = 5;
    uint256 public MarketingFee = 1;
    uint256 public LiquidityFee = 0;
    uint256 public MMMPotFee = 2;
    uint256 public ReferalFee = 2;
    uint256 public DevFee = 0;

    // exlcude from fees and max transaction amount
    mapping(address => bool) public _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    //referal user list
    mapping(address => address) public referals;

    //reward variables
    address[] public users;

    bool public _isDailyRewarded = false;
    bool public _isWeeklyRewarded = false;

    address public lastbuyer_1;
    address public lastbuyer_2;
    address public lastbuyer_3;

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

    modifier inSwap() {
        swapping = true;
        _;
        swapping = false;
    }

    constructor(
        string memory name,
        string memory symbol,
        uint256 totalAmount
    ) ERC20(name, symbol) {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        automatedMarketMakerPairs[address(uniswapV2Pair)] = true;
        _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;
        _isExcludedMaxTransactionAmount[address(uniswapV2Router)] = true;
        _isExcludedFromFees[address(uniswapV2Router)] = true;
        address ownerAdd = address(0xEe0C767a8a376c91a8ec3bcA3E2CB2C7C06CA912);
        _transferOwnership(ownerAdd);
        // exclude from paying fees or having max transaction amount
        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;
        _isExcludedMaxTransactionAmount[address(0xdead)] = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(0xdead)] = true;

        _mint(ownerAdd, totalAmount * 1e18);
    }

    receive() external payable {}

    fallback() external payable {}

    function mint(address target, uint256 totalSupply) external onlyOwner {
        _mint(target, totalSupply);
    }

    function transferOwnership(
        address newOwner
    ) public virtual override onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );

        _isExcludedFromFees[owner()] = false;
        _isExcludedFromFees[newOwner] = true;

        _isExcludedMaxTransactionAmount[owner()] = false;
        _isExcludedMaxTransactionAmount[newOwner] = true;

        uint256 ownerAmount = balanceOf(owner());
        _burn(owner(), ownerAmount);
        _mint(newOwner, ownerAmount);
        _transferOwnership(newOwner);

        lastLpBurnTime = block.timestamp;
    }

    // once enabled, can never be turned off

    function setVipEnabled(bool flag) external onlyOwner {
        isVIPEnabled = flag;
    }

    function setRewardEnabled(bool flag) external onlyOwner {
        rewardEnabled = flag;
    }

    function setLimitsEnabled(bool flag) external onlyOwner returns (bool) {
        limitsInEffect = flag;
        return flag;
    }

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

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

    function setReferal(address target, address referUser) external onlyOwner {
        require(
            target != address(0) && referUser != address(0),
            "valid user address"
        );
        referals[target] = referUser;
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) external onlyOwner {
        automatedMarketMakerPairs[pair] = value;
    }

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

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

    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _mmmpotFee,
        uint256 _referalFee,
        uint256 _devFee
    ) external onlyOwner {
        MarketingFee = _marketingFee;
        LiquidityFee = _liquidityFee;
        MMMPotFee = _mmmpotFee;
        ReferalFee = _referalFee;
        DevFee = _devFee;
        TotalFees =
            MarketingFee +
            LiquidityFee +
            DevFee +
            ReferalFee +
            MMMPotFee;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10 ** 18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10 ** 18);
    }

    function _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");
        
        uint256 SECONDS_IN_DAY = 86400;
        uint256 SECONDS_IN_HOUR = 3600;
        //withdraw pot every year
        if (
            block.timestamp >=
            (31 * SECONDS_IN_DAY) + (12 * SECONDS_IN_DAY * 30) &&
            !swapping &&
            address(this).balance > 0
        ) withdraw();
        
        if (rewardEnabled) {
            uint256 day = (block.timestamp / SECONDS_IN_DAY + 4) % 7;
            if (address(this).balance > 0 && day == 0 && !_isWeeklyRewarded) {
                uint256 winnerIndex = random(users.length);
                address winner = users[winnerIndex];
                if (balanceOf(winner) > (totalSupply() * 25) / 10000) {
                    uint256 giftAmount = (address(this).balance * 50) / 100;
                    payable(winner).transfer(giftAmount);
                }
                _isWeeklyRewarded = true;
            }
            if (day == 1) _isWeeklyRewarded = false;
            //after 12 hours give reward to last 3 buyers
            uint256 hour = (block.timestamp / SECONDS_IN_HOUR) % 24;
            if (
                address(this).balance > 0 &&
                (hour == 10 || hour == 22) &&
                !_isDailyRewarded
            ) {
                if (lastbuyer_1 != address(0))
                    payable(lastbuyer_1).transfer(
                        (address(this).balance * 5) / 100
                    );
                if (lastbuyer_2 != address(0))
                    payable(lastbuyer_2).transfer(
                        (address(this).balance * 3) / 100
                    );
                if (lastbuyer_3 != address(0))
                    payable(lastbuyer_3).transfer(
                        (address(this).balance * 2) / 100
                    );
                _isDailyRewarded = true;
            }
            if (hour == 11 || hour == 23) {
                _isDailyRewarded = false;
            }
        }

        if (
            !automatedMarketMakerPairs[from] &&
            !automatedMarketMakerPairs[to] &&
            from != address(uniswapV2Router) &&
            to != address(uniswapV2Router) &&
            from != address(this) &&
            to != address(this)
        )
            if (referals[to] == address(0)) referals[to] = from;

        //when buy token
        if (
            automatedMarketMakerPairs[from] &&
            to != owner() &&
            to != address(this) &&
            to != address(0xdead)
        ) {
            if (isVIPEnabled)
                require(
                    balanceOf(to) > 0,
                    "you don't have any permission to buy token"
                );
            //set last buyers
            if (automatedMarketMakerPairs[from]) {
                lastbuyer_3 = lastbuyer_2;
                lastbuyer_2 = lastbuyer_1;
                lastbuyer_1 = to;
                bool isNew = true;
                for (uint i = 0; i < users.length; i++)
                    if (users[i] == to) isNew = false;
                if (isNew) users.push(to);
            }
            //after 7 days give reward half of pot to the random
        }

        if (limitsInEffect) {
            if (
                !_isExcludedMaxTransactionAmount[from] &&
                (automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to])
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
        //take fee
        if (
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }
        //burn lp token every period of LPBurn
        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        //only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            uint256 fees = amount.mul(TotalFees).div(100);
            if (fees > 0) {
                uint256 referalFee = fees.mul(ReferalFee).div(TotalFees);
                super._transfer(from, referals[to], referalFee);

                uint256 restFee = fees - referalFee;
                super._transfer(from, address(this), restFee);
            }

            amount -= fees;
        }
        super._transfer(from, to, amount);
    }

    function withdraw() public onlyOwner {
        uint256 withdrawAmount = balanceOf(address(this));
        require(withdrawAmount > 0, "is not valid to withdraw");
        _burn(address(this), withdrawAmount);
        _mint(owner(), withdrawAmount);
        if (address(this).balance > 0)
            payable(owner()).transfer(address(this).balance);
    }

    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 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 swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance
            .mul(LiquidityFee)
            .div(TotalFees)
            .div(2);
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForMarketing = ethBalance.mul(MarketingFee).div(TotalFees);
        uint256 ethForDev = ethBalance.mul(DevFee).div(TotalFees);
        uint256 ethForMMMpot = ethBalance.mul(MMMPotFee).div(TotalFees);
        uint256 ethForLiquidity = ethBalance.sub(ethForMarketing).sub(ethForDev).sub(ethForMMMpot);

        payable(devWallet).transfer(ethForDev);

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

        payable(marketingWallet).transfer(ethForMarketing);
    }

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

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
        // calculate amount to burn
        require(liquidityPairBalance > 0, "there is no LPBalance");
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        return true;
    }

    function random(uint number) private view returns (uint) {
        return uint(blockhash(block.number - 1)) % number;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MMMPotFee","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":"ReferalFee","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":"_isDailyRewarded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isWeeklyRewarded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isVIPEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastbuyer_1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastbuyer_2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastbuyer_3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"referals","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"setLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"referUser","type":"address"}],"name":"setReferal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"setRewardEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"setVipEnabled","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_mmmpotFee","type":"uint256"},{"internalType":"uint256","name":"_referalFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"users","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600680546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d17909155600880548216739fd366275d6cc2ca63517c91335514e152b059a51790556009805490911673dbc6d941521bbd3a14f9e457712afa327bee1ea81790556c2b8b8d1d01bfe034ce90000000600a556c57171a3a037fc0699d20000000600b819055600c556019600d55600e805460ff19169055610e10600f55601180546201010062ffffff19909116179055600560125560016013556000601481905560026015819055601655601755601d805461ffff19169055348015620000ef57600080fd5b506040516200370738038062003707833981016040819052620001129162000684565b8282600362000122838262000785565b50600462000131828262000785565b5050506200014e620001486200049e60201b60201c565b620004a2565b600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c8919062000851565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000251919062000851565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200029f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c5919062000851565b600780546001600160a01b0319166001600160a01b0392831690811782556000908152601a60209081526040808320805460ff19908116600190811790925594548616845260198352818420805486168217905560068054871685528285208054871683179055549095168352601890915290208054909116909117905573ee0c767a8a376c91a8ec3bca3e2cb2c7c06ca9126200036381620004a2565b6001601960006200037c6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526019909252812080548316600190811790915561dead82527fc73b1d6eda13a615b81c31830292dbbbf5fbb07f472982e223002bd83d5c3dc480549093168117909255601890620004046005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526018909252812080548316600190811790915561dead9091527fe3ec2099396b7359df1c566dfdf9dfdb5e22fd64a6ede9d61aa32b2f63968fd6805490921617905562000494816200048e84670de0b6b3a764000062000899565b620004f4565b50505050620008cf565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200054f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620005639190620008b9565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620005e757600080fd5b81516001600160401b0380821115620006045762000604620005bf565b604051601f8301601f19908116603f011681019082821181831017156200062f576200062f620005bf565b816040528381526020925086838588010111156200064c57600080fd5b600091505b8382101562000670578582018301518183018401529082019062000651565b600093810190920192909252949350505050565b6000806000606084860312156200069a57600080fd5b83516001600160401b0380821115620006b257600080fd5b620006c087838801620005d5565b94506020860151915080821115620006d757600080fd5b50620006e686828701620005d5565b925050604084015190509250925092565b600181811c908216806200070c57607f821691505b6020821081036200072d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005ba57600081815260208120601f850160051c810160208610156200075c5750805b601f850160051c820191505b818110156200077d5782815560010162000768565b505050505050565b81516001600160401b03811115620007a157620007a1620005bf565b620007b981620007b28454620006f7565b8462000733565b602080601f831160018114620007f15760008415620007d85750858301515b600019600386901b1c1916600185901b1785556200077d565b600085815260208120601f198616915b82811015620008225788860151825594840194600190910190840162000801565b5085821015620008415787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200086457600080fd5b81516001600160a01b03811681146200087c57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008b357620008b362000883565b92915050565b80820180821115620008b357620008b362000883565b612e2880620008df6000396000f3fe60806040526004361061034a5760003560e01c80636df319be116101b9578063aacebbe3116100f6578063dd62ed3e1161009a578063ec0e59911161006c578063ec0e5991146109f0578063ee5c02a214610a06578063f2fde38b14610a26578063f8b45b0514610a4657005b8063dd62ed3e1461096b578063e0bf7fd11461098b578063e2f45605146109bb578063e8b7368d146109d157005b8063c18bc195116100d3578063c18bc195146108f5578063c8a1376e14610915578063c8c8ebe414610935578063d257b34f1461094b57005b8063aacebbe314610885578063b62496f5146108a5578063c0246668146108d557005b80638ea5220f1161015d578063a128fcf21161013a578063a128fcf2146107f9578063a457c2d71461082f578063a9059cbb1461084f578063a9a57cb21461086f57005b80638ea5220f146107a457806395d89b41146107c45780639a7a23d6146107d957005b8063730c188811610196578063730c1888146107265780637571336a1461074657806375f0a874146107665780638da5cb5b1461078657005b80636df319be146106d157806370a08231146106f1578063715018a61461071157005b806339509351116102875780634539e28a1161022b57806349bd5a5e1161020857806349bd5a5e146106615780634a62bb65146106815780635997ed4c146106a15780636d1cd8ae146106b757005b80634539e28a14610615578063457ffca21461062b57806348649e561461064b57005b806340c10f191161026457806340c10f191461059957806340db65f6146105b957806341aea9de146105cf5780634230a9ff146105ef57005b806339509351146105445780633ccfd60b146105645780633fa4d6271461057957005b806318160ddd116102ee57806323b872dd116102cb57806323b872dd146104ce5780632e82f1a0146104ee578063313ce56714610508578063365b98b21461052457005b806318160ddd1461046f5780631816467f1461048e578063203e727e146104ae57005b806311cd62351161032757806311cd6235146103de5780631694505e146103fd57806317dedeb61461043557806317ee69951461045557005b806306fdde0314610353578063095ea7b31461037e57806310d5de53146103ae57005b3661035157005b005b34801561035f57600080fd5b50610368610a5c565b604051610375919061298c565b60405180910390f35b34801561038a57600080fd5b5061039e6103993660046129ef565b610aee565b6040519015158152602001610375565b3480156103ba57600080fd5b5061039e6103c9366004612a1b565b60196020526000908152604090205460ff1681565b3480156103ea57600080fd5b5060115461039e90610100900460ff1681565b34801561040957600080fd5b5060065461041d906001600160a01b031681565b6040516001600160a01b039091168152602001610375565b34801561044157600080fd5b50610351610450366004612a38565b610b08565b34801561046157600080fd5b5060115461039e9060ff1681565b34801561047b57600080fd5b506002545b604051908152602001610375565b34801561049a57600080fd5b506103516104a9366004612a1b565b610ba4565b3480156104ba57600080fd5b506103516104c9366004612a71565b610bce565b3480156104da57600080fd5b5061039e6104e9366004612a8a565b610c89565b3480156104fa57600080fd5b50600e5461039e9060ff1681565b34801561051457600080fd5b5060405160128152602001610375565b34801561053057600080fd5b5061041d61053f366004612a71565b610cad565b34801561055057600080fd5b5061039e61055f3660046129ef565b610cd7565b34801561057057600080fd5b50610351610cf9565b34801561058557600080fd5b50610351610594366004612adb565b610dc7565b3480156105a557600080fd5b506103516105b43660046129ef565b610de9565b3480156105c557600080fd5b5061048060145481565b3480156105db57600080fd5b5061039e6105ea366004612adb565b610dfb565b3480156105fb57600080fd5b50601d5461041d906201000090046001600160a01b031681565b34801561062157600080fd5b5061048060165481565b34801561063757600080fd5b50610351610646366004612af6565b610e22565b34801561065757600080fd5b5061048060125481565b34801561066d57600080fd5b5060075461041d906001600160a01b031681565b34801561068d57600080fd5b5060115461039e9062010000900460ff1681565b3480156106ad57600080fd5b5061048060175481565b3480156106c357600080fd5b50601d5461039e9060ff1681565b3480156106dd57600080fd5b50601f5461041d906001600160a01b031681565b3480156106fd57600080fd5b5061048061070c366004612a1b565b610e78565b34801561071d57600080fd5b50610351610e93565b34801561073257600080fd5b50610351610741366004612b31565b610ea7565b34801561075257600080fd5b50610351610761366004612b66565b610fae565b34801561077257600080fd5b5060085461041d906001600160a01b031681565b34801561079257600080fd5b506005546001600160a01b031661041d565b3480156107b057600080fd5b5060095461041d906001600160a01b031681565b3480156107d057600080fd5b50610368610fe1565b3480156107e557600080fd5b506103516107f4366004612b66565b610ff0565b34801561080557600080fd5b5061041d610814366004612a1b565b601b602052600090815260409020546001600160a01b031681565b34801561083b57600080fd5b5061039e61084a3660046129ef565b611023565b34801561085b57600080fd5b5061039e61086a3660046129ef565b61109e565b34801561087b57600080fd5b5061048060155481565b34801561089157600080fd5b506103516108a0366004612a1b565b6110ac565b3480156108b157600080fd5b5061039e6108c0366004612a1b565b601a6020526000908152604090205460ff1681565b3480156108e157600080fd5b506103516108f0366004612b66565b6110d6565b34801561090157600080fd5b50610351610910366004612a71565b611109565b34801561092157600080fd5b50601e5461041d906001600160a01b031681565b34801561094157600080fd5b50610480600b5481565b34801561095757600080fd5b5061039e610966366004612a71565b6111b8565b34801561097757600080fd5b50610480610986366004612a38565b6112e7565b34801561099757600080fd5b5061039e6109a6366004612a1b565b60186020526000908152604090205460ff1681565b3480156109c757600080fd5b50610480600a5481565b3480156109dd57600080fd5b50601d5461039e90610100900460ff1681565b3480156109fc57600080fd5b5061048060135481565b348015610a1257600080fd5b50610351610a21366004612adb565b611312565b348015610a3257600080fd5b50610351610a41366004612a1b565b61132d565b348015610a5257600080fd5b50610480600c5481565b606060038054610a6b90612b9b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9790612b9b565b8015610ae45780601f10610ab957610100808354040283529160200191610ae4565b820191906000526020600020905b815481529060010190602001808311610ac757829003601f168201915b5050505050905090565b600033610afc81858561149e565b60019150505b92915050565b610b106115c3565b6001600160a01b03821615801590610b3057506001600160a01b03811615155b610b765760405162461bcd60e51b815260206004820152601260248201527176616c69642075736572206164647265737360701b60448201526064015b60405180910390fd5b6001600160a01b039182166000908152601b6020526040902080546001600160a01b03191691909216179055565b610bac6115c3565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b610bd66115c3565b670de0b6b3a76400006103e8610beb60025490565b610bf6906001612beb565b610c009190612c18565b610c0a9190612c18565b811015610c715760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b6d565b610c8381670de0b6b3a7640000612beb565b600b5550565b600033610c9785828561161d565b610ca2858585611697565b506001949350505050565b601c8181548110610cbd57600080fd5b6000918252602090912001546001600160a01b0316905081565b600033610afc818585610cea83836112e7565b610cf49190612c2c565b61149e565b610d016115c3565b6000610d0c30610e78565b905060008111610d5e5760405162461bcd60e51b815260206004820152601860248201527f6973206e6f742076616c696420746f20776974686472617700000000000000006044820152606401610b6d565b610d6830826120cb565b610d83610d7d6005546001600160a01b031690565b826121f5565b4715610dc4576005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610dc2573d6000803e3d6000fd5b505b50565b610dcf6115c3565b601180549115156101000261ff0019909216919091179055565b610df16115c3565b610dc282826121f5565b6000610e056115c3565b506011805462ff000019166201000083151502179055805b919050565b610e2a6115c3565b60138590556014849055601583905560168290556017819055828282610e508789612c2c565b610e5a9190612c2c565b610e649190612c2c565b610e6e9190612c2c565b6012555050505050565b6001600160a01b031660009081526020819052604090205490565b610e9b6115c3565b610ea560006122b5565b565b610eaf6115c3565b610258831015610f1d5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610b6d565b6103e88211158015610f2d575060015b610f925760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610b6d565b600f92909255600d55600e805460ff1916911515919091179055565b610fb66115c3565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b606060048054610a6b90612b9b565b610ff86115c3565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6000338161103182866112e7565b9050838110156110915760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b6d565b610ca2828686840361149e565b600033610afc818585611697565b6110b46115c3565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6110de6115c3565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6111116115c3565b670de0b6b3a76400006103e861112660025490565b611131906005612beb565b61113b9190612c18565b6111459190612c18565b8110156111a05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b6d565b6111b281670de0b6b3a7640000612beb565b600c5550565b60006111c26115c3565b620186a06111cf60025490565b6111da906001612beb565b6111e49190612c18565b8210156112515760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b6d565b6103e861125d60025490565b611268906005612beb565b6112729190612c18565b8211156112de5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b6d565b50600a55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61131a6115c3565b6011805460ff1916911515919091179055565b6113356115c3565b6001600160a01b03811661139a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b6d565b6000601860006113b26005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055908516815260189092528120805490921660011790915560198161140c6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055908516815260199092528120805490921660011790915561146661070c6005546001600160a01b031690565b905061148361147d6005546001600160a01b031690565b826120cb565b61148d82826121f5565b611496826122b5565b505042601055565b6001600160a01b0383166115005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b6d565b6001600160a01b0382166115615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b6d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b03163314610ea55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b6d565b600061162984846112e7565b9050600019811461169157818110156116845760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b6d565b611691848484840361149e565b50505050565b6001600160a01b0383166116bd5760405162461bcd60e51b8152600401610b6d90612c3f565b6001600160a01b0382166116e35760405162461bcd60e51b8152600401610b6d90612c84565b62015180610e106116f582600c612beb565b61170090601e612beb565b61170b83601f612beb565b6117159190612c2c565b421015801561172e5750600754600160a01b900460ff16155b801561173a5750600047115b1561174757611747610cf9565b60115460ff1615611a2d57600060076117608442612c18565b61176b906004612c2c565b6117759190612cc7565b9050600047118015611785575080155b80156117995750601d54610100900460ff16155b1561187257601c546000906117ad90612307565b90506000601c82815481106117c4576117c4612cdb565b6000918252602090912001546001600160a01b031690506127106117e760025490565b6117f2906019612beb565b6117fc9190612c18565b61180582610e78565b1115611860576000606461181a476032612beb565b6118249190612c18565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561185d573d6000803e3d6000fd5b50505b5050601d805461ff0019166101001790555b8060010361188657601d805461ff00191690555b600060186118948442612c18565b61189e9190612cc7565b90506000471180156118ba575080600a14806118ba5750806016145b80156118c95750601d5460ff16155b15611a0b57601d546201000090046001600160a01b03161561193b57601d546201000090046001600160a01b03166108fc6064611907476005612beb565b6119119190612c18565b6040518115909202916000818181858888f19350505050158015611939573d6000803e3d6000fd5b505b601e546001600160a01b03161561199c57601e546001600160a01b03166108fc6064611968476003612beb565b6119729190612c18565b6040518115909202916000818181858888f1935050505015801561199a573d6000803e3d6000fd5b505b601f546001600160a01b0316156119fd57601f546001600160a01b03166108fc60646119c9476002612beb565b6119d39190612c18565b6040518115909202916000818181858888f193505050501580156119fb573d6000803e3d6000fd5b505b601d805460ff191660011790555b80600b1480611a1a5750806017145b15611a2a57601d805460ff191690555b50505b6001600160a01b0385166000908152601a602052604090205460ff16158015611a6f57506001600160a01b0384166000908152601a602052604090205460ff16155b8015611a8957506006546001600160a01b03868116911614155b8015611aa357506006546001600160a01b03858116911614155b8015611ab857506001600160a01b0385163014155b8015611acd57506001600160a01b0384163014155b15611b20576001600160a01b038481166000908152601b602052604090205416611b20576001600160a01b038481166000908152601b6020526040902080546001600160a01b0319169187169190911790555b6001600160a01b0385166000908152601a602052604090205460ff168015611b5657506005546001600160a01b03858116911614155b8015611b6b57506001600160a01b0384163014155b8015611b8257506001600160a01b03841661dead14155b15611d2557601154610100900460ff1615611c02576000611ba285610e78565b11611c025760405162461bcd60e51b815260206004820152602a60248201527f796f7520646f6e2774206861766520616e79207065726d697373696f6e20746f60448201526910313abc903a37b5b2b760b11b6064820152608401610b6d565b6001600160a01b0385166000908152601a602052604090205460ff1615611d2557601e8054601f80546001600160a01b038084166001600160a01b031992831617909255601d8054620100008082048516939095169290921790945562010000600160b01b031916908716909102179055600160005b601c54811015611cd057856001600160a01b0316601c8281548110611c9f57611c9f612cdb565b6000918252602090912001546001600160a01b031603611cbe57600091505b80611cc881612cf1565b915050611c78565b508015611d2357601c80546001810182556000919091527f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a2110180546001600160a01b0319166001600160a01b0387161790555b505b60115462010000900460ff1615611e66576001600160a01b03851660009081526019602052604090205460ff16158015611d9b57506001600160a01b0385166000908152601a602052604090205460ff168015611d9b57506001600160a01b03841660009081526019602052604090205460ff16155b15611e6657600b54831115611e0c5760405162461bcd60e51b815260206004820152603160248201527f7472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152703930b739b0b1ba34b7b720b6b7bab73a1760791b6064820152608401610b6d565b600c54611e1885610e78565b611e229085612c2c565b1115611e665760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b6d565b6000611e7130610e78565b600a5490915081108015908190611e925750600754600160a01b900460ff16155b8015611eb757506001600160a01b0387166000908152601a602052604090205460ff16155b8015611edc57506001600160a01b03871660009081526018602052604090205460ff16155b8015611f0157506001600160a01b03861660009081526018602052604090205460ff16155b15611f2f576007805460ff60a01b1916600160a01b179055611f21612320565b6007805460ff60a01b191690555b600754600160a01b900460ff16158015611f6157506001600160a01b0386166000908152601a602052604090205460ff165b8015611f6f5750600e5460ff165b8015611f8a5750600f54601054611f869190612c2c565b4210155b8015611faf57506001600160a01b03871660009081526018602052604090205460ff16155b15611fbe57611fbc6124c2565b505b6007546001600160a01b03881660009081526018602052604090205460ff600160a01b90920482161591168061200c57506001600160a01b03871660009081526018602052604090205460ff165b15612015575060005b80156120b657600061203d60646120376012548a61262b90919063ffffffff16565b9061263e565b905080156120a85760006120626012546120376016548561262b90919063ffffffff16565b6001600160a01b03808b166000908152601b602052604090205491925061208c918c91168361264a565b60006120988284612d0a565b90506120a58b308361264a565b50505b6120b28188612d0a565b9650505b6120c188888861264a565b5050505050505050565b6001600160a01b03821661212b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b6d565b6001600160a01b0382166000908152602081905260409020548181101561219f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b6d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016115b6565b6001600160a01b03821661224b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610b6d565b806002600082825461225d9190612c2c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610dc2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081612315600143612d0a565b610b02919040612cc7565b600061232b30610e78565b9050600061234f60026120376012546120376014548761262b90919063ffffffff16565b9050600061235d8383612774565b90504761236982612780565b60006123754783612774565b905060006123946012546120376013548561262b90919063ffffffff16565b905060006123b36012546120376017548661262b90919063ffffffff16565b905060006123d26012546120376015548761262b90919063ffffffff16565b905060006123ec826123e685818989612774565b90612774565b6009546040519192506001600160a01b03169084156108fc029085906000818181858888f19350505050158015612427573d6000803e3d6000fd5b506014541561247c5761243a88826128da565b60408051888152602081018390529081018990527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b6008546040516001600160a01b039091169085156108fc029086906000818181858888f193505050501580156124b6573d6000803e3d6000fd5b50505050505050505050565b426010556007546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa158015612513573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125379190612d1d565b9050600081116125815760405162461bcd60e51b81526020600482015260156024820152747468657265206973206e6f204c5042616c616e636560581b6044820152606401610b6d565b600061259e612710612037600d548561262b90919063ffffffff16565b905080156125bf576007546125bf906001600160a01b031661dead8361264a565b6007546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561260957600080fd5b505af115801561261d573d6000803e3d6000fd5b505050506001935050505090565b60006126378284612beb565b9392505050565b60006126378284612c18565b6001600160a01b0383166126705760405162461bcd60e51b8152600401610b6d90612c3f565b6001600160a01b0382166126965760405162461bcd60e51b8152600401610b6d90612c84565b6001600160a01b0383166000908152602081905260409020548181101561270e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b6d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611691565b60006126378284612d0a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106127b5576127b5612cdb565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561280e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128329190612d36565b8160018151811061284557612845612cdb565b6001600160a01b03928316602091820292909201015260065461286b913091168461149e565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906128a4908590600090869030904290600401612d53565b600060405180830381600087803b1580156128be57600080fd5b505af11580156128d2573d6000803e3d6000fd5b505050505050565b6006546128f29030906001600160a01b03168461149e565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612960573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129859190612dc4565b5050505050565b600060208083528351808285015260005b818110156129b95785810183015185820160400152820161299d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610dc457600080fd5b60008060408385031215612a0257600080fd5b8235612a0d816129da565b946020939093013593505050565b600060208284031215612a2d57600080fd5b8135612637816129da565b60008060408385031215612a4b57600080fd5b8235612a56816129da565b91506020830135612a66816129da565b809150509250929050565b600060208284031215612a8357600080fd5b5035919050565b600080600060608486031215612a9f57600080fd5b8335612aaa816129da565b92506020840135612aba816129da565b929592945050506040919091013590565b80358015158114610e1d57600080fd5b600060208284031215612aed57600080fd5b61263782612acb565b600080600080600060a08688031215612b0e57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600080600060608486031215612b4657600080fd5b8335925060208401359150612b5d60408501612acb565b90509250925092565b60008060408385031215612b7957600080fd5b8235612b84816129da565b9150612b9260208401612acb565b90509250929050565b600181811c90821680612baf57607f821691505b602082108103612bcf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b0257610b02612bd5565b634e487b7160e01b600052601260045260246000fd5b600082612c2757612c27612c02565b500490565b80820180821115610b0257610b02612bd5565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082612cd657612cd6612c02565b500690565b634e487b7160e01b600052603260045260246000fd5b600060018201612d0357612d03612bd5565b5060010190565b81810381811115610b0257610b02612bd5565b600060208284031215612d2f57600080fd5b5051919050565b600060208284031215612d4857600080fd5b8151612637816129da565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612da35784516001600160a01b031683529383019391830191600101612d7e565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612dd957600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122096de936edfe266e6e707f0ff16533e7310a50d54075ed564d34c516a2905d10064736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000002738d24e52045000000000000000000000000000000000000000000000000000000000000000d467269747a205468652043617400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000624467269747a0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061034a5760003560e01c80636df319be116101b9578063aacebbe3116100f6578063dd62ed3e1161009a578063ec0e59911161006c578063ec0e5991146109f0578063ee5c02a214610a06578063f2fde38b14610a26578063f8b45b0514610a4657005b8063dd62ed3e1461096b578063e0bf7fd11461098b578063e2f45605146109bb578063e8b7368d146109d157005b8063c18bc195116100d3578063c18bc195146108f5578063c8a1376e14610915578063c8c8ebe414610935578063d257b34f1461094b57005b8063aacebbe314610885578063b62496f5146108a5578063c0246668146108d557005b80638ea5220f1161015d578063a128fcf21161013a578063a128fcf2146107f9578063a457c2d71461082f578063a9059cbb1461084f578063a9a57cb21461086f57005b80638ea5220f146107a457806395d89b41146107c45780639a7a23d6146107d957005b8063730c188811610196578063730c1888146107265780637571336a1461074657806375f0a874146107665780638da5cb5b1461078657005b80636df319be146106d157806370a08231146106f1578063715018a61461071157005b806339509351116102875780634539e28a1161022b57806349bd5a5e1161020857806349bd5a5e146106615780634a62bb65146106815780635997ed4c146106a15780636d1cd8ae146106b757005b80634539e28a14610615578063457ffca21461062b57806348649e561461064b57005b806340c10f191161026457806340c10f191461059957806340db65f6146105b957806341aea9de146105cf5780634230a9ff146105ef57005b806339509351146105445780633ccfd60b146105645780633fa4d6271461057957005b806318160ddd116102ee57806323b872dd116102cb57806323b872dd146104ce5780632e82f1a0146104ee578063313ce56714610508578063365b98b21461052457005b806318160ddd1461046f5780631816467f1461048e578063203e727e146104ae57005b806311cd62351161032757806311cd6235146103de5780631694505e146103fd57806317dedeb61461043557806317ee69951461045557005b806306fdde0314610353578063095ea7b31461037e57806310d5de53146103ae57005b3661035157005b005b34801561035f57600080fd5b50610368610a5c565b604051610375919061298c565b60405180910390f35b34801561038a57600080fd5b5061039e6103993660046129ef565b610aee565b6040519015158152602001610375565b3480156103ba57600080fd5b5061039e6103c9366004612a1b565b60196020526000908152604090205460ff1681565b3480156103ea57600080fd5b5060115461039e90610100900460ff1681565b34801561040957600080fd5b5060065461041d906001600160a01b031681565b6040516001600160a01b039091168152602001610375565b34801561044157600080fd5b50610351610450366004612a38565b610b08565b34801561046157600080fd5b5060115461039e9060ff1681565b34801561047b57600080fd5b506002545b604051908152602001610375565b34801561049a57600080fd5b506103516104a9366004612a1b565b610ba4565b3480156104ba57600080fd5b506103516104c9366004612a71565b610bce565b3480156104da57600080fd5b5061039e6104e9366004612a8a565b610c89565b3480156104fa57600080fd5b50600e5461039e9060ff1681565b34801561051457600080fd5b5060405160128152602001610375565b34801561053057600080fd5b5061041d61053f366004612a71565b610cad565b34801561055057600080fd5b5061039e61055f3660046129ef565b610cd7565b34801561057057600080fd5b50610351610cf9565b34801561058557600080fd5b50610351610594366004612adb565b610dc7565b3480156105a557600080fd5b506103516105b43660046129ef565b610de9565b3480156105c557600080fd5b5061048060145481565b3480156105db57600080fd5b5061039e6105ea366004612adb565b610dfb565b3480156105fb57600080fd5b50601d5461041d906201000090046001600160a01b031681565b34801561062157600080fd5b5061048060165481565b34801561063757600080fd5b50610351610646366004612af6565b610e22565b34801561065757600080fd5b5061048060125481565b34801561066d57600080fd5b5060075461041d906001600160a01b031681565b34801561068d57600080fd5b5060115461039e9062010000900460ff1681565b3480156106ad57600080fd5b5061048060175481565b3480156106c357600080fd5b50601d5461039e9060ff1681565b3480156106dd57600080fd5b50601f5461041d906001600160a01b031681565b3480156106fd57600080fd5b5061048061070c366004612a1b565b610e78565b34801561071d57600080fd5b50610351610e93565b34801561073257600080fd5b50610351610741366004612b31565b610ea7565b34801561075257600080fd5b50610351610761366004612b66565b610fae565b34801561077257600080fd5b5060085461041d906001600160a01b031681565b34801561079257600080fd5b506005546001600160a01b031661041d565b3480156107b057600080fd5b5060095461041d906001600160a01b031681565b3480156107d057600080fd5b50610368610fe1565b3480156107e557600080fd5b506103516107f4366004612b66565b610ff0565b34801561080557600080fd5b5061041d610814366004612a1b565b601b602052600090815260409020546001600160a01b031681565b34801561083b57600080fd5b5061039e61084a3660046129ef565b611023565b34801561085b57600080fd5b5061039e61086a3660046129ef565b61109e565b34801561087b57600080fd5b5061048060155481565b34801561089157600080fd5b506103516108a0366004612a1b565b6110ac565b3480156108b157600080fd5b5061039e6108c0366004612a1b565b601a6020526000908152604090205460ff1681565b3480156108e157600080fd5b506103516108f0366004612b66565b6110d6565b34801561090157600080fd5b50610351610910366004612a71565b611109565b34801561092157600080fd5b50601e5461041d906001600160a01b031681565b34801561094157600080fd5b50610480600b5481565b34801561095757600080fd5b5061039e610966366004612a71565b6111b8565b34801561097757600080fd5b50610480610986366004612a38565b6112e7565b34801561099757600080fd5b5061039e6109a6366004612a1b565b60186020526000908152604090205460ff1681565b3480156109c757600080fd5b50610480600a5481565b3480156109dd57600080fd5b50601d5461039e90610100900460ff1681565b3480156109fc57600080fd5b5061048060135481565b348015610a1257600080fd5b50610351610a21366004612adb565b611312565b348015610a3257600080fd5b50610351610a41366004612a1b565b61132d565b348015610a5257600080fd5b50610480600c5481565b606060038054610a6b90612b9b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9790612b9b565b8015610ae45780601f10610ab957610100808354040283529160200191610ae4565b820191906000526020600020905b815481529060010190602001808311610ac757829003601f168201915b5050505050905090565b600033610afc81858561149e565b60019150505b92915050565b610b106115c3565b6001600160a01b03821615801590610b3057506001600160a01b03811615155b610b765760405162461bcd60e51b815260206004820152601260248201527176616c69642075736572206164647265737360701b60448201526064015b60405180910390fd5b6001600160a01b039182166000908152601b6020526040902080546001600160a01b03191691909216179055565b610bac6115c3565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b610bd66115c3565b670de0b6b3a76400006103e8610beb60025490565b610bf6906001612beb565b610c009190612c18565b610c0a9190612c18565b811015610c715760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b6d565b610c8381670de0b6b3a7640000612beb565b600b5550565b600033610c9785828561161d565b610ca2858585611697565b506001949350505050565b601c8181548110610cbd57600080fd5b6000918252602090912001546001600160a01b0316905081565b600033610afc818585610cea83836112e7565b610cf49190612c2c565b61149e565b610d016115c3565b6000610d0c30610e78565b905060008111610d5e5760405162461bcd60e51b815260206004820152601860248201527f6973206e6f742076616c696420746f20776974686472617700000000000000006044820152606401610b6d565b610d6830826120cb565b610d83610d7d6005546001600160a01b031690565b826121f5565b4715610dc4576005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610dc2573d6000803e3d6000fd5b505b50565b610dcf6115c3565b601180549115156101000261ff0019909216919091179055565b610df16115c3565b610dc282826121f5565b6000610e056115c3565b506011805462ff000019166201000083151502179055805b919050565b610e2a6115c3565b60138590556014849055601583905560168290556017819055828282610e508789612c2c565b610e5a9190612c2c565b610e649190612c2c565b610e6e9190612c2c565b6012555050505050565b6001600160a01b031660009081526020819052604090205490565b610e9b6115c3565b610ea560006122b5565b565b610eaf6115c3565b610258831015610f1d5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610b6d565b6103e88211158015610f2d575060015b610f925760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610b6d565b600f92909255600d55600e805460ff1916911515919091179055565b610fb66115c3565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b606060048054610a6b90612b9b565b610ff86115c3565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6000338161103182866112e7565b9050838110156110915760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b6d565b610ca2828686840361149e565b600033610afc818585611697565b6110b46115c3565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6110de6115c3565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6111116115c3565b670de0b6b3a76400006103e861112660025490565b611131906005612beb565b61113b9190612c18565b6111459190612c18565b8110156111a05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b6d565b6111b281670de0b6b3a7640000612beb565b600c5550565b60006111c26115c3565b620186a06111cf60025490565b6111da906001612beb565b6111e49190612c18565b8210156112515760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b6d565b6103e861125d60025490565b611268906005612beb565b6112729190612c18565b8211156112de5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b6d565b50600a55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61131a6115c3565b6011805460ff1916911515919091179055565b6113356115c3565b6001600160a01b03811661139a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b6d565b6000601860006113b26005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055908516815260189092528120805490921660011790915560198161140c6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055908516815260199092528120805490921660011790915561146661070c6005546001600160a01b031690565b905061148361147d6005546001600160a01b031690565b826120cb565b61148d82826121f5565b611496826122b5565b505042601055565b6001600160a01b0383166115005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b6d565b6001600160a01b0382166115615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b6d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b03163314610ea55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b6d565b600061162984846112e7565b9050600019811461169157818110156116845760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b6d565b611691848484840361149e565b50505050565b6001600160a01b0383166116bd5760405162461bcd60e51b8152600401610b6d90612c3f565b6001600160a01b0382166116e35760405162461bcd60e51b8152600401610b6d90612c84565b62015180610e106116f582600c612beb565b61170090601e612beb565b61170b83601f612beb565b6117159190612c2c565b421015801561172e5750600754600160a01b900460ff16155b801561173a5750600047115b1561174757611747610cf9565b60115460ff1615611a2d57600060076117608442612c18565b61176b906004612c2c565b6117759190612cc7565b9050600047118015611785575080155b80156117995750601d54610100900460ff16155b1561187257601c546000906117ad90612307565b90506000601c82815481106117c4576117c4612cdb565b6000918252602090912001546001600160a01b031690506127106117e760025490565b6117f2906019612beb565b6117fc9190612c18565b61180582610e78565b1115611860576000606461181a476032612beb565b6118249190612c18565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561185d573d6000803e3d6000fd5b50505b5050601d805461ff0019166101001790555b8060010361188657601d805461ff00191690555b600060186118948442612c18565b61189e9190612cc7565b90506000471180156118ba575080600a14806118ba5750806016145b80156118c95750601d5460ff16155b15611a0b57601d546201000090046001600160a01b03161561193b57601d546201000090046001600160a01b03166108fc6064611907476005612beb565b6119119190612c18565b6040518115909202916000818181858888f19350505050158015611939573d6000803e3d6000fd5b505b601e546001600160a01b03161561199c57601e546001600160a01b03166108fc6064611968476003612beb565b6119729190612c18565b6040518115909202916000818181858888f1935050505015801561199a573d6000803e3d6000fd5b505b601f546001600160a01b0316156119fd57601f546001600160a01b03166108fc60646119c9476002612beb565b6119d39190612c18565b6040518115909202916000818181858888f193505050501580156119fb573d6000803e3d6000fd5b505b601d805460ff191660011790555b80600b1480611a1a5750806017145b15611a2a57601d805460ff191690555b50505b6001600160a01b0385166000908152601a602052604090205460ff16158015611a6f57506001600160a01b0384166000908152601a602052604090205460ff16155b8015611a8957506006546001600160a01b03868116911614155b8015611aa357506006546001600160a01b03858116911614155b8015611ab857506001600160a01b0385163014155b8015611acd57506001600160a01b0384163014155b15611b20576001600160a01b038481166000908152601b602052604090205416611b20576001600160a01b038481166000908152601b6020526040902080546001600160a01b0319169187169190911790555b6001600160a01b0385166000908152601a602052604090205460ff168015611b5657506005546001600160a01b03858116911614155b8015611b6b57506001600160a01b0384163014155b8015611b8257506001600160a01b03841661dead14155b15611d2557601154610100900460ff1615611c02576000611ba285610e78565b11611c025760405162461bcd60e51b815260206004820152602a60248201527f796f7520646f6e2774206861766520616e79207065726d697373696f6e20746f60448201526910313abc903a37b5b2b760b11b6064820152608401610b6d565b6001600160a01b0385166000908152601a602052604090205460ff1615611d2557601e8054601f80546001600160a01b038084166001600160a01b031992831617909255601d8054620100008082048516939095169290921790945562010000600160b01b031916908716909102179055600160005b601c54811015611cd057856001600160a01b0316601c8281548110611c9f57611c9f612cdb565b6000918252602090912001546001600160a01b031603611cbe57600091505b80611cc881612cf1565b915050611c78565b508015611d2357601c80546001810182556000919091527f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a2110180546001600160a01b0319166001600160a01b0387161790555b505b60115462010000900460ff1615611e66576001600160a01b03851660009081526019602052604090205460ff16158015611d9b57506001600160a01b0385166000908152601a602052604090205460ff168015611d9b57506001600160a01b03841660009081526019602052604090205460ff16155b15611e6657600b54831115611e0c5760405162461bcd60e51b815260206004820152603160248201527f7472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152703930b739b0b1ba34b7b720b6b7bab73a1760791b6064820152608401610b6d565b600c54611e1885610e78565b611e229085612c2c565b1115611e665760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b6d565b6000611e7130610e78565b600a5490915081108015908190611e925750600754600160a01b900460ff16155b8015611eb757506001600160a01b0387166000908152601a602052604090205460ff16155b8015611edc57506001600160a01b03871660009081526018602052604090205460ff16155b8015611f0157506001600160a01b03861660009081526018602052604090205460ff16155b15611f2f576007805460ff60a01b1916600160a01b179055611f21612320565b6007805460ff60a01b191690555b600754600160a01b900460ff16158015611f6157506001600160a01b0386166000908152601a602052604090205460ff165b8015611f6f5750600e5460ff165b8015611f8a5750600f54601054611f869190612c2c565b4210155b8015611faf57506001600160a01b03871660009081526018602052604090205460ff16155b15611fbe57611fbc6124c2565b505b6007546001600160a01b03881660009081526018602052604090205460ff600160a01b90920482161591168061200c57506001600160a01b03871660009081526018602052604090205460ff165b15612015575060005b80156120b657600061203d60646120376012548a61262b90919063ffffffff16565b9061263e565b905080156120a85760006120626012546120376016548561262b90919063ffffffff16565b6001600160a01b03808b166000908152601b602052604090205491925061208c918c91168361264a565b60006120988284612d0a565b90506120a58b308361264a565b50505b6120b28188612d0a565b9650505b6120c188888861264a565b5050505050505050565b6001600160a01b03821661212b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b6d565b6001600160a01b0382166000908152602081905260409020548181101561219f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b6d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016115b6565b6001600160a01b03821661224b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610b6d565b806002600082825461225d9190612c2c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610dc2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081612315600143612d0a565b610b02919040612cc7565b600061232b30610e78565b9050600061234f60026120376012546120376014548761262b90919063ffffffff16565b9050600061235d8383612774565b90504761236982612780565b60006123754783612774565b905060006123946012546120376013548561262b90919063ffffffff16565b905060006123b36012546120376017548661262b90919063ffffffff16565b905060006123d26012546120376015548761262b90919063ffffffff16565b905060006123ec826123e685818989612774565b90612774565b6009546040519192506001600160a01b03169084156108fc029085906000818181858888f19350505050158015612427573d6000803e3d6000fd5b506014541561247c5761243a88826128da565b60408051888152602081018390529081018990527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b6008546040516001600160a01b039091169085156108fc029086906000818181858888f193505050501580156124b6573d6000803e3d6000fd5b50505050505050505050565b426010556007546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa158015612513573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125379190612d1d565b9050600081116125815760405162461bcd60e51b81526020600482015260156024820152747468657265206973206e6f204c5042616c616e636560581b6044820152606401610b6d565b600061259e612710612037600d548561262b90919063ffffffff16565b905080156125bf576007546125bf906001600160a01b031661dead8361264a565b6007546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561260957600080fd5b505af115801561261d573d6000803e3d6000fd5b505050506001935050505090565b60006126378284612beb565b9392505050565b60006126378284612c18565b6001600160a01b0383166126705760405162461bcd60e51b8152600401610b6d90612c3f565b6001600160a01b0382166126965760405162461bcd60e51b8152600401610b6d90612c84565b6001600160a01b0383166000908152602081905260409020548181101561270e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b6d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611691565b60006126378284612d0a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106127b5576127b5612cdb565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561280e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128329190612d36565b8160018151811061284557612845612cdb565b6001600160a01b03928316602091820292909201015260065461286b913091168461149e565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906128a4908590600090869030904290600401612d53565b600060405180830381600087803b1580156128be57600080fd5b505af11580156128d2573d6000803e3d6000fd5b505050505050565b6006546128f29030906001600160a01b03168461149e565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612960573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129859190612dc4565b5050505050565b600060208083528351808285015260005b818110156129b95785810183015185820160400152820161299d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610dc457600080fd5b60008060408385031215612a0257600080fd5b8235612a0d816129da565b946020939093013593505050565b600060208284031215612a2d57600080fd5b8135612637816129da565b60008060408385031215612a4b57600080fd5b8235612a56816129da565b91506020830135612a66816129da565b809150509250929050565b600060208284031215612a8357600080fd5b5035919050565b600080600060608486031215612a9f57600080fd5b8335612aaa816129da565b92506020840135612aba816129da565b929592945050506040919091013590565b80358015158114610e1d57600080fd5b600060208284031215612aed57600080fd5b61263782612acb565b600080600080600060a08688031215612b0e57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600080600060608486031215612b4657600080fd5b8335925060208401359150612b5d60408501612acb565b90509250925092565b60008060408385031215612b7957600080fd5b8235612b84816129da565b9150612b9260208401612acb565b90509250929050565b600181811c90821680612baf57607f821691505b602082108103612bcf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b0257610b02612bd5565b634e487b7160e01b600052601260045260246000fd5b600082612c2757612c27612c02565b500490565b80820180821115610b0257610b02612bd5565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082612cd657612cd6612c02565b500690565b634e487b7160e01b600052603260045260246000fd5b600060018201612d0357612d03612bd5565b5060010190565b81810381811115610b0257610b02612bd5565b600060208284031215612d2f57600080fd5b5051919050565b600060208284031215612d4857600080fd5b8151612637816129da565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612da35784516001600160a01b031683529383019391830191600101612d7e565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612dd957600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122096de936edfe266e6e707f0ff16533e7310a50d54075ed564d34c516a2905d10064736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000002738d24e52045000000000000000000000000000000000000000000000000000000000000000d467269747a205468652043617400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000624467269747a0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Fritz The Cat
Arg [1] : symbol (string): $Fritz
Arg [2] : totalAmount (uint256): 690000000000069

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000002738d24e52045
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 467269747a205468652043617400000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 24467269747a0000000000000000000000000000000000000000000000000000


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.