S Price: $0.439117 (-11.78%)
    /

    Contract

    0x66F69F79De1AC9C27FE67B8009C2366617C10174

    Overview

    S Balance

    Sonic LogoSonic LogoSonic Logo0 S

    S Value

    $0.00

    More Info

    Private Name Tags

    TokenTracker

    Multichain Info

    No addresses found
    Age:90D
    Amount:Between 0-1
    Reset Filter
    Transaction Hash
    Method
    Block
    Age
    From
    To
    Amount
    Approve183512072025-04-05 17:06:2028 hrs ago1743872780IN
    Love: LOVE Token
    0 S0.0026844855.01
    Approve174696252025-04-01 13:39:505 days ago1743514790IN
    Love: LOVE Token
    0 S0.00794145165
    Approve162757922025-03-27 6:44:2810 days ago1743057868IN
    Love: LOVE Token
    0 S0.0025957855
    Transfer154012392025-03-23 10:18:1614 days ago1742725096IN
    Love: LOVE Token
    0 S0.0027114550.0001
    Transfer154010862025-03-23 10:17:1414 days ago1742725034IN
    Love: LOVE Token
    0 S0.0027114550.0001
    Approve153462592025-03-23 3:02:5714 days ago1742698977IN
    Love: LOVE Token
    0 S0.0026985755
    Approve149456152025-03-21 2:33:0716 days ago1742524387IN
    Love: LOVE Token
    0 S0.0026843155.02
    Approve147411432025-03-20 0:52:5317 days ago1742431973IN
    Love: LOVE Token
    0 S0.0026844855.01
    Approve141535372025-03-17 0:20:3920 days ago1742170839IN
    Love: LOVE Token
    0 S0.0023364550.0001
    Approve141129102025-03-16 19:11:3121 days ago1742152291IN
    Love: LOVE Token
    0 S0.0026844855.01
    Approve134420232025-03-13 11:44:4324 days ago1741866283IN
    Love: LOVE Token
    0 S0.0026844855.01
    Approve133498582025-03-13 0:23:5224 days ago1741825432IN
    Love: LOVE Token
    0 S0.0026990655.01
    Transfer133486082025-03-13 0:16:1424 days ago1741824974IN
    Love: LOVE Token
    0 S0.0027723956.06
    Approve125827702025-03-09 5:24:5628 days ago1741497896IN
    Love: LOVE Token
    0 S0.0014251455.01
    Approve120600212025-03-06 13:55:5931 days ago1741269359IN
    Love: LOVE Token
    0 S0.0026990655.01
    Approve119828582025-03-06 5:09:0431 days ago1741237744IN
    Love: LOVE Token
    0 S0.0014251455.01
    Approve119816622025-03-06 5:01:4931 days ago1741237309IN
    Love: LOVE Token
    0 S0.0029929661
    Approve119480472025-03-06 1:24:0031 days ago1741224240IN
    Love: LOVE Token
    0 S0.0026990655.01
    Approve119423282025-03-06 0:46:0931 days ago1741221969IN
    Love: LOVE Token
    0 S0.0026990655.01
    Transfer119395372025-03-06 0:28:0431 days ago1741220884IN
    Love: LOVE Token
    0 S0.0027204655.01
    Approve119358602025-03-06 0:06:0931 days ago1741219569IN
    Love: LOVE Token
    0 S0.0026990655.01
    Approve119352732025-03-06 0:02:5731 days ago1741219377IN
    Love: LOVE Token
    0 S0.0026990655.01
    Permit119173532025-03-05 22:05:1831 days ago1741212318IN
    Love: LOVE Token
    0 S0.0031734455.02
    Approve118669402025-03-05 16:57:2632 days ago1741193846IN
    Love: LOVE Token
    0 S0.0014251455.01
    Approve118233612025-03-05 12:13:1932 days ago1741176799IN
    Love: LOVE Token
    0 S0.0014251455.01
    VIEW ADVANCED FILTER

    Parent Transaction Hash Block Age From To Amount
    View All Internal Transactions
    Loading...
    Loading

    Contract Source Code Verified (Exact Match)

    Contract Name:
    LOVE

    Compiler Version
    v0.8.27+commit.40a35a09

    Optimization Enabled:
    Yes with 1000 runs

    Other Settings:
    paris EvmVersion
    File 1 of 22 : LOVE.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.27;
    import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
    import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
    import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    contract LOVE is ERC20, ERC20Burnable, ERC20Permit, Ownable {
    /// @notice Token Information
    uint256 public constant _totalSupply = 65251991923387 ether;
    // Token Symbol
    string public constant _symbol = "LOVE";
    // Token Name
    string public constant _name = "LOVE";
    /// @param _owner Token owner address who will Own and receive tokens
    constructor(address _owner)
    ERC20(_name, _symbol)
    ERC20Permit(_name)
    Ownable(_owner)
    {
    // Mint the total supply, no minting will be allowed after this
    _mint(_owner, _totalSupply);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 22 : Ownable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
    pragma solidity ^0.8.20;
    import {Context} from "../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.
    *
    * The initial owner is set to the address provided by the deployer. 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;
    /**
    * @dev The caller account is not authorized to perform an operation.
    */
    error OwnableUnauthorizedAccount(address account);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 22 : draft-IERC6093.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Standard ERC-20 Errors
    * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
    */
    interface IERC20Errors {
    /**
    * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    * @param balance Current balance for the interacting account.
    * @param needed Minimum amount required to perform a transfer.
    */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
    /**
    * @dev Indicates a failure with the token `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    */
    error ERC20InvalidSender(address sender);
    /**
    * @dev Indicates a failure with the token `receiver`. Used in transfers.
    * @param receiver Address to which tokens are being transferred.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 22 : IERC5267.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)
    pragma solidity ^0.8.20;
    interface IERC5267 {
    /**
    * @dev MAY be emitted to signal that the domain could have changed.
    */
    event EIP712DomainChanged();
    /**
    * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
    * signature.
    */
    function eip712Domain()
    external
    view
    returns (
    bytes1 fields,
    string memory name,
    string memory version,
    uint256 chainId,
    address verifyingContract,
    bytes32 salt,
    uint256[] memory extensions
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 22 : ERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "./IERC20.sol";
    import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
    import {Context} from "../../utils/Context.sol";
    import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
    *
    * 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].
    *
    * The default value of {decimals} is 18. To change this, you should override
    * this function so it returns a different value.
    *
    * 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 ERC-20
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 22 : ERC20Burnable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)
    pragma solidity ^0.8.20;
    import {ERC20} from "../ERC20.sol";
    import {Context} from "../../../utils/Context.sol";
    /**
    * @dev Extension of {ERC20} that allows token holders to destroy both their own
    * tokens and those that they have an allowance for, in a way that can be
    * recognized off-chain (via event analysis).
    */
    abstract contract ERC20Burnable is Context, ERC20 {
    /**
    * @dev Destroys a `value` amount of tokens from the caller.
    *
    * See {ERC20-_burn}.
    */
    function burn(uint256 value) public virtual {
    _burn(_msgSender(), value);
    }
    /**
    * @dev Destroys a `value` amount of tokens from `account`, deducting from
    * the caller's allowance.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 22 : ERC20Permit.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Permit.sol)
    pragma solidity ^0.8.20;
    import {IERC20Permit} from "./IERC20Permit.sol";
    import {ERC20} from "../ERC20.sol";
    import {ECDSA} from "../../../utils/cryptography/ECDSA.sol";
    import {EIP712} from "../../../utils/cryptography/EIP712.sol";
    import {Nonces} from "../../../utils/Nonces.sol";
    /**
    * @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in
    * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].
    *
    * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by
    * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
    * need to send a transaction, and thus is not required to hold Ether at all.
    */
    abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {
    bytes32 private constant PERMIT_TYPEHASH =
    keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /**
    * @dev Permit deadline has expired.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 8 of 22 : IERC20Metadata.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "../IERC20.sol";
    /**
    * @dev Interface for the optional metadata functions from the ERC-20 standard.
    */
    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);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 9 of 22 : IERC20Permit.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Permit.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in
    * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].
    *
    * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by
    * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
    * need to send a transaction, and thus is not required to hold Ether at all.
    *
    * ==== Security Considerations
    *
    * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
    * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
    * considered as an intention to spend the allowance in any specific way. The second is that because permits have
    * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
    * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
    * generally recommended is:
    *
    * ```solidity
    * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
    * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
    * doThing(..., value);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 10 of 22 : IERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Interface of the ERC-20 standard as defined in the ERC.
    */
    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 value of tokens in existence.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 11 of 22 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
    pragma solidity ^0.8.20;
    /**
    * @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;
    }
    function _contextSuffixLength() internal view virtual returns (uint256) {
    return 0;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 12 of 22 : ECDSA.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
    *
    * These functions can be used to verify that a message was signed by the holder
    * of the private keys of a given address.
    */
    library ECDSA {
    enum RecoverError {
    NoError,
    InvalidSignature,
    InvalidSignatureLength,
    InvalidSignatureS
    }
    /**
    * @dev The signature derives the `address(0)`.
    */
    error ECDSAInvalidSignature();
    /**
    * @dev The signature has an invalid length.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 13 of 22 : EIP712.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/EIP712.sol)
    pragma solidity ^0.8.20;
    import {MessageHashUtils} from "./MessageHashUtils.sol";
    import {ShortStrings, ShortString} from "../ShortStrings.sol";
    import {IERC5267} from "../../interfaces/IERC5267.sol";
    /**
    * @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data.
    *
    * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose
    * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract
    * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to
    * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.
    *
    * This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
    * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
    * ({_hashTypedDataV4}).
    *
    * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
    * the chain id to protect against replay attacks on an eventual fork of the chain.
    *
    * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
    * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 14 of 22 : MessageHashUtils.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MessageHashUtils.sol)
    pragma solidity ^0.8.20;
    import {Strings} from "../Strings.sol";
    /**
    * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.
    *
    * The library provides methods for generating a hash of a message that conforms to the
    * https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]
    * specifications.
    */
    library MessageHashUtils {
    /**
    * @dev Returns the keccak256 digest of an ERC-191 signed data with version
    * `0x45` (`personal_sign` messages).
    *
    * The digest is calculated by prefixing a bytes32 `messageHash` with
    * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the
    * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
    *
    * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with
    * keccak256, although any bytes32 value can be safely used because the final digest will
    * be re-hashed.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 15 of 22 : Math.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)
    pragma solidity ^0.8.20;
    import {Panic} from "../Panic.sol";
    import {SafeCast} from "./SafeCast.sol";
    /**
    * @dev Standard math utilities missing in the Solidity language.
    */
    library Math {
    enum Rounding {
    Floor, // Toward negative infinity
    Ceil, // Toward positive infinity
    Trunc, // Toward zero
    Expand // Away from zero
    }
    /**
    * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).
    */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
    unchecked {
    uint256 c = a + b;
    if (c < a) return (false, 0);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 16 of 22 : SafeCast.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)
    // This file was procedurally generated from scripts/generate/templates/SafeCast.js.
    pragma solidity ^0.8.20;
    /**
    * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow
    * checks.
    *
    * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
    * easily result in undesired exploitation or bugs, since developers usually
    * assume that overflows raise errors. `SafeCast` restores this intuition by
    * reverting the transaction when such an operation overflows.
    *
    * Using this library instead of the unchecked operations eliminates an entire
    * class of bugs, so it's recommended to use it always.
    */
    library SafeCast {
    /**
    * @dev Value doesn't fit in an uint of `bits` size.
    */
    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);
    /**
    * @dev An int value doesn't fit in an uint of `bits` size.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 17 of 22 : SignedMath.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)
    pragma solidity ^0.8.20;
    import {SafeCast} from "./SafeCast.sol";
    /**
    * @dev Standard signed math utilities missing in the Solidity language.
    */
    library SignedMath {
    /**
    * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
    *
    * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
    * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
    * one branch when needed, making this function more expensive.
    */
    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {
    unchecked {
    // branchless ternary works because:
    // b ^ (a ^ b) == a
    // b ^ 0 == b
    return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 18 of 22 : Nonces.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Provides tracking nonces for addresses. Nonces will only increment.
    */
    abstract contract Nonces {
    /**
    * @dev The nonce used for an `account` is not the expected current nonce.
    */
    error InvalidAccountNonce(address account, uint256 currentNonce);
    mapping(address account => uint256) private _nonces;
    /**
    * @dev Returns the next unused nonce for an address.
    */
    function nonces(address owner) public view virtual returns (uint256) {
    return _nonces[owner];
    }
    /**
    * @dev Consumes a nonce.
    *
    * Returns the current value and increments nonce.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 19 of 22 : Panic.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Helper library for emitting standardized panic codes.
    *
    * ```solidity
    * contract Example {
    * using Panic for uint256;
    *
    * // Use any of the declared internal constants
    * function foo() { Panic.GENERIC.panic(); }
    *
    * // Alternatively
    * function foo() { Panic.panic(Panic.GENERIC); }
    * }
    * ```
    *
    * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
    *
    * _Available since v5.1._
    */
    // slither-disable-next-line unused-state
    library Panic {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 20 of 22 : ShortStrings.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/ShortStrings.sol)
    pragma solidity ^0.8.20;
    import {StorageSlot} from "./StorageSlot.sol";
    // | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
    // | length | 0x BB |
    type ShortString is bytes32;
    /**
    * @dev This library provides functions to convert short memory strings
    * into a `ShortString` type that can be used as an immutable variable.
    *
    * Strings of arbitrary length can be optimized using this library if
    * they are short enough (up to 31 bytes) by packing them with their
    * length (1 byte) in a single EVM word (32 bytes). Additionally, a
    * fallback mechanism can be used for every other case.
    *
    * Usage example:
    *
    * ```solidity
    * contract Named {
    * using ShortStrings for *;
    *
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 21 of 22 : StorageSlot.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)
    // This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
    pragma solidity ^0.8.20;
    /**
    * @dev Library for reading and writing primitive types to specific storage slots.
    *
    * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
    * This library helps with reading and writing to such slots without the need for inline assembly.
    *
    * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
    *
    * Example usage to set ERC-1967 implementation slot:
    * ```solidity
    * contract ERC1967 {
    * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
    * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
    *
    * function _getImplementation() internal view returns (address) {
    * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    * }
    *
    * function _setImplementation(address newImplementation) internal {
    * require(newImplementation.code.length > 0);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 22 of 22 : Strings.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/Strings.sol)
    pragma solidity ^0.8.20;
    import {Math} from "./math/Math.sol";
    import {SignedMath} from "./math/SignedMath.sol";
    /**
    * @dev String operations.
    */
    library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;
    /**
    * @dev The `value` string doesn't fit in the specified `length`.
    */
    error StringsInsufficientHexLength(uint256 value, uint256 length);
    /**
    * @dev Converts a `uint256` to its ASCII `string` decimal representation.
    */
    function toString(uint256 value) internal pure returns (string memory) {
    unchecked {
    uint256 length = Math.log10(value) + 1;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    {
    "optimizer": {
    "enabled": true,
    "runs": 1000
    },
    "evmVersion": "paris",
    "outputSelection": {
    "*": {
    "*": [
    "evm.bytecode",
    "evm.deployedBytecode",
    "devdoc",
    "userdoc",
    "metadata",
    "abi"
    ]
    }
    },
    "libraries": {}
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"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":[],"name":"EIP712DomainChanged","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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"value","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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"value","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":"value","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"}]

    61016060405234801561001157600080fd5b506040516119b03803806119b0833981016040819052610030916103f3565b80604051806040016040528060048152602001634c4f564560e01b81525080604051806040016040528060018152602001603160f81b815250604051806040016040528060048152602001634c4f564560e01b815250604051806040016040528060048152602001634c4f564560e01b81525081600390816100b291906104c2565b5060046100bf82826104c2565b506100cf915083905060056101cc565b610120526100de8160066101cc565b61014052815160208084019190912060e052815190820120610100524660a05261016b60e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c052506001600160a01b0381166101a457604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101ad816101ff565b506101c6816d0337988ea64523832a13ae0c0000610251565b50610613565b60006020835110156101e8576101e18361028b565b90506101f9565b816101f384826104c2565b5060ff90505b92915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661027b5760405163ec442f0560e01b81526000600482015260240161019b565b610287600083836102c9565b5050565b600080829050601f815111156102b6578260405163305a27a960e01b815260040161019b9190610580565b80516102c1826105ce565b179392505050565b6001600160a01b0383166102f45780600260008282546102e991906105f2565b909155506103669050565b6001600160a01b038316600090815260208190526040902054818110156103475760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161019b565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610382576002805482900390556103a1565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103e691815260200190565b60405180910390a3505050565b60006020828403121561040557600080fd5b81516001600160a01b038116811461041c57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061044d57607f821691505b60208210810361046d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156104bd57806000526020600020601f840160051c8101602085101561049a5750805b601f840160051c820191505b818110156104ba57600081556001016104a6565b50505b505050565b81516001600160401b038111156104db576104db610423565b6104ef816104e98454610439565b84610473565b6020601f821160018114610523576000831561050b5750848201515b600019600385901b1c1916600184901b1784556104ba565b600084815260208120601f198516915b828110156105535787850151825560209485019460019092019101610533565b50848210156105715786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b602081526000825180602084015260005b818110156105ae5760208186018101516040868401015201610591565b506000604082850101526040601f19601f83011684010191505092915050565b8051602080830151919081101561046d5760001960209190910360031b1b16919050565b808201808211156101f957634e487b7160e01b600052601160045260246000fd5b60805160a05160c05160e05161010051610120516101405161134361066d6000396000610a4701526000610a1a015260006108dc015260006108b40152600061080f015260006108390152600061086301526113436000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c806379cc6790116100d8578063a9059cbb1161008c578063d505accf11610066578063d505accf14610307578063dd62ed3e1461031a578063f2fde38b1461035357600080fd5b8063a9059cbb146102b8578063b09f1266146102cb578063d28d8852146102cb57600080fd5b806384b0196e116100bd57806384b0196e1461027a5780638da5cb5b1461029557806395d89b41146102b057600080fd5b806379cc6790146102545780637ecebe001461026757600080fd5b80633644e5151161012f57806342966c681161011457806342966c681461020e57806370a0823114610223578063715018a61461024c57600080fd5b80633644e515146101f15780633eaaf86b146101f957600080fd5b806318160ddd1161016057806318160ddd146101bd57806323b872dd146101cf578063313ce567146101e257600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610366565b6040516101919190611071565b60405180910390f35b6101ad6101a83660046110a7565b6103f8565b6040519015158152602001610191565b6002545b604051908152602001610191565b6101ad6101dd3660046110d1565b610412565b60405160128152602001610191565b6101c1610436565b6101c16d0337988ea64523832a13ae0c000081565b61022161021c36600461110e565b610445565b005b6101c1610231366004611127565b6001600160a01b031660009081526020819052604090205490565b610221610452565b6102216102623660046110a7565b610466565b6101c1610275366004611127565b61047f565b61028261049d565b6040516101919796959493929190611142565b6008546040516001600160a01b039091168152602001610191565b6101846104ff565b6101ad6102c63660046110a7565b61050e565b6101846040518060400160405280600481526020017f4c4f56450000000000000000000000000000000000000000000000000000000081525081565b6102216103153660046111f6565b61051c565b6101c1610328366004611269565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610221610361366004611127565b61068d565b6060600380546103759061129c565b80601f01602080910402602001604051908101604052809291908181526020018280546103a19061129c565b80156103ee5780601f106103c3576101008083540402835291602001916103ee565b820191906000526020600020905b8154815290600101906020018083116103d157829003601f168201915b5050505050905090565b6000336104068185856106e1565b60019150505b92915050565b6000336104208582856106f3565b61042b85858561078a565b506001949350505050565b6000610440610802565b905090565b61044f338261092d565b50565b61045a610963565b61046460006109a9565b565b6104718233836106f3565b61047b828261092d565b5050565b6001600160a01b03811660009081526007602052604081205461040c565b6000606080600080600060606104b1610a13565b6104b9610a40565b604080516000808252602082019092527f0f000000000000000000000000000000000000000000000000000000000000009b939a50919850469750309650945092509050565b6060600480546103759061129c565b60003361040681858561078a565b8342111561055e576040517f62791302000000000000000000000000000000000000000000000000000000008152600481018590526024015b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105ab8c6001600160a01b0316600090815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061060682610a6d565b9050600061061682878787610ab5565b9050896001600160a01b0316816001600160a01b031614610676576040517f4b800e460000000000000000000000000000000000000000000000000000000081526001600160a01b0380831660048301528b166024820152604401610555565b6106818a8a8a6106e1565b50505050505050505050565b610695610963565b6001600160a01b0381166106d8576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610555565b61044f816109a9565b6106ee8383836001610ae3565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146107845781811015610775576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024810182905260448101839052606401610555565b61078484848484036000610ae3565b50505050565b6001600160a01b0383166107b457604051634b637e8f60e11b815260006004820152602401610555565b6001600160a01b0382166107f7576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401610555565b6106ee838383610bea565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561085b57507f000000000000000000000000000000000000000000000000000000000000000046145b1561088557507f000000000000000000000000000000000000000000000000000000000000000090565b610440604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b03821661095757604051634b637e8f60e11b815260006004820152602401610555565b61047b82600083610bea565b6008546001600160a01b03163314610464576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610555565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60606104407f00000000000000000000000000000000000000000000000000000000000000006005610d2d565b60606104407f00000000000000000000000000000000000000000000000000000000000000006006610d2d565b600061040c610a7a610802565b836040517f19010000000000000000000000000000000000000000000000000000000000008152600281019290925260228201526042902090565b600080600080610ac788888888610dd8565b925092509250610ad78282610ea7565b50909695505050505050565b6001600160a01b038416610b26576040517fe602df0500000000000000000000000000000000000000000000000000000000815260006004820152602401610555565b6001600160a01b038316610b69576040517f94280d6200000000000000000000000000000000000000000000000000000000815260006004820152602401610555565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561078457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bdc91815260200190565b60405180910390a350505050565b6001600160a01b038316610c15578060026000828254610c0a91906112d6565b90915550610ca09050565b6001600160a01b03831660009081526020819052604090205481811015610c81576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101839052606401610555565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610cbc57600280548290039055610cdb565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d2091815260200190565b60405180910390a3505050565b606060ff8314610d4757610d4083610fab565b905061040c565b818054610d539061129c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7f9061129c565b8015610dcc5780601f10610da157610100808354040283529160200191610dcc565b820191906000526020600020905b815481529060010190602001808311610daf57829003601f168201915b5050505050905061040c565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610e135750600091506003905082610e9d565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610e67573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e9357506000925060019150829050610e9d565b9250600091508190505b9450945094915050565b6000826003811115610ebb57610ebb6112f7565b03610ec4575050565b6001826003811115610ed857610ed86112f7565b03610f0f576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002826003811115610f2357610f236112f7565b03610f5d576040517ffce698f700000000000000000000000000000000000000000000000000000000815260048101829052602401610555565b6003826003811115610f7157610f716112f7565b0361047b576040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260048101829052602401610555565b60606000610fb883610fea565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b600060ff8216601f81111561040c576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000815180845260005b8181101561105157602081850181015186830182015201611035565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611084602083018461102b565b9392505050565b80356001600160a01b03811681146110a257600080fd5b919050565b600080604083850312156110ba57600080fd5b6110c38361108b565b946020939093013593505050565b6000806000606084860312156110e657600080fd5b6110ef8461108b565b92506110fd6020850161108b565b929592945050506040919091013590565b60006020828403121561112057600080fd5b5035919050565b60006020828403121561113957600080fd5b6110848261108b565b7fff000000000000000000000000000000000000000000000000000000000000008816815260e06020820152600061117d60e083018961102b565b828103604084015261118f818961102b565b606084018890526001600160a01b038716608085015260a0840186905283810360c08501528451808252602080870193509091019060005b818110156111e55783518352602093840193909201916001016111c7565b50909b9a5050505050505050505050565b600080600080600080600060e0888a03121561121157600080fd5b61121a8861108b565b96506112286020890161108b565b95506040880135945060608801359350608088013560ff8116811461124c57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561127c57600080fd5b6112858361108b565b91506112936020840161108b565b90509250929050565b600181811c908216806112b057607f821691505b6020821081036112d057634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561040c57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea2646970667358221220d6c6361f86ddd801030e3fe34b26330c4548abe05e507f98355fa40725558e2f64736f6c634300081b0033000000000000000000000000a28d31dec6659b8011e15c34cfb40cb72f718ff1

    Deployed Bytecode

    0x608060405234801561001057600080fd5b50600436106101775760003560e01c806379cc6790116100d8578063a9059cbb1161008c578063d505accf11610066578063d505accf14610307578063dd62ed3e1461031a578063f2fde38b1461035357600080fd5b8063a9059cbb146102b8578063b09f1266146102cb578063d28d8852146102cb57600080fd5b806384b0196e116100bd57806384b0196e1461027a5780638da5cb5b1461029557806395d89b41146102b057600080fd5b806379cc6790146102545780637ecebe001461026757600080fd5b80633644e5151161012f57806342966c681161011457806342966c681461020e57806370a0823114610223578063715018a61461024c57600080fd5b80633644e515146101f15780633eaaf86b146101f957600080fd5b806318160ddd1161016057806318160ddd146101bd57806323b872dd146101cf578063313ce567146101e257600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610366565b6040516101919190611071565b60405180910390f35b6101ad6101a83660046110a7565b6103f8565b6040519015158152602001610191565b6002545b604051908152602001610191565b6101ad6101dd3660046110d1565b610412565b60405160128152602001610191565b6101c1610436565b6101c16d0337988ea64523832a13ae0c000081565b61022161021c36600461110e565b610445565b005b6101c1610231366004611127565b6001600160a01b031660009081526020819052604090205490565b610221610452565b6102216102623660046110a7565b610466565b6101c1610275366004611127565b61047f565b61028261049d565b6040516101919796959493929190611142565b6008546040516001600160a01b039091168152602001610191565b6101846104ff565b6101ad6102c63660046110a7565b61050e565b6101846040518060400160405280600481526020017f4c4f56450000000000000000000000000000000000000000000000000000000081525081565b6102216103153660046111f6565b61051c565b6101c1610328366004611269565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610221610361366004611127565b61068d565b6060600380546103759061129c565b80601f01602080910402602001604051908101604052809291908181526020018280546103a19061129c565b80156103ee5780601f106103c3576101008083540402835291602001916103ee565b820191906000526020600020905b8154815290600101906020018083116103d157829003601f168201915b5050505050905090565b6000336104068185856106e1565b60019150505b92915050565b6000336104208582856106f3565b61042b85858561078a565b506001949350505050565b6000610440610802565b905090565b61044f338261092d565b50565b61045a610963565b61046460006109a9565b565b6104718233836106f3565b61047b828261092d565b5050565b6001600160a01b03811660009081526007602052604081205461040c565b6000606080600080600060606104b1610a13565b6104b9610a40565b604080516000808252602082019092527f0f000000000000000000000000000000000000000000000000000000000000009b939a50919850469750309650945092509050565b6060600480546103759061129c565b60003361040681858561078a565b8342111561055e576040517f62791302000000000000000000000000000000000000000000000000000000008152600481018590526024015b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105ab8c6001600160a01b0316600090815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061060682610a6d565b9050600061061682878787610ab5565b9050896001600160a01b0316816001600160a01b031614610676576040517f4b800e460000000000000000000000000000000000000000000000000000000081526001600160a01b0380831660048301528b166024820152604401610555565b6106818a8a8a6106e1565b50505050505050505050565b610695610963565b6001600160a01b0381166106d8576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610555565b61044f816109a9565b6106ee8383836001610ae3565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146107845781811015610775576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024810182905260448101839052606401610555565b61078484848484036000610ae3565b50505050565b6001600160a01b0383166107b457604051634b637e8f60e11b815260006004820152602401610555565b6001600160a01b0382166107f7576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401610555565b6106ee838383610bea565b6000306001600160a01b037f00000000000000000000000066f69f79de1ac9c27fe67b8009c2366617c101741614801561085b57507f000000000000000000000000000000000000000000000000000000000000009246145b1561088557507fb91c3ae2308d5af725a0c1d7b0ea96f7b044b2212eeac61eb45d93c463a8827190565b610440604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f36a3d4f69a1bcc6f8a31e9ff9845d9e8c25f8bbb01860c49113c39ddd021a3fb918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b03821661095757604051634b637e8f60e11b815260006004820152602401610555565b61047b82600083610bea565b6008546001600160a01b03163314610464576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610555565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60606104407f4c4f5645000000000000000000000000000000000000000000000000000000046005610d2d565b60606104407f31000000000000000000000000000000000000000000000000000000000000016006610d2d565b600061040c610a7a610802565b836040517f19010000000000000000000000000000000000000000000000000000000000008152600281019290925260228201526042902090565b600080600080610ac788888888610dd8565b925092509250610ad78282610ea7565b50909695505050505050565b6001600160a01b038416610b26576040517fe602df0500000000000000000000000000000000000000000000000000000000815260006004820152602401610555565b6001600160a01b038316610b69576040517f94280d6200000000000000000000000000000000000000000000000000000000815260006004820152602401610555565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561078457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bdc91815260200190565b60405180910390a350505050565b6001600160a01b038316610c15578060026000828254610c0a91906112d6565b90915550610ca09050565b6001600160a01b03831660009081526020819052604090205481811015610c81576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101839052606401610555565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610cbc57600280548290039055610cdb565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d2091815260200190565b60405180910390a3505050565b606060ff8314610d4757610d4083610fab565b905061040c565b818054610d539061129c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7f9061129c565b8015610dcc5780601f10610da157610100808354040283529160200191610dcc565b820191906000526020600020905b815481529060010190602001808311610daf57829003601f168201915b5050505050905061040c565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610e135750600091506003905082610e9d565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610e67573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e9357506000925060019150829050610e9d565b9250600091508190505b9450945094915050565b6000826003811115610ebb57610ebb6112f7565b03610ec4575050565b6001826003811115610ed857610ed86112f7565b03610f0f576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002826003811115610f2357610f236112f7565b03610f5d576040517ffce698f700000000000000000000000000000000000000000000000000000000815260048101829052602401610555565b6003826003811115610f7157610f716112f7565b0361047b576040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260048101829052602401610555565b60606000610fb883610fea565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b600060ff8216601f81111561040c576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000815180845260005b8181101561105157602081850181015186830182015201611035565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611084602083018461102b565b9392505050565b80356001600160a01b03811681146110a257600080fd5b919050565b600080604083850312156110ba57600080fd5b6110c38361108b565b946020939093013593505050565b6000806000606084860312156110e657600080fd5b6110ef8461108b565b92506110fd6020850161108b565b929592945050506040919091013590565b60006020828403121561112057600080fd5b5035919050565b60006020828403121561113957600080fd5b6110848261108b565b7fff000000000000000000000000000000000000000000000000000000000000008816815260e06020820152600061117d60e083018961102b565b828103604084015261118f818961102b565b606084018890526001600160a01b038716608085015260a0840186905283810360c08501528451808252602080870193509091019060005b818110156111e55783518352602093840193909201916001016111c7565b50909b9a5050505050505050505050565b600080600080600080600060e0888a03121561121157600080fd5b61121a8861108b565b96506112286020890161108b565b95506040880135945060608801359350608088013560ff8116811461124c57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561127c57600080fd5b6112858361108b565b91506112936020840161108b565b90509250929050565b600181811c908216806112b057607f821691505b6020821081036112d057634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561040c57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea2646970667358221220d6c6361f86ddd801030e3fe34b26330c4548abe05e507f98355fa40725558e2f64736f6c634300081b0033

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

    000000000000000000000000a28d31dec6659b8011e15c34cfb40cb72f718ff1

    -----Decoded View---------------
    Arg [0] : _owner (address): 0xa28d31DEc6659B8011e15C34Cfb40CB72f718ff1

    -----Encoded View---------------
    1 Constructor Arguments found :
    Arg [0] : 000000000000000000000000a28d31dec6659b8011e15c34cfb40cb72f718ff1


    Block Age Transaction Gas Used Reward
    view all blocks ##produced##

    Block Age Uncle Number Difficulty Gas Used Reward
    View All Uncles
    Loading...
    Loading

    OVERVIEW

    A memecoin started with no liquidity in response to toxicity. Now an auction house focusing on charity and buidling up any artists

    Loading...
    Loading

    Validator Index Block Age Amount
    View All Withdrawals

    Transaction Hash Block Age Value Eth2 PubKey Valid
    View All Deposits
    [ Download: CSV Export  ]

    A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.