ETH Price: $3,296.57 (-3.77%)
Gas: 6 Gwei

Token

Patnut (Patnut)
 

Overview

Max Total Supply

499,999.999999999999999965 Patnut

Holders

68

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
diamondhands007.eth
Balance
10,928.96174863387978142 Patnut

Value
$0.00
0x8ee55f30b24e42827cb4aad0b75454b92b99f106
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:
PATNUT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 1 : Patnut.sol
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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 _givePATNUT(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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

//PATNUT

// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ((######((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.(/////(@@((#(((//(///%((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((@@%/////@###((((%%%%((/#@(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/(@///%%////@((((%&&&&&&&%((%%#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&(@///%//////@(((%&&&&&&&&&%((%%#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((@///%////@((((&&&&&&&&&&&%((@#(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/##@@///@@#((((%&&&&&&&&&&&&%((@( @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@//#(((((((((((((%&&&&&&&&&&&&&%(#@(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*(#/((((((((((((%&&&&&&&&&&&&&&%(#&(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/(#/(((((((((((((&&&&&&&&&&&&&&&%(#&/((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ (###/((((((((((((%&&&&&&&&&&&&&%((/////###(@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(/#/#/((((((/##/(((%&&&&&&&&&%(////(((((///(###@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(#/(((((((((/#/((((&&&&&&%%(/(((((((((((((((#@/@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(#((((((((((((((((%&&&&(((((((((((((((((((((#@/@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(#(((((((((/#(((#((%#((((((((((((((((((((((#@#(@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(#((((((((/(((((#((((((((((((((((((((((((((@%/@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(#((((((((/#((((#/((((((((((((((((((((((((%&/@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(#(((((((/#((((((##/((/((((((((((((((((((#@(*@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(#((((((/#(((((((((((#(((((((((((#(((((((#&(@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(#((((((#(((((((###((((((((((((((((#(((((@#(@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(#(((((#((((((((((((((((((((((((#((#((((#@( @@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(#((((((((((((((((((((((((((((((#((#((((#@( @@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@(########################################@( @@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((####################################((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

contract PATNUT is ERC20, Ownable {
    constructor() ERC20("Patnut", "Patnut"){}

    /// turn on/off contributions
    bool public enablePATNUT;

    /// a minimum contribution to participate in the presale
    uint256 public constant MIN_CONTRIBUTION = .1 ether;

    /// limit the maximum contribution for each wallet
    uint256 public constant MAX_CONTRIBUTION = 1 ether;

    /// the maximum amount of eth that this contract will accept for presale
    uint256 public HARD_CAP = 40 ether;

    /// total number of tokens available
    uint256 public constant MAX_SUPPLY = 1_000_000 * 10 ** 18;

    /// 50% of tokens reserved for presale
    uint256 public constant PRESALE_SUPPLY = 500_000 * 10 ** 18;

    /// 50% of tokens reserved for LP and dev mint
    /// 50%= 35% LP / Marketing
    uint256 public constant RESERVE_MAX_SUPPLY = 500_000 * 10 ** 18;

    /// used to track the total contributions for the presale
    uint256 public TOTAL_CONTRIBUTED;

    /// used to track the total number of contributoors
    uint256 public NUMBER_OF_CONTRIBUTOORS;

    mapping(address => bool) public whiteLists;

    /// a struct used to keep track of each contributoors address and contribution amount
    struct Contribution {
        address addr;
        uint256 amount;
    }

    /// mapping of contributions
    mapping (uint256 => Contribution) public contribution;

    /// index of an address to it's contribition information
    mapping (address => uint256) public contributoor;

    /// collect presale contributions
    function sendToPresale() public payable {
        require (enablePATNUT, "PATNUT is not ready for you");
        require(whiteLists[msg.sender], "PATNUT does not like you!");

        /// look up the sender's current contribution amount in the mapping
        uint256 currentContribution = contribution[contributoor[msg.sender]].amount;

        /// initialize a contribution index so we can keep track of this address' contributions
        uint256 contributionIndex;

        require(msg.value >= MIN_CONTRIBUTION, "PATNUT too low");

        /// enPATNUT per-wallet contribution limit
        require (msg.value + currentContribution <= MAX_CONTRIBUTION, "Too much PATNUT");

        /// enPATNUT hard cap
        require (msg.value + TOTAL_CONTRIBUTED <= HARD_CAP, "Too much PATNUT"); 

        if (contributoor[msg.sender] != 0){
            /// no need to increase the number of contributors since this person already added
            contributionIndex = contributoor[msg.sender];
        } else {
            /// keep track of each new contributor with a unique index
            contributionIndex = NUMBER_OF_CONTRIBUTOORS + 1;
            NUMBER_OF_CONTRIBUTOORS++;
        }

        /// add the contribution to the amount contributed
        TOTAL_CONTRIBUTED = TOTAL_CONTRIBUTED + msg.value;

        /// keep track of the address' contributions so far
        contributoor[msg.sender] = contributionIndex;
        contribution[contributionIndex].addr = msg.sender;
        contribution[contributionIndex].amount += msg.value;
    }

    function airdropPresale() external onlyOwner {

        /// determine the price per token
        uint256 pricePerToken = (TOTAL_CONTRIBUTED * 10 ** 18)/PRESALE_SUPPLY;

        /// loop over each contribution and distribute tokens
        for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) {

            /// convert contribution to 18 decimals
            uint256 contributionAmount = contribution[i].amount * 10 ** 18;

            /// calculate the percentage of the pool based on the address' contribution
            uint256 numberOfTokensToMint = contributionAmount/pricePerToken;

            /// mint the tokens to the address
            _givePATNUT(contribution[i].addr, numberOfTokensToMint);
        }
    }

    /// dev mint the remainder of the pool to round out the supply
    function devMint() external onlyOwner {

       /// calculate the remaining supply
        uint256 numberToMint = MAX_SUPPLY - totalSupply();
        
        /// don't allow the dev mint until the tokens have been airdropped
        require (numberToMint <= RESERVE_MAX_SUPPLY, "Dev mint limited to reserve max");

        /// mint the remaining supply to the dev's wallet
        _givePATNUT(msg.sender, numberToMint);
    }

     /// set whether or not the contract allows contributions
    function setPATNUT(bool _value) external onlyOwner {
        enablePATNUT = _value;
    }

    function setHardCAP(uint256 _hcap) external onlyOwner {
        require(_hcap <= 50 ether && _hcap >= 40 ether, "Incorrect HARD CAP");
        HARD_CAP = _hcap;
    }

      function whiteList(address _address) external onlyOwner{
        whiteLists[_address] = true;
    }

    function addBatchWhiteList(address[] calldata _address) external onlyOwner {
        for(uint i = 0; i < _address.length; i++) {
            whiteLists[_address[i]] = true;
        }
    }

    /// if there are not enough contributions or we decide this sucks, refund everyone their eth
    function refundEveryone() external onlyOwner {
        for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) {
            address payable refundAddress = payable(contribution[i].addr);
            
            /// refund the contribution
            refundAddress.transfer(contribution[i].amount);
        }
    }

    function withdraw() public onlyOwner {
        uint256 contractBalance = address(this).balance;
        bool success = true;
        (success, ) = payable(owner()).call{value: contractBalance}("");
        require(success, "Transfer failed");
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_CONTRIBUTOORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_CONTRIBUTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"addBatchWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"contribution","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributoor","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":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePATNUT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundEveryone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendToPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hcap","type":"uint256"}],"name":"setHardCAP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setPATNUT","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"whiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteLists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405268022b1c8c1227a000006006553480156200001e57600080fd5b5060408051808201825260068082526514185d1b9d5d60d21b6020808401828152855180870190965292855284015281519192916200006091600391620000ef565b50805162000076906004906020840190620000ef565b505050620000936200008d6200009960201b60201c565b6200009d565b620001d1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fd9062000195565b90600052602060002090601f0160209004810192826200012157600085556200016c565b82601f106200013c57805160ff19168380011785556200016c565b828001600101855582156200016c579182015b828111156200016c5782518255916020019190600101906200014f565b506200017a9291506200017e565b5090565b5b808211156200017a57600081556001016200017f565b600181811c90821680620001aa57607f821691505b602082108103620001cb57634e487b7160e01b600052602260045260246000fd5b50919050565b61180480620001e16000396000f3fe6080604052600436106102345760003560e01c80635ea060281161013857806395d89b41116100b0578063dd62ed3e1161007f578063e8709c4011610064578063e8709c401461060f578063f2fde38b1461066e578063fa4a5c161461068e57600080fd5b8063dd62ed3e146105b4578063e3261454146105fa57600080fd5b806395d89b411461055f578063a457c2d714610574578063a9059cbb14610594578063c2699326146104d357600080fd5b806373138e4f116101075780638512747d116100ec5780638512747d146105065780638da5cb5b1461051b57806394d95f8f1461054357600080fd5b806373138e4f146104d35780637c69e207146104f157600080fd5b80635ea060281461045257806370a0823114610468578063715018a61461049e57806372c985cb146104b357600080fd5b806339509351116101cb57806340650c911161019a578063515877601161017f57806351587760146103e157806353dc840b146104015780635578ead71461043157600080fd5b806340650c91146103bd578063511f0726146103d957600080fd5b806339509351146103455780633a03171c146103655780633ccfd60b1461037b5780633dfa10f91461039057600080fd5b806323b872dd1161020757806323b872dd146102c9578063313ce567146102e957806332cb6b0c14610305578063372c12b11461032357600080fd5b8063044f910c1461023957806306fdde0314610262578063095ea7b31461028457806318160ddd146102b4575b600080fd5b34801561024557600080fd5b5061024f60085481565b6040519081526020015b60405180910390f35b34801561026e57600080fd5b506102776106ae565b6040516102599190611503565b34801561029057600080fd5b506102a461029f366004611574565b610740565b6040519015158152602001610259565b3480156102c057600080fd5b5060025461024f565b3480156102d557600080fd5b506102a46102e436600461159e565b610758565b3480156102f557600080fd5b5060405160128152602001610259565b34801561031157600080fd5b5061024f69d3c21bcecceda100000081565b34801561032f57600080fd5b5061034361033e3660046115da565b61077c565b005b34801561035157600080fd5b506102a4610360366004611574565b6107a8565b34801561037157600080fd5b5061024f60065481565b34801561038757600080fd5b506103436107e7565b34801561039c57600080fd5b5061024f6103ab3660046115da565b600b6020526000908152604090205481565b3480156103c957600080fd5b5061024f67016345785d8a000081565b6103436108af565b3480156103ed57600080fd5b506103436103fc3660046115fc565b610b5c565b34801561040d57600080fd5b506102a461041c3660046115da565b60096020526000908152604090205460ff1681565b34801561043d57600080fd5b506005546102a490600160a01b900460ff1681565b34801561045e57600080fd5b5061024f60075481565b34801561047457600080fd5b5061024f6104833660046115da565b6001600160a01b031660009081526020819052604090205490565b3480156104aa57600080fd5b50610343610b9d565b3480156104bf57600080fd5b506103436104ce36600461161e565b610bb1565b3480156104df57600080fd5b5061024f6969e10de76676d080000081565b3480156104fd57600080fd5b50610343610c30565b34801561051257600080fd5b50610343610cc0565b34801561052757600080fd5b506005546040516001600160a01b039091168152602001610259565b34801561054f57600080fd5b5061024f670de0b6b3a764000081565b34801561056b57600080fd5b50610277610d6f565b34801561058057600080fd5b506102a461058f366004611574565b610d7e565b3480156105a057600080fd5b506102a46105af366004611574565b610e28565b3480156105c057600080fd5b5061024f6105cf366004611693565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561060657600080fd5b50610343610e36565b34801561061b57600080fd5b5061064f61062a3660046116c6565b600a60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610259565b34801561067a57600080fd5b506103436106893660046115da565b610eac565b34801561069a57600080fd5b506103436106a93660046116c6565b610f39565b6060600380546106bd906116df565b80601f01602080910402602001604051908101604052809291908181526020018280546106e9906116df565b80156107365780601f1061070b57610100808354040283529160200191610736565b820191906000526020600020905b81548152906001019060200180831161071957829003601f168201915b5050505050905090565b60003361074e818585610fb4565b5060019392505050565b60003361076685828561110c565b61077185858561119e565b506001949350505050565b61078461138b565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061074e90829086906107e290879061172f565b610fb4565b6107ef61138b565b4760016108046005546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d806000811461084e576040519150601f19603f3d011682016040523d82523d6000602084013e610853565b606091505b505080915050806108ab5760405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c6564000000000000000000000000000000000060448201526064015b60405180910390fd5b5050565b600554600160a01b900460ff166109085760405162461bcd60e51b815260206004820152601b60248201527f5041544e5554206973206e6f7420726561647920666f7220796f75000000000060448201526064016108a2565b3360009081526009602052604090205460ff166109675760405162461bcd60e51b815260206004820152601960248201527f5041544e555420646f6573206e6f74206c696b6520796f75210000000000000060448201526064016108a2565b336000908152600b60209081526040808320548352600a9091528120600101549067016345785d8a00003410156109e05760405162461bcd60e51b815260206004820152600e60248201527f5041544e555420746f6f206c6f7700000000000000000000000000000000000060448201526064016108a2565b670de0b6b3a76400006109f3833461172f565b1115610a415760405162461bcd60e51b815260206004820152600f60248201527f546f6f206d756368205041544e5554000000000000000000000000000000000060448201526064016108a2565b600654600754610a51903461172f565b1115610a9f5760405162461bcd60e51b815260206004820152600f60248201527f546f6f206d756368205041544e5554000000000000000000000000000000000060448201526064016108a2565b336000908152600b602052604090205415610aca5750336000908152600b6020526040902054610af0565b600854610ad890600161172f565b600880549192506000610aea83611747565b91905055505b34600754610afe919061172f565b600755336000818152600b60209081526040808320859055848352600a9091528120805473ffffffffffffffffffffffffffffffffffffffff1916909217825560019091018054349290610b5390849061172f565b90915550505050565b610b6461138b565b60058054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b610ba561138b565b610baf60006113e5565b565b610bb961138b565b60005b81811015610c2b57600160096000858585818110610bdc57610bdc611760565b9050602002016020810190610bf191906115da565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c2381611747565b915050610bbc565b505050565b610c3861138b565b6000610c4360025490565b610c579069d3c21bcecceda1000000611776565b90506969e10de76676d0800000811115610cb35760405162461bcd60e51b815260206004820152601f60248201527f446576206d696e74206c696d6974656420746f2072657365727665206d61780060448201526064016108a2565b610cbd3382611444565b50565b610cc861138b565b60006969e10de76676d0800000600754670de0b6b3a7640000610ceb919061178d565b610cf591906117ac565b905060015b60085481116108ab576000818152600a6020526040812060010154610d2790670de0b6b3a764000061178d565b90506000610d3584836117ac565b6000848152600a6020526040902054909150610d5a906001600160a01b031682611444565b50508080610d6790611747565b915050610cfa565b6060600480546106bd906116df565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610e1b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016108a2565b6107718286868403610fb4565b60003361074e81858561119e565b610e3e61138b565b60015b6008548111610cbd576000818152600a6020526040808220805460019091015491516001600160a01b0390911692839280156108fc02929091818181858888f19350505050158015610e97573d6000803e3d6000fd5b50508080610ea490611747565b915050610e41565b610eb461138b565b6001600160a01b038116610f305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108a2565b610cbd816113e5565b610f4161138b565b6802b5e3af16b18800008111158015610f63575068022b1c8c1227a000008110155b610faf5760405162461bcd60e51b815260206004820152601260248201527f496e636f7272656374204841524420434150000000000000000000000000000060448201526064016108a2565b600655565b6001600160a01b03831661102f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108a2565b6001600160a01b0382166110ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016108a2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114611198578181101561118b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108a2565b6111988484848403610fb4565b50505050565b6001600160a01b03831661121a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016108a2565b6001600160a01b0382166112965760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016108a2565b6001600160a01b038316600090815260208190526040902054818110156113255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016108a2565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611198565b6005546001600160a01b03163314610baf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a2565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661149a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108a2565b80600260008282546114ac919061172f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b8181101561153057858101830151858201604001528201611514565b81811115611542576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461156f57600080fd5b919050565b6000806040838503121561158757600080fd5b61159083611558565b946020939093013593505050565b6000806000606084860312156115b357600080fd5b6115bc84611558565b92506115ca60208501611558565b9150604084013590509250925092565b6000602082840312156115ec57600080fd5b6115f582611558565b9392505050565b60006020828403121561160e57600080fd5b813580151581146115f557600080fd5b6000806020838503121561163157600080fd5b823567ffffffffffffffff8082111561164957600080fd5b818501915085601f83011261165d57600080fd5b81358181111561166c57600080fd5b8660208260051b850101111561168157600080fd5b60209290920196919550909350505050565b600080604083850312156116a657600080fd5b6116af83611558565b91506116bd60208401611558565b90509250929050565b6000602082840312156116d857600080fd5b5035919050565b600181811c908216806116f357607f821691505b60208210810361171357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561174257611742611719565b500190565b60006001820161175957611759611719565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008282101561178857611788611719565b500390565b60008160001904831182151516156117a7576117a7611719565b500290565b6000826117c957634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122031ea7ef458e9e06e4e17628271d6de2d29320bba945d76ea12ab352b5174d59664736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102345760003560e01c80635ea060281161013857806395d89b41116100b0578063dd62ed3e1161007f578063e8709c4011610064578063e8709c401461060f578063f2fde38b1461066e578063fa4a5c161461068e57600080fd5b8063dd62ed3e146105b4578063e3261454146105fa57600080fd5b806395d89b411461055f578063a457c2d714610574578063a9059cbb14610594578063c2699326146104d357600080fd5b806373138e4f116101075780638512747d116100ec5780638512747d146105065780638da5cb5b1461051b57806394d95f8f1461054357600080fd5b806373138e4f146104d35780637c69e207146104f157600080fd5b80635ea060281461045257806370a0823114610468578063715018a61461049e57806372c985cb146104b357600080fd5b806339509351116101cb57806340650c911161019a578063515877601161017f57806351587760146103e157806353dc840b146104015780635578ead71461043157600080fd5b806340650c91146103bd578063511f0726146103d957600080fd5b806339509351146103455780633a03171c146103655780633ccfd60b1461037b5780633dfa10f91461039057600080fd5b806323b872dd1161020757806323b872dd146102c9578063313ce567146102e957806332cb6b0c14610305578063372c12b11461032357600080fd5b8063044f910c1461023957806306fdde0314610262578063095ea7b31461028457806318160ddd146102b4575b600080fd5b34801561024557600080fd5b5061024f60085481565b6040519081526020015b60405180910390f35b34801561026e57600080fd5b506102776106ae565b6040516102599190611503565b34801561029057600080fd5b506102a461029f366004611574565b610740565b6040519015158152602001610259565b3480156102c057600080fd5b5060025461024f565b3480156102d557600080fd5b506102a46102e436600461159e565b610758565b3480156102f557600080fd5b5060405160128152602001610259565b34801561031157600080fd5b5061024f69d3c21bcecceda100000081565b34801561032f57600080fd5b5061034361033e3660046115da565b61077c565b005b34801561035157600080fd5b506102a4610360366004611574565b6107a8565b34801561037157600080fd5b5061024f60065481565b34801561038757600080fd5b506103436107e7565b34801561039c57600080fd5b5061024f6103ab3660046115da565b600b6020526000908152604090205481565b3480156103c957600080fd5b5061024f67016345785d8a000081565b6103436108af565b3480156103ed57600080fd5b506103436103fc3660046115fc565b610b5c565b34801561040d57600080fd5b506102a461041c3660046115da565b60096020526000908152604090205460ff1681565b34801561043d57600080fd5b506005546102a490600160a01b900460ff1681565b34801561045e57600080fd5b5061024f60075481565b34801561047457600080fd5b5061024f6104833660046115da565b6001600160a01b031660009081526020819052604090205490565b3480156104aa57600080fd5b50610343610b9d565b3480156104bf57600080fd5b506103436104ce36600461161e565b610bb1565b3480156104df57600080fd5b5061024f6969e10de76676d080000081565b3480156104fd57600080fd5b50610343610c30565b34801561051257600080fd5b50610343610cc0565b34801561052757600080fd5b506005546040516001600160a01b039091168152602001610259565b34801561054f57600080fd5b5061024f670de0b6b3a764000081565b34801561056b57600080fd5b50610277610d6f565b34801561058057600080fd5b506102a461058f366004611574565b610d7e565b3480156105a057600080fd5b506102a46105af366004611574565b610e28565b3480156105c057600080fd5b5061024f6105cf366004611693565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561060657600080fd5b50610343610e36565b34801561061b57600080fd5b5061064f61062a3660046116c6565b600a60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610259565b34801561067a57600080fd5b506103436106893660046115da565b610eac565b34801561069a57600080fd5b506103436106a93660046116c6565b610f39565b6060600380546106bd906116df565b80601f01602080910402602001604051908101604052809291908181526020018280546106e9906116df565b80156107365780601f1061070b57610100808354040283529160200191610736565b820191906000526020600020905b81548152906001019060200180831161071957829003601f168201915b5050505050905090565b60003361074e818585610fb4565b5060019392505050565b60003361076685828561110c565b61077185858561119e565b506001949350505050565b61078461138b565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061074e90829086906107e290879061172f565b610fb4565b6107ef61138b565b4760016108046005546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d806000811461084e576040519150601f19603f3d011682016040523d82523d6000602084013e610853565b606091505b505080915050806108ab5760405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c6564000000000000000000000000000000000060448201526064015b60405180910390fd5b5050565b600554600160a01b900460ff166109085760405162461bcd60e51b815260206004820152601b60248201527f5041544e5554206973206e6f7420726561647920666f7220796f75000000000060448201526064016108a2565b3360009081526009602052604090205460ff166109675760405162461bcd60e51b815260206004820152601960248201527f5041544e555420646f6573206e6f74206c696b6520796f75210000000000000060448201526064016108a2565b336000908152600b60209081526040808320548352600a9091528120600101549067016345785d8a00003410156109e05760405162461bcd60e51b815260206004820152600e60248201527f5041544e555420746f6f206c6f7700000000000000000000000000000000000060448201526064016108a2565b670de0b6b3a76400006109f3833461172f565b1115610a415760405162461bcd60e51b815260206004820152600f60248201527f546f6f206d756368205041544e5554000000000000000000000000000000000060448201526064016108a2565b600654600754610a51903461172f565b1115610a9f5760405162461bcd60e51b815260206004820152600f60248201527f546f6f206d756368205041544e5554000000000000000000000000000000000060448201526064016108a2565b336000908152600b602052604090205415610aca5750336000908152600b6020526040902054610af0565b600854610ad890600161172f565b600880549192506000610aea83611747565b91905055505b34600754610afe919061172f565b600755336000818152600b60209081526040808320859055848352600a9091528120805473ffffffffffffffffffffffffffffffffffffffff1916909217825560019091018054349290610b5390849061172f565b90915550505050565b610b6461138b565b60058054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b610ba561138b565b610baf60006113e5565b565b610bb961138b565b60005b81811015610c2b57600160096000858585818110610bdc57610bdc611760565b9050602002016020810190610bf191906115da565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c2381611747565b915050610bbc565b505050565b610c3861138b565b6000610c4360025490565b610c579069d3c21bcecceda1000000611776565b90506969e10de76676d0800000811115610cb35760405162461bcd60e51b815260206004820152601f60248201527f446576206d696e74206c696d6974656420746f2072657365727665206d61780060448201526064016108a2565b610cbd3382611444565b50565b610cc861138b565b60006969e10de76676d0800000600754670de0b6b3a7640000610ceb919061178d565b610cf591906117ac565b905060015b60085481116108ab576000818152600a6020526040812060010154610d2790670de0b6b3a764000061178d565b90506000610d3584836117ac565b6000848152600a6020526040902054909150610d5a906001600160a01b031682611444565b50508080610d6790611747565b915050610cfa565b6060600480546106bd906116df565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610e1b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016108a2565b6107718286868403610fb4565b60003361074e81858561119e565b610e3e61138b565b60015b6008548111610cbd576000818152600a6020526040808220805460019091015491516001600160a01b0390911692839280156108fc02929091818181858888f19350505050158015610e97573d6000803e3d6000fd5b50508080610ea490611747565b915050610e41565b610eb461138b565b6001600160a01b038116610f305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108a2565b610cbd816113e5565b610f4161138b565b6802b5e3af16b18800008111158015610f63575068022b1c8c1227a000008110155b610faf5760405162461bcd60e51b815260206004820152601260248201527f496e636f7272656374204841524420434150000000000000000000000000000060448201526064016108a2565b600655565b6001600160a01b03831661102f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108a2565b6001600160a01b0382166110ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016108a2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114611198578181101561118b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108a2565b6111988484848403610fb4565b50505050565b6001600160a01b03831661121a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016108a2565b6001600160a01b0382166112965760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016108a2565b6001600160a01b038316600090815260208190526040902054818110156113255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016108a2565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611198565b6005546001600160a01b03163314610baf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a2565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661149a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108a2565b80600260008282546114ac919061172f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b8181101561153057858101830151858201604001528201611514565b81811115611542576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461156f57600080fd5b919050565b6000806040838503121561158757600080fd5b61159083611558565b946020939093013593505050565b6000806000606084860312156115b357600080fd5b6115bc84611558565b92506115ca60208501611558565b9150604084013590509250925092565b6000602082840312156115ec57600080fd5b6115f582611558565b9392505050565b60006020828403121561160e57600080fd5b813580151581146115f557600080fd5b6000806020838503121561163157600080fd5b823567ffffffffffffffff8082111561164957600080fd5b818501915085601f83011261165d57600080fd5b81358181111561166c57600080fd5b8660208260051b850101111561168157600080fd5b60209290920196919550909350505050565b600080604083850312156116a657600080fd5b6116af83611558565b91506116bd60208401611558565b90509250929050565b6000602082840312156116d857600080fd5b5035919050565b600181811c908216806116f357607f821691505b60208210810361171357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561174257611742611719565b500190565b60006001820161175957611759611719565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008282101561178857611788611719565b500390565b60008160001904831182151516156117a7576117a7611719565b500290565b6000826117c957634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122031ea7ef458e9e06e4e17628271d6de2d29320bba945d76ea12ab352b5174d59664736f6c634300080d0033

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.