More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 25 from a total of 12,225 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 8603243 | 1 min ago | IN | 0 ETH | 0.00000021 | ||||
Approve | 8299545 | 7 days ago | IN | 0 ETH | 0.00000066 | ||||
Approve | 8273789 | 7 days ago | IN | 0 ETH | 0.00000015 | ||||
Approve | 8083308 | 12 days ago | IN | 0 ETH | 0.00000038 | ||||
Approve | 7957433 | 14 days ago | IN | 0 ETH | 0 | ||||
Approve | 7932320 | 15 days ago | IN | 0 ETH | 0 | ||||
Approve | 7763324 | 19 days ago | IN | 0 ETH | 0.00000129 | ||||
Approve | 7763259 | 19 days ago | IN | 0 ETH | 0.00000212 | ||||
Approve | 7701597 | 20 days ago | IN | 0 ETH | 0.0000004 | ||||
Transfer | 7657532 | 21 days ago | IN | 0 ETH | 0.00000055 | ||||
Approve | 7585497 | 23 days ago | IN | 0 ETH | 0.00000012 | ||||
Approve | 7585495 | 23 days ago | IN | 0 ETH | 0.00000012 | ||||
Approve | 7563867 | 24 days ago | IN | 0 ETH | 0.00000026 | ||||
Approve | 7563864 | 24 days ago | IN | 0 ETH | 0.00000026 | ||||
Approve | 7563862 | 24 days ago | IN | 0 ETH | 0.00000026 | ||||
Approve | 7563859 | 24 days ago | IN | 0 ETH | 0.00000026 | ||||
Approve | 7563857 | 24 days ago | IN | 0 ETH | 0.00000026 | ||||
Approve | 7459479 | 26 days ago | IN | 0 ETH | 0.00000006 | ||||
Transfer | 7422074 | 27 days ago | IN | 0 ETH | 0.00000008 | ||||
Approve | 7421155 | 27 days ago | IN | 0 ETH | 0.00000009 | ||||
Transfer | 7416518 | 27 days ago | IN | 0 ETH | 0.00000021 | ||||
Approve | 7407056 | 27 days ago | IN | 0 ETH | 0.00000006 | ||||
Transfer | 7379947 | 28 days ago | IN | 0 ETH | 0.00000032 | ||||
Approve | 7364174 | 28 days ago | IN | 0 ETH | 0.00000005 | ||||
Approve | 7257395 | 31 days ago | IN | 0 ETH | 0.00000005 |
Loading...
Loading
Contract Name:
SSS
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {ERC20} from "./ERC20.sol"; import {IUniswapV2Router02} from "./interfaces/IUniswapV2Router02.sol"; import {IBlast, IBlastPoints} from "./interfaces/IBlast.sol"; interface IUniswapFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract SSS is Ownable, ERC20 { uint256 constant TOTAL_SUPPLY = 555_555_555_555_555 * 10**18; // 555.555 trillions uint256 constant DEX_SUPPLY = TOTAL_SUPPLY*80/100; // 80% uint256 constant ECOSYSTEM_SUPPLY = TOTAL_SUPPLY*5/100; // 5% uint256 constant BOOSTER_SUPPLY = TOTAL_SUPPLY*5/100; // 5% uint256 constant AIRDROP_SUPPLY = TOTAL_SUPPLY*5/100; // 5% uint256 constant DEV_SUPPLY = TOTAL_SUPPLY*5/100; // 5% address public communityAddress; address public devTaxReceiverAddress; address public devTokenReceiverAddress; uint256 public buyTaxPercent = 2_00; // 2% uint256 public sellTaxPercent = 2_00; // 2% uint256 public devPercent = 20_00; // 0.4% = 20% of 2% uint256 public communityPercent = 80_00; // 1.6% = 80% of 2% uint256 public devTaxTokenAmountAvailable; uint256 public communityTaxTokenAmountAvailable; uint256 public devTokenAmountClaimable; // unlock from DEV_SUPPLY uint256 public devTokenAmountRemain = DEV_SUPPLY; // unlock from DEV_SUPPLY uint256 public tradeVolume = 0; // limit config bool public limitEnabled = true; uint256 public maxAmountPerTx = TOTAL_SUPPLY * 5/100_00; // 0.05% of total supply uint256 public maxAmountPerAccount = TOTAL_SUPPLY * 5/100_00; // 0.05% of total supply address public immutable uniswapV2Pair; IUniswapV2Router02 public immutable uniswapV2Router; IBlast public immutable blastGasModeContract; uint256 constant LIMIT_ROUND_DEC = 10**12; // 50.00000000001 should be treated as 50 uint256 public immutable ANTI_BOT_DETECT_DURATION; uint256 public immutable ANTI_BOT_LOCK_DURATION; uint256 public startPoolTime; mapping(address => uint256) public botBuyTimes; mapping(address => bool) public liquidityPools; mapping(address => bool) public unlimiteds; mapping(address => bool) public excludeFromTaxes; event SetLiquidityPool(address pool, bool isPool); event SetUnlimited(address addr, bool isUnlimited); event SetExcludeFromTax(address account, bool exclude); event ClaimGasFee(address recipient, uint256 amount); constructor( address community, address devTaxReceiver, address devTokenReceiver, address routerAddress, address blastGasModeContractAddress, address blastPointAddress, address blastPointOperator, uint256 antiBotDetectDuration, uint256 antiBotLockDuration ) ERC20("SSS", "SSS") Ownable(msg.sender) { communityAddress = community; devTaxReceiverAddress = devTaxReceiver; devTokenReceiverAddress = devTokenReceiver; ANTI_BOT_DETECT_DURATION = antiBotDetectDuration; ANTI_BOT_LOCK_DURATION = antiBotLockDuration; _setExcludeFromTax(msg.sender, true); _setExcludeFromTax(address(this), true); _setExcludeFromTax(community, true); uniswapV2Router = IUniswapV2Router02(routerAddress); _mint(address(this), DEV_SUPPLY + DEX_SUPPLY); _mint(msg.sender, ECOSYSTEM_SUPPLY + BOOSTER_SUPPLY + AIRDROP_SUPPLY); // manually distribute to other addresses // create pair in advance without LP IUniswapFactory uniswapV2Factory = IUniswapFactory(uniswapV2Router.factory()); uniswapV2Pair = uniswapV2Factory.createPair(address(this), uniswapV2Router.WETH()); liquidityPools[uniswapV2Pair] = true; _setUnlimited(uniswapV2Pair, true); _setUnlimited(routerAddress, true); _setUnlimited(address(this),true); _setUnlimited(community, true); _setUnlimited(devTaxReceiver, true); _setUnlimited(devTokenReceiver, true); blastGasModeContract = IBlast(blastGasModeContractAddress); blastGasModeContract.configureClaimableGas(); IBlastPoints(blastPointAddress).configurePointsOperator(blastPointOperator); } function _update(address from, address to, uint256 amount) internal override virtual { // don't check if it is minting or burning if (from == address(0) || to == address(0) || to == address(0xdead)) { super._update(from, to, amount); return; } _botCheck(from, to); uint256 fromBalanceBeforeTransfer = _preCheck(from, to, amount); uint256 amountAfterTax = amount - _taxApply(from, to, amount); uint256 toBalance = _postCheck(from, to, amountAfterTax); _balances[from] = fromBalanceBeforeTransfer - amount; _balances[to] = toBalance; _unlockTokenForDev(from, to, amount); emit Transfer(from, to, amountAfterTax); } // Buy too fast after init pool is bot function _botCheck(address from, address to) internal { uint256 initPoolTime = startPoolTime; if (initPoolTime == 0) return; // buy in 30s after init pool is bot if (block.timestamp - initPoolTime < ANTI_BOT_DETECT_DURATION && isLiquidityPool(from) ) { botBuyTimes[to] = block.timestamp; return; } // Lock bot if (botBuyTimes[from] > 0 && botBuyTimes[from] + ANTI_BOT_LOCK_DURATION > block.timestamp ) { revert ("Bot locked"); } } function _preCheck(address from, address to, uint256 amount) internal view returns (uint256 fromBalance){ fromBalance = _balances[from]; // check sender balance if(fromBalance < amount) revert ERC20InsufficientBalance(from, fromBalance, amount); // check if buy or sell too much per tx if(limitIsInEffect() && maxAmountPerTx > 0 && ( (isLiquidityPool(from) && !isUnlimited(to)) || // buy (isLiquidityPool(to) && !isUnlimited(from)) // sell ) ) { uint256 limit = maxAmountPerTx + LIMIT_ROUND_DEC; require(amount < limit, "Max token per tx") ; } } function _postCheck(address from, address to, uint256 amount) internal view returns (uint256 toBalance){ // check if buyer have too much token toBalance = _balances[to] + amount; if(limitIsInEffect() && maxAmountPerAccount > 0 && ((isLiquidityPool(from) && !isUnlimited(to))) // buy ) { uint256 limit = maxAmountPerAccount + LIMIT_ROUND_DEC; require(toBalance < limit, "Max token per account") ; } } function limitIsInEffect() internal view returns (bool) { return limitEnabled; } function isUnlimited(address addr) internal view returns (bool) { return unlimiteds[addr]; } function isLiquidityPool(address addr) internal view returns (bool) { return liquidityPools[addr]; } function _addETHLiquidity(uint256 ethAmount, uint256 tokenAmount) internal { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // accept any amount of ETH 0, // accept any amount of token address(this), block.timestamp ); } function _taxApply(address from, address to, uint256 amount) internal returns (uint256 taxAmount){ // only apply tax if buy and sell uint256 taxPercent = 0; if(isLiquidityPool(from)) { taxPercent = buyTaxPercent; } else if(isLiquidityPool(to)) { taxPercent = sellTaxPercent; } if ( taxPercent == 0 || excludeFromTaxes[from] || excludeFromTaxes[to] ) { return 0; } taxAmount = amount * taxPercent / 100_00; if(taxAmount > 0) { _recordTax(taxAmount); _balances[address(this)] += taxAmount; emit Transfer(from, address(this), taxAmount); } return taxAmount; } function _recordTax(uint256 taxAmount) internal { uint256 communityTaxAmount = taxAmount * communityPercent / 100_00; uint256 devAmount = taxAmount - communityTaxAmount; devTaxTokenAmountAvailable += devAmount; communityTaxTokenAmountAvailable += communityTaxAmount; } function _unlockTokenForDev(address from, address to, uint256 amount) internal { if(!isLiquidityPool(from) && !isLiquidityPool(to)) { return; } if(startPoolTime == 0) { return; } tradeVolume += amount; uint256 devRemainToken = devTokenAmountRemain; if(devRemainToken == 0) { return; } // Target volume is 160 times of total supply uint256 targetVolume = 160*TOTAL_SUPPLY; uint256 unlockAmount = amount * DEV_SUPPLY / targetVolume; if(unlockAmount > devRemainToken) { unlockAmount = devRemainToken; } devTokenAmountClaimable += unlockAmount; devTokenAmountRemain = devRemainToken - unlockAmount; } function initPool(uint256 ethAmount, uint256 tokenAmount) onlyOwner external { require(startPoolTime == 0, "Pool already initialized"); _addETHLiquidity(ethAmount, tokenAmount); startPoolTime = block.timestamp; } function addLiquidity(uint256 ethAmount, uint256 tokenAmount) onlyOwner external { require(startPoolTime > 0, "Pool not initialized"); _addETHLiquidity(ethAmount, tokenAmount); } function claimCommunityTax() external returns (uint256 amount) { amount = communityTaxTokenAmountAvailable; require(amount > 0, "No community tax available"); require(msg.sender == communityAddress, "Invalid sender"); _transfer(address(this), msg.sender, amount); communityTaxTokenAmountAvailable = 0; } // Everyone can call this function to claim dev tax function claimDevTax() external returns (uint256 amount) { amount = devTaxTokenAmountAvailable; require(amount > 0, "No dev tax available"); _transfer(address(this), devTaxReceiverAddress, amount); devTaxTokenAmountAvailable = 0; } function claimDevToken() external returns (uint256 amount) { amount = devTokenAmountClaimable; require(amount > 0, "No dev token available"); _transfer(address(this), devTokenReceiverAddress, amount); devTokenAmountClaimable = 0; } function setExcludeFromTax(address account, bool exclude) external onlyOwner { _setExcludeFromTax(account, exclude); } function _setExcludeFromTax(address account, bool exclude) internal { excludeFromTaxes[account] = exclude; } function setCommunityAddress(address community) external onlyOwner { _setExcludeFromTax(communityAddress, false); _setUnlimited(communityAddress, false); communityAddress = community; _setExcludeFromTax(community, true); _setUnlimited(community, true); } function setDevAddress(address devTaxReceiver, address devTokenReceiver) external onlyOwner { _setExcludeFromTax(devTaxReceiverAddress, false); _setUnlimited(devTaxReceiverAddress, false); _setExcludeFromTax(devTokenReceiverAddress, false); _setUnlimited(devTokenReceiverAddress, false); devTaxReceiverAddress = devTaxReceiver; devTokenReceiverAddress = devTokenReceiver; _setExcludeFromTax(devTaxReceiver, true); _setExcludeFromTax(devTokenReceiver, true); _setUnlimited(devTaxReceiver, true); _setUnlimited(devTokenReceiver, true); } function setLiquidityPool(address pool, bool isPool) external onlyOwner { liquidityPools[pool] = isPool; emit SetLiquidityPool(pool, isPool); } function setUnlimited(address addr, bool _isUnlimited) external onlyOwner { _setUnlimited(addr, _isUnlimited); } function _setUnlimited(address addr, bool _isUnlimited) internal { unlimiteds[addr] = _isUnlimited; emit SetUnlimited(addr, _isUnlimited); } function changeTaxPercent(uint256 buyTax, uint256 sellTax, uint256 dev, uint256 community) external onlyOwner { if(buyTax > 5_00 || sellTax > 5_00) revert ("Too high tax"); require(dev + community == 100_00, "Invalid percent"); buyTaxPercent = buyTax; sellTaxPercent = sellTax; devPercent = dev; communityPercent = community; } function setLimitConfig(uint256 _maxAmountPerTx, uint256 _maxAmountPerAccount) external onlyOwner { maxAmountPerTx = _maxAmountPerTx; maxAmountPerAccount = _maxAmountPerAccount; } function setLimitEnabled(bool enabled) external onlyOwner { limitEnabled = enabled; } function rescueToken(address tokenAddress, address to, uint256 amount) external onlyOwner { if(tokenAddress == address(this)) { require(startPoolTime + 365 days < block.timestamp, "Cannot rescue this token"); } SafeERC20.safeTransfer(ERC20(tokenAddress), to, amount); } function rescueETH(uint256 amount) external onlyOwner returns (bool success) { return payable(msg.sender).send(amount); } function claimGasFee(address recipient) external onlyOwner { uint256 amount = blastGasModeContract.claimMaxGas(address(this), recipient); emit ClaimGasFee(recipient, amount); } function configBlastPointsOperator(address blastPointAddress, address operator) external onlyOwner { IBlastPoints(blastPointAddress).configurePointsOperator(operator); } receive() external payable {} }
// 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); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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); }
// 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 ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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 ERC20 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 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); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError, bytes32) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS, s); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * @custom:oz-upgrades-unsafe-allow state-variable-immutable */ abstract contract EIP712 is IERC5267 { using ShortStrings for *; bytes32 private constant TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _cachedDomainSeparator; uint256 private immutable _cachedChainId; address private immutable _cachedThis; bytes32 private immutable _hashedName; bytes32 private immutable _hashedVersion; ShortString private immutable _name; ShortString private immutable _version; string private _nameFallback; string private _versionFallback; /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { _name = name.toShortStringWithFallback(_nameFallback); _version = version.toShortStringWithFallback(_versionFallback); _hashedName = keccak256(bytes(name)); _hashedVersion = keccak256(bytes(version)); _cachedChainId = block.chainid; _cachedDomainSeparator = _buildDomainSeparator(); _cachedThis = address(this); } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _cachedThis && block.chainid == _cachedChainId) { return _cachedDomainSeparator; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {IERC-5267}. */ function eip712Domain() public view virtual returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _EIP712Name(), _EIP712Version(), block.chainid, address(this), bytes32(0), new uint256[](0) ); } /** * @dev The name parameter for the EIP712 domain. * * NOTE: By default this function reads _name which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). */ // solhint-disable-next-line func-name-mixedcase function _EIP712Name() internal view returns (string memory) { return _name.toStringWithFallback(_nameFallback); } /** * @dev The version parameter for the EIP712 domain. * * NOTE: By default this function reads _version which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). */ // solhint-disable-next-line func-name-mixedcase function _EIP712Version() internal view returns (string memory) { return _version.toStringWithFallback(_versionFallback); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] * specifications. */ library MessageHashUtils { /** * @dev Returns the keccak256 digest of an EIP-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. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20) } } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing an arbitrary `message` with * `"\x19Ethereum Signed Message:\n" + len(message)` 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. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x00` (data with intended validator). * * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended * `validator` address. Then hashing the result. * * See {ECDSA-recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } /** * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`). * * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with * `\x19\x01` and hashing the result. It corresponds to the hash signed by the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712. * * See {ECDSA-recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); 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 overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// 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. */ function _useNonce(address owner) internal virtual returns (uint256) { // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be // decremented or reset. This guarantees that the nonce never overflows. unchecked { // It is important to do x++ and not ++x here. return _nonces[owner]++; } } /** * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`. */ function _useCheckedNonce(address owner, uint256 nonce) internal virtual { uint256 current = _useNonce(owner); if (nonce != current) { revert InvalidAccountNonce(owner, current); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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 *; * * ShortString private immutable _name; * string private _nameFallback; * * constructor(string memory contractName) { * _name = contractName.toShortStringWithFallback(_nameFallback); * } * * function name() external view returns (string memory) { * return _name.toStringWithFallback(_nameFallback); * } * } * ``` */ library ShortStrings { // Used as an identifier for strings longer than 31 bytes. bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF; error StringTooLong(string str); error InvalidShortString(); /** * @dev Encode a string of at most 31 chars into a `ShortString`. * * This will trigger a `StringTooLong` error is the input string is too long. */ function toShortString(string memory str) internal pure returns (ShortString) { bytes memory bstr = bytes(str); if (bstr.length > 31) { revert StringTooLong(str); } return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length)); } /** * @dev Decode a `ShortString` back to a "normal" string. */ function toString(ShortString sstr) internal pure returns (string memory) { uint256 len = byteLength(sstr); // using `new string(len)` would work locally but is not memory safe. string memory str = new string(32); /// @solidity memory-safe-assembly assembly { mstore(str, len) mstore(add(str, 0x20), sstr) } return str; } /** * @dev Return the length of a `ShortString`. */ function byteLength(ShortString sstr) internal pure returns (uint256) { uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF; if (result > 31) { revert InvalidShortString(); } return result; } /** * @dev Encode a string into a `ShortString`, or write it to storage if it is too long. */ function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) { if (bytes(value).length < 32) { return toShortString(value); } else { StorageSlot.getStringSlot(store).value = value; return ShortString.wrap(FALLBACK_SENTINEL); } } /** * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}. */ function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return toString(value); } else { return store; } } /** * @dev Return the length of a string that was encoded to `ShortString` or written to storage using * {setWithFallback}. * * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of * actual characters as the UTF-8 encoding of a single character can span over multiple bytes. */ function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return byteLength(value); } else { return bytes(store).length; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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 ERC1967 implementation slot: * ```solidity * contract ERC1967 { * 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); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // SSS: combine ERC20, ERC20Burnable and ERC20Permit // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import {Context} from "@openzeppelin/contracts/utils/Context.sol"; import {IERC20Errors} from "@openzeppelin/contracts/interfaces/draft-IERC6093.sol"; import {IERC20Permit} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol"; import {ECDSA} from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import {EIP712} from "@openzeppelin/contracts/utils/cryptography/EIP712.sol"; import {Nonces} from "@openzeppelin/contracts/utils/Nonces.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 ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors, IERC20Permit, EIP712, Nonces { mapping(address account => uint256) internal _balances; // changed from private to internal mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) EIP712(name_, "1"){ _name = name_; _symbol = symbol_; } /** * @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}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual 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); } /** * @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: * ``` * 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 { 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); } } /** * @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); } } } // ===== Permit ===== bytes32 private constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev Permit deadline has expired. */ error ERC2612ExpiredSignature(uint256 deadline); /** * @dev Mismatched signature. */ error ERC2612InvalidSigner(address signer, address owner); /** * @inheritdoc IERC20Permit */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { if (block.timestamp > deadline) { revert ERC2612ExpiredSignature(deadline); } bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); if (signer != owner) { revert ERC2612InvalidSigner(signer, owner); } _approve(owner, spender, value); } /** * @inheritdoc IERC20Permit */ function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) { return super.nonces(owner); } /** * @inheritdoc IERC20Permit */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view virtual returns (bytes32) { return _domainSeparatorV4(); } // ===== Burnable ===== /** * @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. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } }
interface IBlast { // Note: the full interface for IBlast can be found below function configureClaimableGas() external; function claimAllGas(address contractAddress, address recipient) external returns (uint256); function claimMaxGas(address contractAddress, address recipient) external returns (uint256); } interface IBlastPoints { function configurePointsOperator(address operator) external; }
pragma solidity ^0.8.0; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"community","type":"address"},{"internalType":"address","name":"devTaxReceiver","type":"address"},{"internalType":"address","name":"devTokenReceiver","type":"address"},{"internalType":"address","name":"routerAddress","type":"address"},{"internalType":"address","name":"blastGasModeContractAddress","type":"address"},{"internalType":"address","name":"blastPointAddress","type":"address"},{"internalType":"address","name":"blastPointOperator","type":"address"},{"internalType":"uint256","name":"antiBotDetectDuration","type":"uint256"},{"internalType":"uint256","name":"antiBotLockDuration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"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":[],"name":"FailedInnerCall","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":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","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":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClaimGasFee","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"exclude","type":"bool"}],"name":"SetExcludeFromTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"bool","name":"isPool","type":"bool"}],"name":"SetLiquidityPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"bool","name":"isUnlimited","type":"bool"}],"name":"SetUnlimited","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":"ANTI_BOT_DETECT_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ANTI_BOT_LOCK_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[],"name":"blastGasModeContract","outputs":[{"internalType":"contract IBlast","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"botBuyTimes","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":"buyTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyTax","type":"uint256"},{"internalType":"uint256","name":"sellTax","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"community","type":"uint256"}],"name":"changeTaxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimCommunityTax","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimDevTax","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimDevToken","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"claimGasFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityTaxTokenAmountAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"blastPointAddress","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"configBlastPointsOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTaxReceiverAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTaxTokenAmountAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTokenAmountClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTokenAmountRemain","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTokenReceiverAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"excludeFromTaxes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"initPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityPools","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerTx","outputs":[{"internalType":"uint256","name":"","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueETH","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"community","type":"address"}],"name":"setCommunityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"devTaxReceiver","type":"address"},{"internalType":"address","name":"devTokenReceiver","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"setExcludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAmountPerTx","type":"uint256"},{"internalType":"uint256","name":"_maxAmountPerAccount","type":"uint256"}],"name":"setLimitConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setLimitEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"bool","name":"isPool","type":"bool"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"_isUnlimited","type":"bool"}],"name":"setUnlimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPoolTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeVolume","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unlimiteds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
61020060405260c8600c819055600d556107d0600e55611f40600f556064620000386d1b6418d0c06e3443e9854dac0000600562001047565b62000044919062001061565b60135560006014556015805460ff19166001179055612710620000776d1b6418d0c06e3443e9854dac0000600562001047565b62000083919062001061565b601655612710620000a46d1b6418d0c06e3443e9854dac0000600562001047565b620000b0919062001061565b601755348015620000c057600080fd5b506040516200405e3803806200405e833981016040819052620000e391620010a1565b60408051808201825260038082526253535360e81b60208084018290528451808601865292835282810191909152835180850190945260018452603160f81b908401529091829033806200015257604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6200015d8162000654565b506200016b826001620006a4565b610120526200017c816002620006a4565b61014052815160208084019190912060e052815190820120610100524660a0526200020a60e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c0526007620002218382620011ee565b506008620002308282620011ee565b5050600980546001600160a01b03199081166001600160a01b038d8116918217909355600a805483168d8516179055600b80549092168b8416179091556101c08590526101e0849052336000908152601c6020526040808220805460ff1990811660019081179092553080855283852080548316841790559484529190922080549091169091179055908816610180526200032a91506064620002e36d1b6418d0c06e3443e9854dac0000605062001047565b620002ef919062001061565b60646200030c6d1b6418d0c06e3443e9854dac0000600562001047565b62000318919062001061565b620003249190620012ba565b620006dd565b620003b63360646200034c6d1b6418d0c06e3443e9854dac0000600562001047565b62000358919062001061565b6064620003756d1b6418d0c06e3443e9854dac0000600562001047565b62000381919062001061565b60646200039e6d1b6418d0c06e3443e9854dac0000600562001047565b620003aa919062001061565b620003189190620012ba565b6000610180516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004209190620012d0565b9050806001600160a01b031663c9c6539630610180516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000474573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200049a9190620012d0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620004e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200050e9190620012d0565b6001600160a01b03166101608190526000818152601a60205260409020805460ff191660019081179091556200054591906200071b565b620005528760016200071b565b6200055f3060016200071b565b6200056c8a60016200071b565b620005798960016200071b565b620005868860016200071b565b6001600160a01b0386166101a081905260408051634e606c4760e01b81529051634e606c479160048082019260009290919082900301818387803b158015620005ce57600080fd5b505af1158015620005e3573d6000803e3d6000fd5b50506040516336b91f2b60e01b81526001600160a01b038781166004830152881692506336b91f2b9150602401600060405180830381600087803b1580156200062b57600080fd5b505af115801562000640573d6000803e3d6000fd5b505050505050505050505050505062001379565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602083511015620006c457620006bc836200077e565b9050620006d7565b81620006d18482620011ee565b5060ff90505b92915050565b6001600160a01b038216620007095760405163ec442f0560e01b81526000600482015260240162000149565b6200071760008383620007c1565b5050565b6001600160a01b0382166000818152601b6020908152604091829020805460ff19168515159081179091558251938452908301527f297c7a63a712ea88be3a55ff4407c6c79b698d21c826c441b49b2b5ad6b6478b910160405180910390a15050565b600080829050601f81511115620007ac578260405163305a27a960e01b8152600401620001499190620012ee565b8051620007b9826200133e565b179392505050565b6001600160a01b0383161580620007df57506001600160a01b038216155b80620007f557506001600160a01b03821661dead145b156200080d5762000808838383620008dd565b505050565b620008198383620009ff565b60006200082884848462000af6565b905060006200083985858562000c5f565b62000845908462001363565b905060006200085686868462000d9b565b905062000864848462001363565b6001600160a01b03808816600090815260046020526040808220939093559087168152208190556200089886868662000e99565b846001600160a01b0316866001600160a01b03166000805160206200403e83398151915284604051620008cd91815260200190565b60405180910390a3505050505050565b6001600160a01b0383166200090c578060066000828254620009009190620012ba565b90915550620009809050565b6001600160a01b03831660009081526004602052604090205481811015620009615760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000149565b6001600160a01b03841660009081526004602052604090209082900390555b6001600160a01b0382166200099e57600680548290039055620009bd565b6001600160a01b03821660009081526004602052604090208054820190555b816001600160a01b0316836001600160a01b03166000805160206200403e83398151915283604051620009f291815260200190565b60405180910390a3505050565b601854600081900362000a1157505050565b6101c05162000a21824262001363565b10801562000a4757506001600160a01b0383166000908152601a602052604090205460ff165b1562000a6b57506001600160a01b0316600090815260196020526040902042905550565b6001600160a01b0383166000908152601960205260409020541580159062000aba57506101e0516001600160a01b038416600090815260196020526040902054429162000ab891620012ba565b115b15620008085760405162461bcd60e51b815260206004820152600a602482015269109bdd081b1bd8dad95960b21b604482015260640162000149565b6001600160a01b0383166000908152600460205260409020548181101562000b4b5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000149565b60155460ff16801562000b6057506000601654115b801562000bf357506001600160a01b0384166000908152601a602052604090205460ff16801562000baa57506001600160a01b0383166000908152601b602052604090205460ff16155b8062000bf357506001600160a01b0383166000908152601a602052604090205460ff16801562000bf357506001600160a01b0384166000908152601b602052604090205460ff16155b1562000c5857600064e8d4a5100060165462000c109190620012ba565b905080831062000c565760405162461bcd60e51b815260206004820152601060248201526f09ac2f040e8ded6cadc40e0cae440e8f60831b604482015260640162000149565b505b9392505050565b6001600160a01b0383166000908152601a6020526040812054819060ff161562000c8d5750600c5462000cb4565b6001600160a01b0384166000908152601a602052604090205460ff161562000cb45750600d545b80158062000cda57506001600160a01b0385166000908152601c602052604090205460ff165b8062000cfe57506001600160a01b0384166000908152601c602052604090205460ff165b1562000d0f57600091505062000c58565b61271062000d1e828562001047565b62000d2a919062001061565b9150811562000c565762000d3e8262000fc5565b306000908152600460205260408120805484929062000d5f908490620012ba565b909155505060405182815230906001600160a01b038716906000805160206200403e8339815191529060200160405180910390a3509392505050565b6001600160a01b03821660009081526004602052604081205462000dc1908390620012ba565b905062000dd060155460ff1690565b801562000ddf57506000601754115b801562000e2957506001600160a01b0384166000908152601a602052604090205460ff16801562000e2957506001600160a01b0383166000908152601b602052604090205460ff16155b1562000c5857600064e8d4a5100060175462000e469190620012ba565b905080821062000c565760405162461bcd60e51b815260206004820152601560248201527f4d617820746f6b656e20706572206163636f756e740000000000000000000000604482015260640162000149565b6001600160a01b0383166000908152601a602052604090205460ff1615801562000edc57506001600160a01b0382166000908152601a602052604090205460ff16155b1562000ee757505050565b60185460000362000ef757505050565b806014600082825462000f0b9190620012ba565b9091555050601354600081900362000f235750505050565b600062000f406d1b6418d0c06e3443e9854dac000060a062001047565b9050600081606462000f626d1b6418d0c06e3443e9854dac0000600562001047565b62000f6e919062001061565b62000f7a908662001047565b62000f86919062001061565b90508281111562000f945750815b806012600082825462000fa89190620012ba565b9091555062000fba9050818462001363565b601355505050505050565b6000612710600f548362000fda919062001047565b62000fe6919062001061565b9050600062000ff6828462001363565b905080601060008282546200100c9190620012ba565b925050819055508160116000828254620010279190620012ba565b9091555050505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006d757620006d762001031565b6000826200107f57634e487b7160e01b600052601260045260246000fd5b500490565b80516001600160a01b03811681146200109c57600080fd5b919050565b60008060008060008060008060006101208a8c031215620010c157600080fd5b620010cc8a62001084565b9850620010dc60208b0162001084565b9750620010ec60408b0162001084565b9650620010fc60608b0162001084565b95506200110c60808b0162001084565b94506200111c60a08b0162001084565b93506200112c60c08b0162001084565b925060e08a015191506101008a015190509295985092959850929598565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200117557607f821691505b6020821081036200119657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200080857600081815260208120601f850160051c81016020861015620011c55750805b601f850160051c820191505b81811015620011e657828155600101620011d1565b505050505050565b81516001600160401b038111156200120a576200120a6200114a565b62001222816200121b845462001160565b846200119c565b602080601f8311600181146200125a5760008415620012415750858301515b600019600386901b1c1916600185901b178555620011e6565b600085815260208120601f198616915b828110156200128b578886015182559484019460019091019084016200126a565b5085821015620012aa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620006d757620006d762001031565b600060208284031215620012e357600080fd5b62000c588262001084565b600060208083528351808285015260005b818110156200131d57858101830151858201604001528201620012ff565b506000604082860101526040601f19601f8301168501019250505092915050565b80516020808301519190811015620011965760001960209190910360031b1b16919050565b81810381811115620006d757620006d762001031565b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c0516101e051612c106200142e60003960008181610776015261210001526000818161057c0152612060015260008181610b5c015261141b0152600081816104ae0152818161191d0152611979015260006106a7015260006118f1015260006118c4015260006117e6015260006117be01526000611719015260006117430152600061176d0152612c106000f3fe60806040526004361061039b5760003560e01c80637ecebe00116101dc578063b46a802211610102578063e5711e8b116100a0578063f2fde38b1161006f578063f2fde38b14610af4578063f7ce447914610b14578063fc3c28af14610b34578063fd4adc6a14610b4a57600080fd5b8063e5711e8b14610a71578063e86bf16414610a91578063eaa4560d14610abe578063ee0f660114610ad457600080fd5b8063c29c669a116100dc578063c29c669a146109d5578063d505accf146109f5578063dd62ed3e14610a15578063e08e8f8814610a5b57600080fd5b8063b46a802214610980578063b53d7c9714610995578063c0654efd146109b557600080fd5b806395d89b411161017a5780639e252f00116101495780639e252f001461090a578063a0b2fb851461092a578063a6c2a7881461094a578063a9059cbb1461096057600080fd5b806395d89b41146108955780639cd441da146108aa5780639da793d0146108ca5780639e1b0045146108ea57600080fd5b806384b0196e116101b657806384b0196e1461081957806385b27c851461084157806386e476dd146108575780638da5cb5b1461087757600080fd5b80637ecebe00146107ce578063844284d7146107ee578063846ee64f1461080457600080fd5b80633644e515116102c15780634f02632b1161025f578063715018a61161022e578063715018a61461074f57806372854d9d1461076457806379cc6790146107985780637df405a4146107b857600080fd5b80634f02632b146106c95780636d800a3c146106e95780636fb1896c1461070357806370a082311461071957600080fd5b8063420d39f01161029b578063420d39f01461063f57806342966c681461065f578063480771441461067f57806349bd5a5e1461069557600080fd5b80633644e515146105ea57806339fb86c5146105ff5780633d740c2b1461061f57600080fd5b806318160ddd116103395780632b0d6c37116103085780632b0d6c37146105545780633014ba1b1461056a578063313ce5671461059e57806331446125146105ba57600080fd5b806318160ddd146104e8578063194c6407146104fd5780631a79444e1461051f57806323b872dd1461053457600080fd5b80630f1293b0116103755780630f1293b014610432578063131e00b714610456578063139adacc146104865780631694505e1461049c57600080fd5b806306fdde03146103a7578063095ea7b3146103d25780630b0fd47e1461040257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610b7e565b6040516103c991906127df565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612809565b610c10565b60405190151581526020016103c9565b34801561040e57600080fd5b506103f261041d366004612833565b601a6020526000908152604090205460ff1681565b34801561043e57600080fd5b5061044860125481565b6040519081526020016103c9565b34801561046257600080fd5b506103f2610471366004612833565b601c6020526000908152604090205460ff1681565b34801561049257600080fd5b5061044860185481565b3480156104a857600080fd5b506104d07f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c9565b3480156104f457600080fd5b50600654610448565b34801561050957600080fd5b5061051d61051836600461284e565b610c2a565b005b34801561052b57600080fd5b50610448610cee565b34801561054057600080fd5b506103f261054f366004612881565b610d5a565b34801561056057600080fd5b5061044860115481565b34801561057657600080fd5b506104487f000000000000000000000000000000000000000000000000000000000000000081565b3480156105aa57600080fd5b50604051601281526020016103c9565b3480156105c657600080fd5b506103f26105d5366004612833565b601b6020526000908152604090205460ff1681565b3480156105f657600080fd5b50610448610d80565b34801561060b57600080fd5b5061051d61061a3660046128cb565b610d8f565b34801561062b57600080fd5b50600a546104d0906001600160a01b031681565b34801561064b57600080fd5b5061051d61065a366004612902565b610da1565b34801561066b57600080fd5b5061051d61067a366004612924565b610db4565b34801561068b57600080fd5b5061044860175481565b3480156106a157600080fd5b506104d07f000000000000000000000000000000000000000000000000000000000000000081565b3480156106d557600080fd5b50600b546104d0906001600160a01b031681565b3480156106f557600080fd5b506015546103f29060ff1681565b34801561070f57600080fd5b50610448600d5481565b34801561072557600080fd5b50610448610734366004612833565b6001600160a01b031660009081526004602052604090205490565b34801561075b57600080fd5b5061051d610dc1565b34801561077057600080fd5b506104487f000000000000000000000000000000000000000000000000000000000000000081565b3480156107a457600080fd5b5061051d6107b3366004612809565b610dd5565b3480156107c457600080fd5b50610448600c5481565b3480156107da57600080fd5b506104486107e9366004612833565b610dea565b3480156107fa57600080fd5b50610448600f5481565b34801561081057600080fd5b50610448610e08565b34801561082557600080fd5b5061082e610eb6565b6040516103c9979695949392919061293d565b34801561084d57600080fd5b5061044860165481565b34801561086357600080fd5b506009546104d0906001600160a01b031681565b34801561088357600080fd5b506000546001600160a01b03166104d0565b3480156108a157600080fd5b506103bc610efc565b3480156108b657600080fd5b5061051d6108c5366004612902565b610f0b565b3480156108d657600080fd5b5061051d6108e53660046129d3565b610f66565b3480156108f657600080fd5b5061051d610905366004612902565b610f81565b34801561091657600080fd5b506103f2610925366004612924565b610feb565b34801561093657600080fd5b5061051d6109453660046128cb565b611018565b34801561095657600080fd5b5061044860105481565b34801561096c57600080fd5b506103f261097b366004612809565b61102a565b34801561098c57600080fd5b50610448611038565b3480156109a157600080fd5b5061051d6109b036600461284e565b6110a1565b3480156109c157600080fd5b5061051d6109d03660046129f0565b611108565b3480156109e157600080fd5b5061051d6109f03660046128cb565b6111bd565b348015610a0157600080fd5b5061051d610a10366004612a22565b611229565b348015610a2157600080fd5b50610448610a3036600461284e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b348015610a6757600080fd5b5061044860145481565b348015610a7d57600080fd5b5061051d610a8c366004612881565b611363565b348015610a9d57600080fd5b50610448610aac366004612833565b60196020526000908152604090205481565b348015610aca57600080fd5b5061044860135481565b348015610ae057600080fd5b5061051d610aef366004612833565b6113eb565b348015610b0057600080fd5b5061051d610b0f366004612833565b6114cc565b348015610b2057600080fd5b5061051d610b2f366004612833565b611507565b348015610b4057600080fd5b50610448600e5481565b348015610b5657600080fd5b506104d07f000000000000000000000000000000000000000000000000000000000000000081565b606060078054610b8d90612a95565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb990612a95565b8015610c065780601f10610bdb57610100808354040283529160200191610c06565b820191906000526020600020905b815481529060010190602001808311610be957829003601f168201915b5050505050905090565b600033610c1e81858561156e565b60019150505b92915050565b610c3261157b565b600a54610c49906001600160a01b031660006115a8565b600a54610c60906001600160a01b031660006115d3565b600b54610c77906001600160a01b031660006115a8565b600b54610c8e906001600160a01b031660006115d3565b600a80546001600160a01b038085166001600160a01b031992831617909255600b805492841692909116919091179055610cc98260016115a8565b610cd48160016115a8565b610cdf8260016115d3565b610cea8160016115d3565b5050565b60105480610d3a5760405162461bcd60e51b81526020600482015260146024820152734e6f206465762074617820617661696c61626c6560601b60448201526064015b60405180910390fd5b600a54610d529030906001600160a01b03168361162f565b600060105590565b600033610d6885828561168e565b610d7385858561162f565b60019150505b9392505050565b6000610d8a61170c565b905090565b610d9761157b565b610cea82826115a8565b610da961157b565b601691909155601755565b610dbe3382611837565b50565b610dc961157b565b610dd3600061186d565b565b610de082338361168e565b610cea8282611837565b6001600160a01b038116600090815260036020526040812054610c24565b60115480610e585760405162461bcd60e51b815260206004820152601a60248201527f4e6f20636f6d6d756e6974792074617820617661696c61626c650000000000006044820152606401610d31565b6009546001600160a01b03163314610ea35760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b2b73232b960911b6044820152606401610d31565b610eae30338361162f565b600060115590565b600060608060008060006060610eca6118bd565b610ed26118ea565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b606060088054610b8d90612a95565b610f1361157b565b600060185411610f5c5760405162461bcd60e51b8152602060048201526014602482015273141bdbdb081b9bdd081a5b9a5d1a585b1a5e995960621b6044820152606401610d31565b610cea8282611917565b610f6e61157b565b6015805460ff1916911515919091179055565b610f8961157b565b60185415610fd95760405162461bcd60e51b815260206004820152601860248201527f506f6f6c20616c726561647920696e697469616c697a656400000000000000006044820152606401610d31565b610fe38282611917565b505042601855565b6000610ff561157b565b604051339083156108fc029084906000818181858888f19450505050505b919050565b61102061157b565b610cea82826115d3565b600033610c1e81858561162f565b601254806110815760405162461bcd60e51b81526020600482015260166024820152754e6f2064657620746f6b656e20617661696c61626c6560501b6044820152606401610d31565b600b546110999030906001600160a01b03168361162f565b600060125590565b6110a961157b565b6040516336b91f2b60e01b81526001600160a01b0382811660048301528316906336b91f2b90602401600060405180830381600087803b1580156110ec57600080fd5b505af1158015611100573d6000803e3d6000fd5b505050505050565b61111061157b565b6101f484118061112157506101f483115b1561115d5760405162461bcd60e51b815260206004820152600c60248201526b0a8dede40d0d2ced040e8c2f60a31b6044820152606401610d31565b6111678183612ae5565b612710146111a95760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081c195c98d95b9d608a1b6044820152606401610d31565b600c93909355600d91909155600e55600f55565b6111c561157b565b6001600160a01b0382166000818152601a6020908152604091829020805460ff19168515159081179091558251938452908301527f365730f68b8417eb737925485379e9a7034f928711aaa76c90e9953e754839d191015b60405180910390a15050565b8342111561124d5760405163313c898160e11b815260048101859052602401610d31565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861129a8c6001600160a01b0316600090815260036020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006112f5826119f7565b9050600061130582878787611a24565b9050896001600160a01b0316816001600160a01b03161461134c576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610d31565b6113578a8a8a61156e565b50505050505050505050565b61136b61157b565b306001600160a01b038416036113db57426018546301e1338061138e9190612ae5565b106113db5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420726573637565207468697320746f6b656e00000000000000006044820152606401610d31565b6113e6838383611a52565b505050565b6113f361157b565b60405163662aa11d60e01b81523060048201526001600160a01b0382811660248301526000917f00000000000000000000000000000000000000000000000000000000000000009091169063662aa11d906044016020604051808303816000875af1158015611466573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148a9190612af8565b604080516001600160a01b0385168152602081018390529192507ff40b37e816b351d5dda1074b0371f5679ec72b453a023cf863ea8f99e2216740910161121d565b6114d461157b565b6001600160a01b0381166114fe57604051631e4fbdf760e01b815260006004820152602401610d31565b610dbe8161186d565b61150f61157b565b600954611526906001600160a01b031660006115a8565b60095461153d906001600160a01b031660006115d3565b600980546001600160a01b0319166001600160a01b0383161790556115638160016115a8565b610dbe8160016115d3565b6113e68383836001611aa4565b6000546001600160a01b03163314610dd35760405163118cdaa760e01b8152336004820152602401610d31565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601b6020908152604091829020805460ff19168515159081179091558251938452908301527f297c7a63a712ea88be3a55ff4407c6c79b698d21c826c441b49b2b5ad6b6478b910161121d565b6001600160a01b03831661165957604051634b637e8f60e11b815260006004820152602401610d31565b6001600160a01b0382166116835760405163ec442f0560e01b815260006004820152602401610d31565b6113e6838383611b79565b6001600160a01b03838116600090815260056020908152604080832093861683529290522054600019811461170657818110156116f757604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610d31565b61170684848484036000611aa4565b50505050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561176557507f000000000000000000000000000000000000000000000000000000000000000046145b1561178f57507f000000000000000000000000000000000000000000000000000000000000000090565b610d8a604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b03821661186157604051634b637e8f60e11b815260006004820152602401610d31565b610cea82600083611b79565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060610d8a7f00000000000000000000000000000000000000000000000000000000000000006001611c8d565b6060610d8a7f00000000000000000000000000000000000000000000000000000000000000006002611c8d565b611942307f00000000000000000000000000000000000000000000000000000000000000008361156e565b60405163f305d71960e01b8152306004820181905260248201839052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990849060c40160606040518083038185885af11580156119cb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119f09190612b11565b5050505050565b6000610c24611a0461170c565b8360405161190160f01b8152600281019290925260228201526042902090565b600080600080611a3688888888611d38565b925092509250611a468282611e07565b50909695505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526113e6908490611ec0565b6001600160a01b038416611ace5760405163e602df0560e01b815260006004820152602401610d31565b6001600160a01b038316611af857604051634a1406b160e11b815260006004820152602401610d31565b6001600160a01b038085166000908152600560209081526040808320938716835292905220829055801561170657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b6b91815260200190565b60405180910390a350505050565b6001600160a01b0383161580611b9657506001600160a01b038216155b80611bab57506001600160a01b03821661dead145b15611bbb576113e6838383611f23565b611bc5838361204d565b6000611bd2848484612161565b90506000611be1858585612297565b611beb9084612b3f565b90506000611bfa8686846123af565b9050611c068484612b3f565b6001600160a01b0380881660009081526004602052604080822093909355908716815220819055611c38868686612487565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c7d91815260200190565b60405180910390a3505050505050565b606060ff8314611ca757611ca083612578565b9050610c24565b818054611cb390612a95565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdf90612a95565b8015611d2c5780601f10611d0157610100808354040283529160200191611d2c565b820191906000526020600020905b815481529060010190602001808311611d0f57829003601f168201915b50505050509050610c24565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115611d735750600091506003905082611dfd565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015611dc7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611df357506000925060019150829050611dfd565b9250600091508190505b9450945094915050565b6000826003811115611e1b57611e1b612b52565b03611e24575050565b6001826003811115611e3857611e38612b52565b03611e565760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115611e6a57611e6a612b52565b03611e8b5760405163fce698f760e01b815260048101829052602401610d31565b6003826003811115611e9f57611e9f612b52565b03610cea576040516335e2f38360e21b815260048101829052602401610d31565b6000611ed56001600160a01b038416836125b7565b90508051600014158015611efa575080806020019051810190611ef89190612b68565b155b156113e657604051635274afe760e01b81526001600160a01b0384166004820152602401610d31565b6001600160a01b038316611f4e578060066000828254611f439190612ae5565b90915550611fc09050565b6001600160a01b03831660009081526004602052604090205481811015611fa15760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610d31565b6001600160a01b03841660009081526004602052604090209082900390555b6001600160a01b038216611fdc57600680548290039055611ffb565b6001600160a01b03821660009081526004602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161204091815260200190565b60405180910390a3505050565b601854600081900361205e57505050565b7f00000000000000000000000000000000000000000000000000000000000000006120898242612b3f565b10801561209a575061209a836125c5565b156120bd57506001600160a01b0316600090815260196020526040902042905550565b6001600160a01b0383166000908152601960205260409020541580159061212757506001600160a01b0383166000908152601960205260409020544290612125907f000000000000000000000000000000000000000000000000000000000000000090612ae5565b115b156113e65760405162461bcd60e51b815260206004820152600a602482015269109bdd081b1bd8dad95960b21b6044820152606401610d31565b6001600160a01b038316600090815260046020526040902054818110156121b45760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610d31565b60155460ff1680156121c857506000601654115b801561223157506121d8846125c5565b80156121fd57506001600160a01b0383166000908152601b602052604090205460ff16155b80612231575061220c836125c5565b801561223157506001600160a01b0384166000908152601b602052604090205460ff16155b15610d7957600064e8d4a5100060165461224b9190612ae5565b905080831061228f5760405162461bcd60e51b815260206004820152601060248201526f09ac2f040e8ded6cadc40e0cae440e8f60831b6044820152606401610d31565b509392505050565b6000806122a3856125c5565b156122b15750600c546122c4565b6122ba846125c5565b156122c45750600d545b8015806122e957506001600160a01b0385166000908152601c602052604090205460ff165b8061230c57506001600160a01b0384166000908152601c602052604090205460ff165b1561231b576000915050610d79565b6127106123288285612b85565b6123329190612b9c565b9150811561228f57612343826125e3565b3060009081526004602052604081208054849290612362908490612ae5565b909155505060405182815230906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3509392505050565b6001600160a01b0382166000908152600460205260408120546123d3908390612ae5565b90506123e160155460ff1690565b80156123ef57506000601754115b801561242457506123ff846125c5565b801561242457506001600160a01b0383166000908152601b602052604090205460ff16155b15610d7957600064e8d4a5100060175461243e9190612ae5565b905080821061228f5760405162461bcd60e51b815260206004820152601560248201527413585e081d1bdad95b881c195c881858d8dbdd5b9d605a1b6044820152606401610d31565b612490836125c5565b1580156124a357506124a1826125c5565b155b156124ad57505050565b6018546000036124bc57505050565b80601460008282546124ce9190612ae5565b909155505060135460008190036124e55750505050565b60006125006d1b6418d0c06e3443e9854dac000060a0612b85565b905060008160646125206d1b6418d0c06e3443e9854dac00006005612b85565b61252a9190612b9c565b6125349086612b85565b61253e9190612b9c565b90508281111561254b5750815b806012600082825461255d9190612ae5565b9091555061256d90508184612b3f565b601355505050505050565b6060600061258583612645565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6060610d798383600061266d565b6001600160a01b03166000908152601a602052604090205460ff1690565b6000612710600f54836125f69190612b85565b6126009190612b9c565b9050600061260e8284612b3f565b905080601060008282546126229190612ae5565b92505081905550816011600082825461263b9190612ae5565b9091555050505050565b600060ff8216601f811115610c2457604051632cd44ac360e21b815260040160405180910390fd5b6060814710156126925760405163cd78605960e01b8152306004820152602401610d31565b600080856001600160a01b031684866040516126ae9190612bbe565b60006040518083038185875af1925050503d80600081146126eb576040519150601f19603f3d011682016040523d82523d6000602084013e6126f0565b606091505b509150915061270086838361270a565b9695505050505050565b60608261271f5761271a82612766565b610d79565b815115801561273657506001600160a01b0384163b155b1561275f57604051639996b31560e01b81526001600160a01b0385166004820152602401610d31565b5080610d79565b8051156127765780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60005b838110156127aa578181015183820152602001612792565b50506000910152565b600081518084526127cb81602086016020860161278f565b601f01601f19169290920160200192915050565b602081526000610d7960208301846127b3565b80356001600160a01b038116811461101357600080fd5b6000806040838503121561281c57600080fd5b612825836127f2565b946020939093013593505050565b60006020828403121561284557600080fd5b610d79826127f2565b6000806040838503121561286157600080fd5b61286a836127f2565b9150612878602084016127f2565b90509250929050565b60008060006060848603121561289657600080fd5b61289f846127f2565b92506128ad602085016127f2565b9150604084013590509250925092565b8015158114610dbe57600080fd5b600080604083850312156128de57600080fd5b6128e7836127f2565b915060208301356128f7816128bd565b809150509250929050565b6000806040838503121561291557600080fd5b50508035926020909101359150565b60006020828403121561293657600080fd5b5035919050565b60ff60f81b881681526000602060e08184015261295d60e084018a6127b3565b838103604085015261296f818a6127b3565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b818110156129c1578351835292840192918401916001016129a5565b50909c9b505050505050505050505050565b6000602082840312156129e557600080fd5b8135610d79816128bd565b60008060008060808587031215612a0657600080fd5b5050823594602084013594506040840135936060013592509050565b600080600080600080600060e0888a031215612a3d57600080fd5b612a46886127f2565b9650612a54602089016127f2565b95506040880135945060608801359350608088013560ff81168114612a7857600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600181811c90821680612aa957607f821691505b602082108103612ac957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c2457610c24612acf565b600060208284031215612b0a57600080fd5b5051919050565b600080600060608486031215612b2657600080fd5b8351925060208401519150604084015190509250925092565b81810381811115610c2457610c24612acf565b634e487b7160e01b600052602160045260246000fd5b600060208284031215612b7a57600080fd5b8151610d79816128bd565b8082028115828204841417610c2457610c24612acf565b600082612bb957634e487b7160e01b600052601260045260246000fd5b500490565b60008251612bd081846020870161278f565b919091019291505056fea2646970667358221220021b7a37f3f02c6023f053ccc65d7592e5f1521e3c692f8f389396af046d683c64736f6c63430008140033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000be16bf9398dbac44bbd8672ebea5682fa42aef10000000000000000000000000983534a7fafbdea93fdf1c76e41cbd3d525abdcb0000000000000000000000005ac7ae30a4a42af56a557961bf2f27597ed9e8b900000000000000000000000098994a9a7a2570367554589189dc9772241650f600000000000000000000000043000000000000000000000000000000000000020000000000000000000000002536fe9ab3f511540f2f9e2ec2a805005c3dd8000000000000000000000000006a15dbcc0a05b8313f8b71f66b2601f7699dcf36000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000127500
Deployed Bytecode
0x60806040526004361061039b5760003560e01c80637ecebe00116101dc578063b46a802211610102578063e5711e8b116100a0578063f2fde38b1161006f578063f2fde38b14610af4578063f7ce447914610b14578063fc3c28af14610b34578063fd4adc6a14610b4a57600080fd5b8063e5711e8b14610a71578063e86bf16414610a91578063eaa4560d14610abe578063ee0f660114610ad457600080fd5b8063c29c669a116100dc578063c29c669a146109d5578063d505accf146109f5578063dd62ed3e14610a15578063e08e8f8814610a5b57600080fd5b8063b46a802214610980578063b53d7c9714610995578063c0654efd146109b557600080fd5b806395d89b411161017a5780639e252f00116101495780639e252f001461090a578063a0b2fb851461092a578063a6c2a7881461094a578063a9059cbb1461096057600080fd5b806395d89b41146108955780639cd441da146108aa5780639da793d0146108ca5780639e1b0045146108ea57600080fd5b806384b0196e116101b657806384b0196e1461081957806385b27c851461084157806386e476dd146108575780638da5cb5b1461087757600080fd5b80637ecebe00146107ce578063844284d7146107ee578063846ee64f1461080457600080fd5b80633644e515116102c15780634f02632b1161025f578063715018a61161022e578063715018a61461074f57806372854d9d1461076457806379cc6790146107985780637df405a4146107b857600080fd5b80634f02632b146106c95780636d800a3c146106e95780636fb1896c1461070357806370a082311461071957600080fd5b8063420d39f01161029b578063420d39f01461063f57806342966c681461065f578063480771441461067f57806349bd5a5e1461069557600080fd5b80633644e515146105ea57806339fb86c5146105ff5780633d740c2b1461061f57600080fd5b806318160ddd116103395780632b0d6c37116103085780632b0d6c37146105545780633014ba1b1461056a578063313ce5671461059e57806331446125146105ba57600080fd5b806318160ddd146104e8578063194c6407146104fd5780631a79444e1461051f57806323b872dd1461053457600080fd5b80630f1293b0116103755780630f1293b014610432578063131e00b714610456578063139adacc146104865780631694505e1461049c57600080fd5b806306fdde03146103a7578063095ea7b3146103d25780630b0fd47e1461040257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610b7e565b6040516103c991906127df565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612809565b610c10565b60405190151581526020016103c9565b34801561040e57600080fd5b506103f261041d366004612833565b601a6020526000908152604090205460ff1681565b34801561043e57600080fd5b5061044860125481565b6040519081526020016103c9565b34801561046257600080fd5b506103f2610471366004612833565b601c6020526000908152604090205460ff1681565b34801561049257600080fd5b5061044860185481565b3480156104a857600080fd5b506104d07f00000000000000000000000098994a9a7a2570367554589189dc9772241650f681565b6040516001600160a01b0390911681526020016103c9565b3480156104f457600080fd5b50600654610448565b34801561050957600080fd5b5061051d61051836600461284e565b610c2a565b005b34801561052b57600080fd5b50610448610cee565b34801561054057600080fd5b506103f261054f366004612881565b610d5a565b34801561056057600080fd5b5061044860115481565b34801561057657600080fd5b506104487f000000000000000000000000000000000000000000000000000000000000001e81565b3480156105aa57600080fd5b50604051601281526020016103c9565b3480156105c657600080fd5b506103f26105d5366004612833565b601b6020526000908152604090205460ff1681565b3480156105f657600080fd5b50610448610d80565b34801561060b57600080fd5b5061051d61061a3660046128cb565b610d8f565b34801561062b57600080fd5b50600a546104d0906001600160a01b031681565b34801561064b57600080fd5b5061051d61065a366004612902565b610da1565b34801561066b57600080fd5b5061051d61067a366004612924565b610db4565b34801561068b57600080fd5b5061044860175481565b3480156106a157600080fd5b506104d07f00000000000000000000000092f32553cc465583d432846955198f0ddcbcafa181565b3480156106d557600080fd5b50600b546104d0906001600160a01b031681565b3480156106f557600080fd5b506015546103f29060ff1681565b34801561070f57600080fd5b50610448600d5481565b34801561072557600080fd5b50610448610734366004612833565b6001600160a01b031660009081526004602052604090205490565b34801561075b57600080fd5b5061051d610dc1565b34801561077057600080fd5b506104487f000000000000000000000000000000000000000000000000000000000012750081565b3480156107a457600080fd5b5061051d6107b3366004612809565b610dd5565b3480156107c457600080fd5b50610448600c5481565b3480156107da57600080fd5b506104486107e9366004612833565b610dea565b3480156107fa57600080fd5b50610448600f5481565b34801561081057600080fd5b50610448610e08565b34801561082557600080fd5b5061082e610eb6565b6040516103c9979695949392919061293d565b34801561084d57600080fd5b5061044860165481565b34801561086357600080fd5b506009546104d0906001600160a01b031681565b34801561088357600080fd5b506000546001600160a01b03166104d0565b3480156108a157600080fd5b506103bc610efc565b3480156108b657600080fd5b5061051d6108c5366004612902565b610f0b565b3480156108d657600080fd5b5061051d6108e53660046129d3565b610f66565b3480156108f657600080fd5b5061051d610905366004612902565b610f81565b34801561091657600080fd5b506103f2610925366004612924565b610feb565b34801561093657600080fd5b5061051d6109453660046128cb565b611018565b34801561095657600080fd5b5061044860105481565b34801561096c57600080fd5b506103f261097b366004612809565b61102a565b34801561098c57600080fd5b50610448611038565b3480156109a157600080fd5b5061051d6109b036600461284e565b6110a1565b3480156109c157600080fd5b5061051d6109d03660046129f0565b611108565b3480156109e157600080fd5b5061051d6109f03660046128cb565b6111bd565b348015610a0157600080fd5b5061051d610a10366004612a22565b611229565b348015610a2157600080fd5b50610448610a3036600461284e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b348015610a6757600080fd5b5061044860145481565b348015610a7d57600080fd5b5061051d610a8c366004612881565b611363565b348015610a9d57600080fd5b50610448610aac366004612833565b60196020526000908152604090205481565b348015610aca57600080fd5b5061044860135481565b348015610ae057600080fd5b5061051d610aef366004612833565b6113eb565b348015610b0057600080fd5b5061051d610b0f366004612833565b6114cc565b348015610b2057600080fd5b5061051d610b2f366004612833565b611507565b348015610b4057600080fd5b50610448600e5481565b348015610b5657600080fd5b506104d07f000000000000000000000000430000000000000000000000000000000000000281565b606060078054610b8d90612a95565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb990612a95565b8015610c065780601f10610bdb57610100808354040283529160200191610c06565b820191906000526020600020905b815481529060010190602001808311610be957829003601f168201915b5050505050905090565b600033610c1e81858561156e565b60019150505b92915050565b610c3261157b565b600a54610c49906001600160a01b031660006115a8565b600a54610c60906001600160a01b031660006115d3565b600b54610c77906001600160a01b031660006115a8565b600b54610c8e906001600160a01b031660006115d3565b600a80546001600160a01b038085166001600160a01b031992831617909255600b805492841692909116919091179055610cc98260016115a8565b610cd48160016115a8565b610cdf8260016115d3565b610cea8160016115d3565b5050565b60105480610d3a5760405162461bcd60e51b81526020600482015260146024820152734e6f206465762074617820617661696c61626c6560601b60448201526064015b60405180910390fd5b600a54610d529030906001600160a01b03168361162f565b600060105590565b600033610d6885828561168e565b610d7385858561162f565b60019150505b9392505050565b6000610d8a61170c565b905090565b610d9761157b565b610cea82826115a8565b610da961157b565b601691909155601755565b610dbe3382611837565b50565b610dc961157b565b610dd3600061186d565b565b610de082338361168e565b610cea8282611837565b6001600160a01b038116600090815260036020526040812054610c24565b60115480610e585760405162461bcd60e51b815260206004820152601a60248201527f4e6f20636f6d6d756e6974792074617820617661696c61626c650000000000006044820152606401610d31565b6009546001600160a01b03163314610ea35760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b2b73232b960911b6044820152606401610d31565b610eae30338361162f565b600060115590565b600060608060008060006060610eca6118bd565b610ed26118ea565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b606060088054610b8d90612a95565b610f1361157b565b600060185411610f5c5760405162461bcd60e51b8152602060048201526014602482015273141bdbdb081b9bdd081a5b9a5d1a585b1a5e995960621b6044820152606401610d31565b610cea8282611917565b610f6e61157b565b6015805460ff1916911515919091179055565b610f8961157b565b60185415610fd95760405162461bcd60e51b815260206004820152601860248201527f506f6f6c20616c726561647920696e697469616c697a656400000000000000006044820152606401610d31565b610fe38282611917565b505042601855565b6000610ff561157b565b604051339083156108fc029084906000818181858888f19450505050505b919050565b61102061157b565b610cea82826115d3565b600033610c1e81858561162f565b601254806110815760405162461bcd60e51b81526020600482015260166024820152754e6f2064657620746f6b656e20617661696c61626c6560501b6044820152606401610d31565b600b546110999030906001600160a01b03168361162f565b600060125590565b6110a961157b565b6040516336b91f2b60e01b81526001600160a01b0382811660048301528316906336b91f2b90602401600060405180830381600087803b1580156110ec57600080fd5b505af1158015611100573d6000803e3d6000fd5b505050505050565b61111061157b565b6101f484118061112157506101f483115b1561115d5760405162461bcd60e51b815260206004820152600c60248201526b0a8dede40d0d2ced040e8c2f60a31b6044820152606401610d31565b6111678183612ae5565b612710146111a95760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081c195c98d95b9d608a1b6044820152606401610d31565b600c93909355600d91909155600e55600f55565b6111c561157b565b6001600160a01b0382166000818152601a6020908152604091829020805460ff19168515159081179091558251938452908301527f365730f68b8417eb737925485379e9a7034f928711aaa76c90e9953e754839d191015b60405180910390a15050565b8342111561124d5760405163313c898160e11b815260048101859052602401610d31565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861129a8c6001600160a01b0316600090815260036020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006112f5826119f7565b9050600061130582878787611a24565b9050896001600160a01b0316816001600160a01b03161461134c576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610d31565b6113578a8a8a61156e565b50505050505050505050565b61136b61157b565b306001600160a01b038416036113db57426018546301e1338061138e9190612ae5565b106113db5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420726573637565207468697320746f6b656e00000000000000006044820152606401610d31565b6113e6838383611a52565b505050565b6113f361157b565b60405163662aa11d60e01b81523060048201526001600160a01b0382811660248301526000917f00000000000000000000000043000000000000000000000000000000000000029091169063662aa11d906044016020604051808303816000875af1158015611466573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148a9190612af8565b604080516001600160a01b0385168152602081018390529192507ff40b37e816b351d5dda1074b0371f5679ec72b453a023cf863ea8f99e2216740910161121d565b6114d461157b565b6001600160a01b0381166114fe57604051631e4fbdf760e01b815260006004820152602401610d31565b610dbe8161186d565b61150f61157b565b600954611526906001600160a01b031660006115a8565b60095461153d906001600160a01b031660006115d3565b600980546001600160a01b0319166001600160a01b0383161790556115638160016115a8565b610dbe8160016115d3565b6113e68383836001611aa4565b6000546001600160a01b03163314610dd35760405163118cdaa760e01b8152336004820152602401610d31565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601b6020908152604091829020805460ff19168515159081179091558251938452908301527f297c7a63a712ea88be3a55ff4407c6c79b698d21c826c441b49b2b5ad6b6478b910161121d565b6001600160a01b03831661165957604051634b637e8f60e11b815260006004820152602401610d31565b6001600160a01b0382166116835760405163ec442f0560e01b815260006004820152602401610d31565b6113e6838383611b79565b6001600160a01b03838116600090815260056020908152604080832093861683529290522054600019811461170657818110156116f757604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610d31565b61170684848484036000611aa4565b50505050565b6000306001600160a01b037f000000000000000000000000dfdcdbc789b56f99b0d0692d14dbc61906d9deed1614801561176557507f0000000000000000000000000000000000000000000000000000000000013e3146145b1561178f57507f6eea749989f7b0e340c738cf5ff49fdfa22f72a532e6dc12ea1b36ed05ae1b7690565b610d8a604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f615bb6bf8412d3555f2dabfa5fe7e96610c7425b907c54a8a42056622efc37b2918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b03821661186157604051634b637e8f60e11b815260006004820152602401610d31565b610cea82600083611b79565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060610d8a7f53535300000000000000000000000000000000000000000000000000000000036001611c8d565b6060610d8a7f31000000000000000000000000000000000000000000000000000000000000016002611c8d565b611942307f00000000000000000000000098994a9a7a2570367554589189dc9772241650f68361156e565b60405163f305d71960e01b8152306004820181905260248201839052600060448301819052606483015260848201524260a48201527f00000000000000000000000098994a9a7a2570367554589189dc9772241650f66001600160a01b03169063f305d71990849060c40160606040518083038185885af11580156119cb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119f09190612b11565b5050505050565b6000610c24611a0461170c565b8360405161190160f01b8152600281019290925260228201526042902090565b600080600080611a3688888888611d38565b925092509250611a468282611e07565b50909695505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526113e6908490611ec0565b6001600160a01b038416611ace5760405163e602df0560e01b815260006004820152602401610d31565b6001600160a01b038316611af857604051634a1406b160e11b815260006004820152602401610d31565b6001600160a01b038085166000908152600560209081526040808320938716835292905220829055801561170657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b6b91815260200190565b60405180910390a350505050565b6001600160a01b0383161580611b9657506001600160a01b038216155b80611bab57506001600160a01b03821661dead145b15611bbb576113e6838383611f23565b611bc5838361204d565b6000611bd2848484612161565b90506000611be1858585612297565b611beb9084612b3f565b90506000611bfa8686846123af565b9050611c068484612b3f565b6001600160a01b0380881660009081526004602052604080822093909355908716815220819055611c38868686612487565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c7d91815260200190565b60405180910390a3505050505050565b606060ff8314611ca757611ca083612578565b9050610c24565b818054611cb390612a95565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdf90612a95565b8015611d2c5780601f10611d0157610100808354040283529160200191611d2c565b820191906000526020600020905b815481529060010190602001808311611d0f57829003601f168201915b50505050509050610c24565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115611d735750600091506003905082611dfd565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015611dc7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611df357506000925060019150829050611dfd565b9250600091508190505b9450945094915050565b6000826003811115611e1b57611e1b612b52565b03611e24575050565b6001826003811115611e3857611e38612b52565b03611e565760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115611e6a57611e6a612b52565b03611e8b5760405163fce698f760e01b815260048101829052602401610d31565b6003826003811115611e9f57611e9f612b52565b03610cea576040516335e2f38360e21b815260048101829052602401610d31565b6000611ed56001600160a01b038416836125b7565b90508051600014158015611efa575080806020019051810190611ef89190612b68565b155b156113e657604051635274afe760e01b81526001600160a01b0384166004820152602401610d31565b6001600160a01b038316611f4e578060066000828254611f439190612ae5565b90915550611fc09050565b6001600160a01b03831660009081526004602052604090205481811015611fa15760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610d31565b6001600160a01b03841660009081526004602052604090209082900390555b6001600160a01b038216611fdc57600680548290039055611ffb565b6001600160a01b03821660009081526004602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161204091815260200190565b60405180910390a3505050565b601854600081900361205e57505050565b7f000000000000000000000000000000000000000000000000000000000000001e6120898242612b3f565b10801561209a575061209a836125c5565b156120bd57506001600160a01b0316600090815260196020526040902042905550565b6001600160a01b0383166000908152601960205260409020541580159061212757506001600160a01b0383166000908152601960205260409020544290612125907f000000000000000000000000000000000000000000000000000000000012750090612ae5565b115b156113e65760405162461bcd60e51b815260206004820152600a602482015269109bdd081b1bd8dad95960b21b6044820152606401610d31565b6001600160a01b038316600090815260046020526040902054818110156121b45760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610d31565b60155460ff1680156121c857506000601654115b801561223157506121d8846125c5565b80156121fd57506001600160a01b0383166000908152601b602052604090205460ff16155b80612231575061220c836125c5565b801561223157506001600160a01b0384166000908152601b602052604090205460ff16155b15610d7957600064e8d4a5100060165461224b9190612ae5565b905080831061228f5760405162461bcd60e51b815260206004820152601060248201526f09ac2f040e8ded6cadc40e0cae440e8f60831b6044820152606401610d31565b509392505050565b6000806122a3856125c5565b156122b15750600c546122c4565b6122ba846125c5565b156122c45750600d545b8015806122e957506001600160a01b0385166000908152601c602052604090205460ff165b8061230c57506001600160a01b0384166000908152601c602052604090205460ff165b1561231b576000915050610d79565b6127106123288285612b85565b6123329190612b9c565b9150811561228f57612343826125e3565b3060009081526004602052604081208054849290612362908490612ae5565b909155505060405182815230906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3509392505050565b6001600160a01b0382166000908152600460205260408120546123d3908390612ae5565b90506123e160155460ff1690565b80156123ef57506000601754115b801561242457506123ff846125c5565b801561242457506001600160a01b0383166000908152601b602052604090205460ff16155b15610d7957600064e8d4a5100060175461243e9190612ae5565b905080821061228f5760405162461bcd60e51b815260206004820152601560248201527413585e081d1bdad95b881c195c881858d8dbdd5b9d605a1b6044820152606401610d31565b612490836125c5565b1580156124a357506124a1826125c5565b155b156124ad57505050565b6018546000036124bc57505050565b80601460008282546124ce9190612ae5565b909155505060135460008190036124e55750505050565b60006125006d1b6418d0c06e3443e9854dac000060a0612b85565b905060008160646125206d1b6418d0c06e3443e9854dac00006005612b85565b61252a9190612b9c565b6125349086612b85565b61253e9190612b9c565b90508281111561254b5750815b806012600082825461255d9190612ae5565b9091555061256d90508184612b3f565b601355505050505050565b6060600061258583612645565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6060610d798383600061266d565b6001600160a01b03166000908152601a602052604090205460ff1690565b6000612710600f54836125f69190612b85565b6126009190612b9c565b9050600061260e8284612b3f565b905080601060008282546126229190612ae5565b92505081905550816011600082825461263b9190612ae5565b9091555050505050565b600060ff8216601f811115610c2457604051632cd44ac360e21b815260040160405180910390fd5b6060814710156126925760405163cd78605960e01b8152306004820152602401610d31565b600080856001600160a01b031684866040516126ae9190612bbe565b60006040518083038185875af1925050503d80600081146126eb576040519150601f19603f3d011682016040523d82523d6000602084013e6126f0565b606091505b509150915061270086838361270a565b9695505050505050565b60608261271f5761271a82612766565b610d79565b815115801561273657506001600160a01b0384163b155b1561275f57604051639996b31560e01b81526001600160a01b0385166004820152602401610d31565b5080610d79565b8051156127765780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60005b838110156127aa578181015183820152602001612792565b50506000910152565b600081518084526127cb81602086016020860161278f565b601f01601f19169290920160200192915050565b602081526000610d7960208301846127b3565b80356001600160a01b038116811461101357600080fd5b6000806040838503121561281c57600080fd5b612825836127f2565b946020939093013593505050565b60006020828403121561284557600080fd5b610d79826127f2565b6000806040838503121561286157600080fd5b61286a836127f2565b9150612878602084016127f2565b90509250929050565b60008060006060848603121561289657600080fd5b61289f846127f2565b92506128ad602085016127f2565b9150604084013590509250925092565b8015158114610dbe57600080fd5b600080604083850312156128de57600080fd5b6128e7836127f2565b915060208301356128f7816128bd565b809150509250929050565b6000806040838503121561291557600080fd5b50508035926020909101359150565b60006020828403121561293657600080fd5b5035919050565b60ff60f81b881681526000602060e08184015261295d60e084018a6127b3565b838103604085015261296f818a6127b3565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b818110156129c1578351835292840192918401916001016129a5565b50909c9b505050505050505050505050565b6000602082840312156129e557600080fd5b8135610d79816128bd565b60008060008060808587031215612a0657600080fd5b5050823594602084013594506040840135936060013592509050565b600080600080600080600060e0888a031215612a3d57600080fd5b612a46886127f2565b9650612a54602089016127f2565b95506040880135945060608801359350608088013560ff81168114612a7857600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600181811c90821680612aa957607f821691505b602082108103612ac957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c2457610c24612acf565b600060208284031215612b0a57600080fd5b5051919050565b600080600060608486031215612b2657600080fd5b8351925060208401519150604084015190509250925092565b81810381811115610c2457610c24612acf565b634e487b7160e01b600052602160045260246000fd5b600060208284031215612b7a57600080fd5b8151610d79816128bd565b8082028115828204841417610c2457610c24612acf565b600082612bb957634e487b7160e01b600052601260045260246000fd5b500490565b60008251612bd081846020870161278f565b919091019291505056fea2646970667358221220021b7a37f3f02c6023f053ccc65d7592e5f1521e3c692f8f389396af046d683c64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000be16bf9398dbac44bbd8672ebea5682fa42aef10000000000000000000000000983534a7fafbdea93fdf1c76e41cbd3d525abdcb0000000000000000000000005ac7ae30a4a42af56a557961bf2f27597ed9e8b900000000000000000000000098994a9a7a2570367554589189dc9772241650f600000000000000000000000043000000000000000000000000000000000000020000000000000000000000002536fe9ab3f511540f2f9e2ec2a805005c3dd8000000000000000000000000006a15dbcc0a05b8313f8b71f66b2601f7699dcf36000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000127500
-----Decoded View---------------
Arg [0] : community (address): 0xbE16bF9398Dbac44bbd8672Ebea5682Fa42aEf10
Arg [1] : devTaxReceiver (address): 0x983534A7FaFbDEA93Fdf1C76e41CBD3D525aBDcB
Arg [2] : devTokenReceiver (address): 0x5aC7ae30a4a42Af56A557961Bf2f27597ed9E8b9
Arg [3] : routerAddress (address): 0x98994a9A7a2570367554589189dC9772241650f6
Arg [4] : blastGasModeContractAddress (address): 0x4300000000000000000000000000000000000002
Arg [5] : blastPointAddress (address): 0x2536FE9ab3F511540F2f9e2eC2A805005C3Dd800
Arg [6] : blastPointOperator (address): 0x6a15dBcC0A05b8313F8b71f66b2601f7699dcf36
Arg [7] : antiBotDetectDuration (uint256): 30
Arg [8] : antiBotLockDuration (uint256): 1209600
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000be16bf9398dbac44bbd8672ebea5682fa42aef10
Arg [1] : 000000000000000000000000983534a7fafbdea93fdf1c76e41cbd3d525abdcb
Arg [2] : 0000000000000000000000005ac7ae30a4a42af56a557961bf2f27597ed9e8b9
Arg [3] : 00000000000000000000000098994a9a7a2570367554589189dc9772241650f6
Arg [4] : 0000000000000000000000004300000000000000000000000000000000000002
Arg [5] : 0000000000000000000000002536fe9ab3f511540f2f9e2ec2a805005c3dd800
Arg [6] : 0000000000000000000000006a15dbcc0a05b8313f8b71f66b2601f7699dcf36
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [8] : 0000000000000000000000000000000000000000000000000000000000127500
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.