Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
69,420,000 PIE
Holders
167
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
54,439.570190293327597561 PIEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Creampie
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 9999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.20; /** * @title Creampie * @author https://twitter.com/TonkaTruckEth * @notice get pied - https://twitter.com/TonkaTruckEth */ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract Creampie is ERC20("Creampie", "PIE"), Ownable { uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public maxWalletAmount; IUniswapV2Factory public constant UNISWAP_FACTORY = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); IUniswapV2Router02 public constant UNISWAP_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable UNISWAP_PAIR; bool private swapping; uint256 public swapTokensAtAmount; address public spermBank; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyTreasuryFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellTreasuryFee; uint256 public sellLiquidityFee; uint256 public tokensForTreasury; uint256 public tokensForLiquidity; // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event EnabledTrading(bool tradingActive); event RemovedLimits(); event ExcludeFromFees(address indexed account, bool isExcluded); event UpdatedMaxBuyAmount(uint256 newAmount); event UpdatedMaxSellAmount(uint256 newAmount); event UpdatedMaxWalletAmount(uint256 newAmount); event UpdatedSpermBank(address indexed newWallet); event UpdatedRewardsAddress(address indexed newWallet); event MaxTransactionExclusion(address _address, bool excluded); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() { _mint(msg.sender, 69_420_000 * 1e18); _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0)); _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true); UNISWAP_PAIR = UNISWAP_FACTORY.createPair( address(this), UNISWAP_ROUTER.WETH() ); maxBuyAmount = (totalSupply() * 100) / 1_000; maxSellAmount = (totalSupply() * 100) / 1_000; maxWalletAmount = (totalSupply() * 100) / 1_000; swapTokensAtAmount = (totalSupply() * 500) / 100_000; buyTreasuryFee = 2; buyLiquidityFee = 1; buyTotalFees = buyTreasuryFee + buyLiquidityFee; sellTreasuryFee = 2; sellLiquidityFee = 1; sellTotalFees = sellTreasuryFee + sellLiquidityFee; _excludeFromMaxTransaction(msg.sender, true); _excludeFromMaxTransaction(address(this), true); _excludeFromMaxTransaction(address(0xdead), true); spermBank = msg.sender; excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); } receive() external payable {} function updateMaxBuyAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1_000), "Cannot set max buy amount lower than 0.1%" ); maxBuyAmount = newNum; emit UpdatedMaxBuyAmount(maxBuyAmount); } function updateMaxSellAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1_000), "Cannot set max sell amount lower than 0.1%" ); maxSellAmount = newNum; emit UpdatedMaxSellAmount(maxSellAmount); } // remove limits after token is stable function removeLimits() external onlyOwner { limitsInEffect = false; emit RemovedLimits(); } function _excludeFromMaxTransaction( address updAds, bool isExcluded ) private { _isExcludedMaxTransactionAmount[updAds] = isExcluded; emit MaxTransactionExclusion(updAds, isExcluded); } function excludeFromMaxTransaction( address updAds, bool isEx ) external onlyOwner { if (!isEx) { require( updAds != UNISWAP_PAIR, "Cannot remove uniswap pair from max txn" ); } _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 3) / 1_000), "Cannot set max wallet amount lower than 0.3%" ); maxWalletAmount = newNum; emit UpdatedMaxWalletAmount(maxWalletAmount); } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require( newAmount >= (totalSupply() * 1) / 100_000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 1) / 1_000, "Swap amount cannot be higher than 0.1% total supply." ); swapTokensAtAmount = newAmount; } function updateBuyFees( uint256 _treasuryFee, uint256 _liquidityFee ) external onlyOwner { buyTreasuryFee = _treasuryFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyTreasuryFee + buyLiquidityFee; require(buyTotalFees <= 15, "Must keep fees at 15% or less"); } function updateSellFees( uint256 _treasuryFee, uint256 _liquidityFee ) external onlyOwner { sellTreasuryFee = _treasuryFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellTreasuryFee + sellLiquidityFee; require(sellTotalFees <= 30, "Must keep fees at 30% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "amount must be greater than 0"); if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) ) { if (!tradingActive) { require( _isExcludedMaxTransactionAmount[from] || _isExcludedMaxTransactionAmount[to], "Trading is not active." ); require(from == owner(), "Trading is enabled"); } //when buy if ( from == UNISWAP_PAIR && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy." ); require( amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet" ); } //when sell else if ( to == UNISWAP_PAIR && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxSellAmount, "Sell transfer amount exceeds the max sell." ); } else if ( !_isExcludedMaxTransactionAmount[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !(from == UNISWAP_PAIR) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = true; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on Trades, not on wallet transfers if (takeFee) { // on sell if (to == UNISWAP_PAIR && sellTotalFees > 0) { fees = (amount * sellTotalFees) / 100; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTreasury += (fees * sellTreasuryFee) / sellTotalFees; } // on buy else if (from == UNISWAP_PAIR && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTreasury += (fees * buyTreasuryFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = UNISWAP_ROUTER.WETH(); // make the swap UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } // once enabled, can never be turned off function enableTrading(bool _status) external onlyOwner { require(!tradingActive, "Cannot re enable trading"); tradingActive = _status; swapEnabled = true; emit EnabledTrading(tradingActive); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // add the liquidity UNISWAP_ROUTER.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable spermBank, block.timestamp ); } function setSpermBank(address _spermBank) external onlyOwner { require(_spermBank != address(0), "_spermBank address cannot be 0"); spermBank = payable(_spermBank); emit UpdatedSpermBank(_spermBank); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForTreasury; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 10) { contractBalance = swapTokensAtAmount * 10; } bool success; // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; swapTokensForEth(contractBalance - liquidityTokens); uint256 ethBalance = address(this).balance; uint256 ethForLiquidity = ethBalance; uint256 ethForTreasury = (ethBalance * tokensForTreasury) / (totalTokensToSwap - (tokensForLiquidity / 2)); ethForLiquidity -= ethForTreasury; tokensForLiquidity = 0; tokensForTreasury = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); } (success, ) = address(spermBank).call{value: address(this).balance}(""); } function claimStuckTokens(address _token) external { require( msg.sender == owner() || msg.sender == spermBank, "Not authorized" ); if (_token == address(0x0)) { payable(owner()).transfer(address(this).balance); return; } ERC20 erc20token = ERC20(_token); uint256 balance = erc20token.balanceOf(address(this)); erc20token.transfer(owner(), balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 9999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedRewardsAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedSpermBank","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spermBank","type":"address"}],"name":"setSpermBank","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spermBank","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604081815234620007a0576200001782620007a4565b6008825260209167437265616d70696560c01b838201528151926200003c84620007a4565b60038085526250494560e81b82860152825192906001600160401b03808511620006ab578154946001938487811c9716801562000795575b8688101462000781578190601f978881116200072e575b508690888311600114620006cb575f92620006bf575b50505f1982851b1c191690841b1782555b8651908111620006ab5760049687548481811c91168015620006a0575b868210146200068d579081878493116200063a575b508590878311600114620005d7575f92620005cb575b50505f1982841b1c191690831b1786555b600580546001600160a01b03198082163390811790935587516001600160a01b03979193909288167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3600b805462ffffff60a01b1916600160a01b17905533156200058b5750506002546a396c41bd9e54ada3800000908181018091116200057857600255335f525f8552865f2081815401905586519081525f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef863393a33015620005295795808697305f52848652875f2093737a250d5630b4cf539739df2c5dacb4c659f2488d94855f528752845f19808b5f20558a519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925893092a3845f526015875286895f209560ff199688888254161790558a5181815288838201525f80516020620038488339815191529b8c91a18b516315ab88c960e31b815294859182905afa9283156200051f575f93620004fb575b5089516364e329cb60e11b8152308582015288602494168482015287816044815f735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f5af1908115620004f1575f91620004bd575b5060805260025460648102811590828104606414821715620004ab576103e8900480600655806007556008556101f48083029283041417156200049957620186a09004600a556002600d5585600e5580600c55600260105585601155600f55620003393362000805565b620003443062000805565b61dead97885f5260158752895f2086868254161790558980518a81528789820152a13390600b541617600b55338660055416036200043c57335f5260148552875f2084848254161790558751958487527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79687873392a2338160055416036200046b57305f5260148652885f208585825416179055885185815287873092a2339060055416036200043c575050845f526014835281865f20918254161790558451908152a251612fe390816200084582396080518181816111bf0152818161147f015281816122880152818161241e01526124940152f35b875162461bcd60e51b815291820185905281018490525f80516020620038288339815191526044820152606490fd5b6064838784818d519362461bcd60e51b85528401528201525f80516020620038288339815191526044820152fd5b83601186634e487b7160e01b5f52525ffd5b85601188634e487b7160e01b5f52525ffd5b620004e29150883d8a11620004e9575b620004d98183620007c0565b810190620007e4565b5f620002cf565b503d620004cd565b8b513d5f823e3d90fd5b62000517919350873d8911620004e957620004d98183620007c0565b915f62000287565b8a513d5f823e3d90fd5b855162461bcd60e51b81528088018590526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b601189634e487b7160e01b5f525260245ffd5b62461bcd60e51b825281890186905260248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260649150fd5b015190505f80620000fa565b90859350601f198316918a5f52875f20925f5b898282106200062357505084116200060b575b505050811b0186556200010b565b01515f1983861b60f8161c191690555f8080620005fd565b8385015186558997909501949384019301620005ea565b909150885f52855f208780850160051c82019288861062000683575b918791869594930160051c01915b82811062000674575050620000e4565b5f815585945087910162000664565b9250819262000656565b602289634e487b7160e01b5f525260245ffd5b90607f1690620000cf565b634e487b7160e01b5f52604160045260245ffd5b015190505f80620000a1565b90869350601f19831691865f52885f20925f5b8a828210620007175750508411620006ff575b505050811b018255620000b2565b01515f1983871b60f8161c191690555f8080620006f1565b8385015186558a97909501949384019301620006de565b909150845f52865f208880850160051c82019289861062000777575b918891869594930160051c01915b828110620007685750506200008b565b5f815585945088910162000758565b925081926200074a565b634e487b7160e01b5f52602260045260245ffd5b96607f169662000074565b5f80fd5b604081019081106001600160401b03821117620006ab57604052565b601f909101601f19168101906001600160401b03821190821017620006ab57604052565b90816020910312620007a057516001600160a01b0381168103620007a05790565b60405f80516020620038488339815191529160018060a01b0316805f526015602052815f20600160ff19825416179055815190815260016020820152a156fe60406080815260048036101561001e575b5050361561001c575f80fd5b005b5f91823560e01c91826302dbd8f814611bd057826306fdde0314611a87578263095ea7b314611a3f57826310d5de53146119d857826318160ddd1461199b5782631a8145bb1461195e57826323b872dd146118315782632be32b6114611725578263313ce567146116eb57826339509351146116715782634a62bb651461162c5782635c068a8c146115ef57826366ca9b831461155a57826366d602ae1461151d5782636a486a8e146114e05782636b2fb124146114a35782636ba631cf146114345782636ddd1713146113ef57826370a082311461138e578263715018a6146112f0578263751039fc1461126a5782637571336a14611101578263836d6210146110ae57826388e765ff146110715782638da5cb5b1461101e57826395d89b4114610ec6578263a457c2d714610dc5578263a9059cbb14610d76578263aa4bde2814610d39578263bbc0c74214610cf4578263be20747214610be5578263c024666814610b1a578263c18bc19514610a09578263c74c0fac146109bc578263cc2ffe7c1461097f578263d257b34f146107e0578263d826492014610793578263d85ba06314610756578263dc3f0d0f1461061e578263dd62ed3e146105aa578263e2f456051461056d578263f11a24d314610530578263f275f64b146103eb578263f2fde38b146102ad57508163f63743421461026c575063f9d0831a146102275780610010565b346102695760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261026957610266610261611d01565b612deb565b80f35b80fd5b9050346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906011549051908152f35b5080fd5b909150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e7576102e7611d01565b906102f0611d56565b73ffffffffffffffffffffffffffffffffffffffff809216928315610364575050600554827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b8280fd5b8390346102a95760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95780358015158091036103e757610430611d56565b600b549160ff8360a81c166104d357508360ff7601000000000000000000000000000000000000000000007fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089947fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff75ff00000000000000000000000000000000000000000060209660a81b16911617179182600b55519160a81c1615158152a180f35b60649060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601860248201527f43616e6e6f7420726520656e61626c652074726164696e6700000000000000006044820152fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090600e549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090600a549051908152f35b8382346102a957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957806020926105e6611d01565b6105ee611d24565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b9150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e75781359161065a611d56565b6002548080046001148115171561072a576103e8900483106106a85750816020917f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e9360075551908152a180f35b602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f77657260448201527f207468616e20302e3125000000000000000000000000000000000000000000006064820152fd5b6024856011847f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090600c549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209051737a250d5630b4cf539739df2c5dacb4c659f2488d8152f35b909150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e75780359161081d611d56565b6002548080046001148115171561095357620186a0810484106108d0576103e89004831161084d575050600a5580f35b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e312520746f74616c20737570706c792e0000000000000000000000006064820152fd5b60848360208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152fd5b6024856011857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906012549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209051735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f8152f35b9150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e757813591610a45611d56565b60025460038102908082046003149015171561072a576103e890048310610a985750816020917fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc9360085551908152a180f35b602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201527f6572207468616e20302e332500000000000000000000000000000000000000006064820152fd5b8382346102a957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9577f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df76020610b75611d01565b73ffffffffffffffffffffffffffffffffffffffff610b92611d47565b91610b9b611d56565b169384865260148352610bdb828288209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b519015158152a280f35b909150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e75773ffffffffffffffffffffffffffffffffffffffff610c34611d01565b610c3c611d56565b16918215610c97575050807fffffffffffffffffffffffff0000000000000000000000000000000000000000600b541617600b557ff831c06cd4b2ac674002cead2cb9164790c6b88036d7e239c82e586b4afafc798280a280f35b90602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601e60248201527f5f737065726d42616e6b20616464726573732063616e6e6f74206265203000006044820152fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209060ff600b5460a81c1690519015158152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906008549051908152f35b8382346102a957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090610dbe610db4611d01565b60243590336121c0565b5160018152f35b833461026957827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261026957610dfc611d01565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff86168252602052205490828210610e4357602085610dbe8585038733611e7d565b60849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957805191809380549160019083821c92828516948515611014575b6020958686108114610fe857858952908115610fa65750600114610f4e575b610f4a8787610f40828c0383611dd5565b5191829182611c9d565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610f935750505082610f4a94610f4092820101948680610f2f565b8054868501880152928601928101610f75565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168887015250505050151560051b8301019250610f4082610f4a8680610f2f565b6024846022857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f1693610f10565b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209073ffffffffffffffffffffffffffffffffffffffff600554169051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906006549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209073ffffffffffffffffffffffffffffffffffffffff600b54169051908152f35b8390346102a957827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957611139611d01565b611141611d47565b9161114a611d56565b82156111a7575b509273ffffffffffffffffffffffffffffffffffffffff6102669394168452601560205283209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b73ffffffffffffffffffffffffffffffffffffffff807f000000000000000000000000000000000000000000000000000000000000000016908316036111515760849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201527f6d61782074786e000000000000000000000000000000000000000000000000006064820152fd5b833461026957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610269576112a1611d56565b7fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff600b5416600b557fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c8180a180f35b833461026957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261026957611327611d56565b8073ffffffffffffffffffffffffffffffffffffffff6005547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b8382346102a95760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9578060209273ffffffffffffffffffffffffffffffffffffffff6113e0611d01565b16815280845220549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209060ff600b5460b01c1690519015158152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906010549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090600f549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906007549051908152f35b9150346103e757600f61158561156f36611c65565b90611578611d56565b80600d5581600e55611e43565b80600c5511611592578280f35b90602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090600d549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209060ff600b5460a01c1690519015158152f35b8382346102a957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957610dbe6020926116e46116b2611d01565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054611e43565b9033611e7d565b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020905160128152f35b9150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e757813591611761611d56565b6002548080046001148115171561072a576103e8900483106117af5750816020917ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de410099360065551908152a180f35b602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f7765722060448201527f7468616e20302e312500000000000000000000000000000000000000000000006064820152fd5b8390346102a95760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95761186a611d01565b611872611d24565b91846044359473ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118d8575b602086610dbe8787876121c0565b84821061190157509183916118f660209695610dbe95033383611e7d565b9193948193506118ca565b60649060208751917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906013549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906002549051908152f35b8382346102a95760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760ff8160209373ffffffffffffffffffffffffffffffffffffffff611a2c611d01565b1681526015855220541690519015158152f35b8382346102a957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090610dbe611a7d611d01565b6024359033611e7d565b9150346103e757827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e757805191836003549060019082821c928281168015611bc6575b6020958686108214611b9a5750848852908115611b5a5750600114611b01575b610f4a8686610f40828b0383611dd5565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611b475750505082610f4a94610f4092820101945f611af0565b8054868501880152928601928101611b2a565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001687860152505050151560051b8301019250610f4082610f4a5f611af0565b8360226024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f1693611ad0565b9150346103e757601e611bfb611be536611c65565b90611bee611d56565b8060105581601155611e43565b80600f5511611c08578280f35b90602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc6040910112611c99576004359060243590565b5f80fd5b6020808252825181830181905293925f5b858110611ced575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6040809697860101520116010190565b818101830151848201604001528201611cae565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203611c9957565b6024359073ffffffffffffffffffffffffffffffffffffffff82168203611c9957565b602435908115158203611c9957565b73ffffffffffffffffffffffffffffffffffffffff600554163303611d7757565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117611e1657604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b91908201809211611e5057565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b73ffffffffffffffffffffffffffffffffffffffff809116918215611f6b5716918215611ee75760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b81810292918115918404141715611e5057565b811561200b570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b1561203f57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b156120ca57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b1561215557565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152fd5b91908203918211611e5057565b919073ffffffffffffffffffffffffffffffffffffffff928381166121e6811515612038565b848316801515916121f6836120c3565b85156127b057600b549660ff93848960a01c1661245f575b5061227c975f9030825281602052856040832054600a5411159182612452575b505080612446575b8061241a575b80612404575b806123ee575b6123ae575b60019483825260146020528060408320541690811561239d575b50612395575b9361227e575b5050505061280e565b565b90612316949692917f0000000000000000000000000000000000000000000000000000000000000000168092148061238a575b15612330575050600f54915061230861230060646122cf8585611fee565b04936122f16122e9826122e460115489611fee565b612001565b601354611e43565b6013556122e460105486611fee565b601254611e43565b6012555b81612320576121b3565b915f808080612273565b61232b82308761280e565b6121b3565b148061237f575b1561230c57600c54915061237761230060646123538585611fee565b04936123686122e9826122e4600e5489611fee565b6013556122e4600d5486611fee565b60125561230c565b50600c541515612337565b50600f5415156122b1565b93508361226d565b90508482526040822054165f612267565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0060018160095416176009556123e261291e565b6009541660095561224d565b5083815260146020528460408220541615612248565b5082815260146020528460408220541615612242565b50817f00000000000000000000000000000000000000000000000000000000000000001683141561223c565b50846009541615612236565b60b01c169050855f61222e565b600554821683811415918291826127a5575b508161279d575b5080612791575b1561220e57848960a81c16156126a0575b50807f0000000000000000000000000000000000000000000000000000000000000000168083148061268a575b1561257c575060065487116124f85761227c97835f525f6020526124f26124e860405f20548a611e43565b600854101561214e565b9761220e565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d6178206275792e0000000000000000000000000000000000000000000000006064820152fd5b831480612674575b1561261f57600754871161259b5761227c976124f2565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61782073656c6c2e000000000000000000000000000000000000000000006064820152fd5b61227c975f8481526015602052856040822054161580612663575b612645575b506124f2565b6124e86040828761265d94528060205220548a611e43565b5f61263f565b50838152856040822054161561263a565b50815f5260156020528360405f20541615612584565b50835f5260156020528460405f205416156124bd565b825f5260156020528460405f2054168015612781575b15612723576126c5575f612490565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f54726164696e6720697320656e61626c656400000000000000000000000000006044820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152fd5b50835f528460405f2054166126b6565b5061dead84141561247f565b90505f612478565b86141591505f612471565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152fd5b73ffffffffffffffffffffffffffffffffffffffff80911691612832831515612038565b169161283f8315156120c3565b5f8281528060205260408120549180831061289a57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b5f308152602090808252604091828220549260135461293f60125482611e43565b9480158015612de3575b612ddb57600a54600a810290808204600a1490151715612dae578087918311612da4575b506122e4829361297c93611fee565b9061298c600192831c80926121b3565b835191606083019767ffffffffffffffff988481108a821117612d77578652600284528684019486368737845115612d4a573086528651947fad5c4648000000000000000000000000000000000000000000000000000000008652600496737a250d5630b4cf539739df2c5dacb4c659f2488d958a888a818a5afa978815612d40578c98612cf4575b508251841015612cc85773ffffffffffffffffffffffffffffffffffffffff8098168a840152863b15612cc457918b918a519384927f791ac94700000000000000000000000000000000000000000000000000000000845260a48401918c85015284602485015260a060448501525180915260c4830191908d8786915b838310612ca35750505050508190306064830152426084830152038183895af18015612c9957612c4a575b5088939291612aec612af292612ae64793612ada60125486611fee565b92601354901c906121b3565b90612001565b906121b3565b90836013558360125580151580612c41575b612b96575b50505080808093600b541647905af1503d15612b8f573d948511612b6357505192612b5b827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160185611dd5565b83523d92013e565b8360416024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050505050565b606092935060c49085600b541692885195869485937ff305d719000000000000000000000000000000000000000000000000000000008552308b86015260248501528c60448501528c606485015260848401524260a48401525af18015612c3757908691612c06575b8080612b09565b60608092503d8111612c30575b612c1d8183611dd5565b81010312612c2c57845f612bff565b8480fd5b503d612c13565b84513d88823e3d90fd5b50811515612b04565b8a819c9b9a929594939c11612c6d57875298999798979192909190612af2612abd565b6024826041897f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b88513d8c823e3d90fd5b9295509295509281908c875116815201940191019084928e9492878f612a92565b8b80fd5b60248c60328b7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b9097508a81813d8311612d39575b612d0c8183611dd5565b81010312612cc4575173ffffffffffffffffffffffffffffffffffffffff81168103612cc457965f612a15565b503d612d02565b8a513d8e823e3d90fd5b6024897f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6024897f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b91506122e461296d565b6024867f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b505050505050565b508515612949565b73ffffffffffffffffffffffffffffffffffffffff8060055416918233148015612fa0575b15612f42578116918215612f1e57506040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526020918282602481875afa908115612ee25783925f92612eed575b50604490600554165f60405196879485937fa9059cbb000000000000000000000000000000000000000000000000000000008552600485015260248401525af18015612ee257612eb4575050565b81813d8311612edb575b612ec88183611dd5565b81010312611c99575180151503611c9957565b503d612ebe565b6040513d5f823e3d90fd5b91909282813d8311612f17575b612f048183611dd5565b8101031261026957505182916044612e66565b503d612efa565b5f80935080925080914790828215612f39575bf115612ee257565b506108fc612f31565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4e6f7420617574686f72697a65640000000000000000000000000000000000006044820152fd5b5081600b54163314612e1056fea26469706673582212206da546dbdb8e42cdc698c06aefbf6fea9be51df7f8e565aa373353926c9c98a364736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746
Deployed Bytecode
0x60406080815260048036101561001e575b5050361561001c575f80fd5b005b5f91823560e01c91826302dbd8f814611bd057826306fdde0314611a87578263095ea7b314611a3f57826310d5de53146119d857826318160ddd1461199b5782631a8145bb1461195e57826323b872dd146118315782632be32b6114611725578263313ce567146116eb57826339509351146116715782634a62bb651461162c5782635c068a8c146115ef57826366ca9b831461155a57826366d602ae1461151d5782636a486a8e146114e05782636b2fb124146114a35782636ba631cf146114345782636ddd1713146113ef57826370a082311461138e578263715018a6146112f0578263751039fc1461126a5782637571336a14611101578263836d6210146110ae57826388e765ff146110715782638da5cb5b1461101e57826395d89b4114610ec6578263a457c2d714610dc5578263a9059cbb14610d76578263aa4bde2814610d39578263bbc0c74214610cf4578263be20747214610be5578263c024666814610b1a578263c18bc19514610a09578263c74c0fac146109bc578263cc2ffe7c1461097f578263d257b34f146107e0578263d826492014610793578263d85ba06314610756578263dc3f0d0f1461061e578263dd62ed3e146105aa578263e2f456051461056d578263f11a24d314610530578263f275f64b146103eb578263f2fde38b146102ad57508163f63743421461026c575063f9d0831a146102275780610010565b346102695760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261026957610266610261611d01565b612deb565b80f35b80fd5b9050346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906011549051908152f35b5080fd5b909150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e7576102e7611d01565b906102f0611d56565b73ffffffffffffffffffffffffffffffffffffffff809216928315610364575050600554827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b8280fd5b8390346102a95760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95780358015158091036103e757610430611d56565b600b549160ff8360a81c166104d357508360ff7601000000000000000000000000000000000000000000007fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089947fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff75ff00000000000000000000000000000000000000000060209660a81b16911617179182600b55519160a81c1615158152a180f35b60649060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601860248201527f43616e6e6f7420726520656e61626c652074726164696e6700000000000000006044820152fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090600e549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090600a549051908152f35b8382346102a957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957806020926105e6611d01565b6105ee611d24565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b9150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e75781359161065a611d56565b6002548080046001148115171561072a576103e8900483106106a85750816020917f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e9360075551908152a180f35b602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f77657260448201527f207468616e20302e3125000000000000000000000000000000000000000000006064820152fd5b6024856011847f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090600c549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209051737a250d5630b4cf539739df2c5dacb4c659f2488d8152f35b909150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e75780359161081d611d56565b6002548080046001148115171561095357620186a0810484106108d0576103e89004831161084d575050600a5580f35b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e312520746f74616c20737570706c792e0000000000000000000000006064820152fd5b60848360208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152fd5b6024856011857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906012549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209051735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f8152f35b9150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e757813591610a45611d56565b60025460038102908082046003149015171561072a576103e890048310610a985750816020917fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc9360085551908152a180f35b602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201527f6572207468616e20302e332500000000000000000000000000000000000000006064820152fd5b8382346102a957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9577f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df76020610b75611d01565b73ffffffffffffffffffffffffffffffffffffffff610b92611d47565b91610b9b611d56565b169384865260148352610bdb828288209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b519015158152a280f35b909150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e75773ffffffffffffffffffffffffffffffffffffffff610c34611d01565b610c3c611d56565b16918215610c97575050807fffffffffffffffffffffffff0000000000000000000000000000000000000000600b541617600b557ff831c06cd4b2ac674002cead2cb9164790c6b88036d7e239c82e586b4afafc798280a280f35b90602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601e60248201527f5f737065726d42616e6b20616464726573732063616e6e6f74206265203000006044820152fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209060ff600b5460a81c1690519015158152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906008549051908152f35b8382346102a957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090610dbe610db4611d01565b60243590336121c0565b5160018152f35b833461026957827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261026957610dfc611d01565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff86168252602052205490828210610e4357602085610dbe8585038733611e7d565b60849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957805191809380549160019083821c92828516948515611014575b6020958686108114610fe857858952908115610fa65750600114610f4e575b610f4a8787610f40828c0383611dd5565b5191829182611c9d565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610f935750505082610f4a94610f4092820101948680610f2f565b8054868501880152928601928101610f75565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168887015250505050151560051b8301019250610f4082610f4a8680610f2f565b6024846022857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f1693610f10565b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209073ffffffffffffffffffffffffffffffffffffffff600554169051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906006549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209073ffffffffffffffffffffffffffffffffffffffff600b54169051908152f35b8390346102a957827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957611139611d01565b611141611d47565b9161114a611d56565b82156111a7575b509273ffffffffffffffffffffffffffffffffffffffff6102669394168452601560205283209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b73ffffffffffffffffffffffffffffffffffffffff807f00000000000000000000000006c0ef6bcaf327067ea24fdbb732fe8aeb668b2416908316036111515760849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201527f6d61782074786e000000000000000000000000000000000000000000000000006064820152fd5b833461026957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610269576112a1611d56565b7fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff600b5416600b557fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c8180a180f35b833461026957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261026957611327611d56565b8073ffffffffffffffffffffffffffffffffffffffff6005547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b8382346102a95760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9578060209273ffffffffffffffffffffffffffffffffffffffff6113e0611d01565b16815280845220549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209060ff600b5460b01c1690519015158152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020905173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000006c0ef6bcaf327067ea24fdbb732fe8aeb668b24168152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906010549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090600f549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906007549051908152f35b9150346103e757600f61158561156f36611c65565b90611578611d56565b80600d5581600e55611e43565b80600c5511611592578280f35b90602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090600d549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760209060ff600b5460a01c1690519015158152f35b8382346102a957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957610dbe6020926116e46116b2611d01565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054611e43565b9033611e7d565b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020905160128152f35b9150346103e75760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e757813591611761611d56565b6002548080046001148115171561072a576103e8900483106117af5750816020917ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de410099360065551908152a180f35b602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f7765722060448201527f7468616e20302e312500000000000000000000000000000000000000000000006064820152fd5b8390346102a95760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95761186a611d01565b611872611d24565b91846044359473ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118d8575b602086610dbe8787876121c0565b84821061190157509183916118f660209695610dbe95033383611e7d565b9193948193506118ca565b60649060208751917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906013549051908152f35b8382346102a957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a9576020906002549051908152f35b8382346102a95760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a95760ff8160209373ffffffffffffffffffffffffffffffffffffffff611a2c611d01565b1681526015855220541690519015158152f35b8382346102a957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102a957602090610dbe611a7d611d01565b6024359033611e7d565b9150346103e757827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103e757805191836003549060019082821c928281168015611bc6575b6020958686108214611b9a5750848852908115611b5a5750600114611b01575b610f4a8686610f40828b0383611dd5565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611b475750505082610f4a94610f4092820101945f611af0565b8054868501880152928601928101611b2a565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001687860152505050151560051b8301019250610f4082610f4a5f611af0565b8360226024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f1693611ad0565b9150346103e757601e611bfb611be536611c65565b90611bee611d56565b8060105581601155611e43565b80600f5511611c08578280f35b90602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc6040910112611c99576004359060243590565b5f80fd5b6020808252825181830181905293925f5b858110611ced575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6040809697860101520116010190565b818101830151848201604001528201611cae565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203611c9957565b6024359073ffffffffffffffffffffffffffffffffffffffff82168203611c9957565b602435908115158203611c9957565b73ffffffffffffffffffffffffffffffffffffffff600554163303611d7757565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117611e1657604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b91908201809211611e5057565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b73ffffffffffffffffffffffffffffffffffffffff809116918215611f6b5716918215611ee75760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b81810292918115918404141715611e5057565b811561200b570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b1561203f57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b156120ca57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b1561215557565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152fd5b91908203918211611e5057565b919073ffffffffffffffffffffffffffffffffffffffff928381166121e6811515612038565b848316801515916121f6836120c3565b85156127b057600b549660ff93848960a01c1661245f575b5061227c975f9030825281602052856040832054600a5411159182612452575b505080612446575b8061241a575b80612404575b806123ee575b6123ae575b60019483825260146020528060408320541690811561239d575b50612395575b9361227e575b5050505061280e565b565b90612316949692917f00000000000000000000000006c0ef6bcaf327067ea24fdbb732fe8aeb668b24168092148061238a575b15612330575050600f54915061230861230060646122cf8585611fee565b04936122f16122e9826122e460115489611fee565b612001565b601354611e43565b6013556122e460105486611fee565b601254611e43565b6012555b81612320576121b3565b915f808080612273565b61232b82308761280e565b6121b3565b148061237f575b1561230c57600c54915061237761230060646123538585611fee565b04936123686122e9826122e4600e5489611fee565b6013556122e4600d5486611fee565b60125561230c565b50600c541515612337565b50600f5415156122b1565b93508361226d565b90508482526040822054165f612267565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0060018160095416176009556123e261291e565b6009541660095561224d565b5083815260146020528460408220541615612248565b5082815260146020528460408220541615612242565b50817f00000000000000000000000006c0ef6bcaf327067ea24fdbb732fe8aeb668b241683141561223c565b50846009541615612236565b60b01c169050855f61222e565b600554821683811415918291826127a5575b508161279d575b5080612791575b1561220e57848960a81c16156126a0575b50807f00000000000000000000000006c0ef6bcaf327067ea24fdbb732fe8aeb668b24168083148061268a575b1561257c575060065487116124f85761227c97835f525f6020526124f26124e860405f20548a611e43565b600854101561214e565b9761220e565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d6178206275792e0000000000000000000000000000000000000000000000006064820152fd5b831480612674575b1561261f57600754871161259b5761227c976124f2565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61782073656c6c2e000000000000000000000000000000000000000000006064820152fd5b61227c975f8481526015602052856040822054161580612663575b612645575b506124f2565b6124e86040828761265d94528060205220548a611e43565b5f61263f565b50838152856040822054161561263a565b50815f5260156020528360405f20541615612584565b50835f5260156020528460405f205416156124bd565b825f5260156020528460405f2054168015612781575b15612723576126c5575f612490565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f54726164696e6720697320656e61626c656400000000000000000000000000006044820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152fd5b50835f528460405f2054166126b6565b5061dead84141561247f565b90505f612478565b86141591505f612471565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152fd5b73ffffffffffffffffffffffffffffffffffffffff80911691612832831515612038565b169161283f8315156120c3565b5f8281528060205260408120549180831061289a57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b5f308152602090808252604091828220549260135461293f60125482611e43565b9480158015612de3575b612ddb57600a54600a810290808204600a1490151715612dae578087918311612da4575b506122e4829361297c93611fee565b9061298c600192831c80926121b3565b835191606083019767ffffffffffffffff988481108a821117612d77578652600284528684019486368737845115612d4a573086528651947fad5c4648000000000000000000000000000000000000000000000000000000008652600496737a250d5630b4cf539739df2c5dacb4c659f2488d958a888a818a5afa978815612d40578c98612cf4575b508251841015612cc85773ffffffffffffffffffffffffffffffffffffffff8098168a840152863b15612cc457918b918a519384927f791ac94700000000000000000000000000000000000000000000000000000000845260a48401918c85015284602485015260a060448501525180915260c4830191908d8786915b838310612ca35750505050508190306064830152426084830152038183895af18015612c9957612c4a575b5088939291612aec612af292612ae64793612ada60125486611fee565b92601354901c906121b3565b90612001565b906121b3565b90836013558360125580151580612c41575b612b96575b50505080808093600b541647905af1503d15612b8f573d948511612b6357505192612b5b827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160185611dd5565b83523d92013e565b8360416024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050505050565b606092935060c49085600b541692885195869485937ff305d719000000000000000000000000000000000000000000000000000000008552308b86015260248501528c60448501528c606485015260848401524260a48401525af18015612c3757908691612c06575b8080612b09565b60608092503d8111612c30575b612c1d8183611dd5565b81010312612c2c57845f612bff565b8480fd5b503d612c13565b84513d88823e3d90fd5b50811515612b04565b8a819c9b9a929594939c11612c6d57875298999798979192909190612af2612abd565b6024826041897f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b88513d8c823e3d90fd5b9295509295509281908c875116815201940191019084928e9492878f612a92565b8b80fd5b60248c60328b7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b9097508a81813d8311612d39575b612d0c8183611dd5565b81010312612cc4575173ffffffffffffffffffffffffffffffffffffffff81168103612cc457965f612a15565b503d612d02565b8a513d8e823e3d90fd5b6024897f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6024897f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b91506122e461296d565b6024867f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b505050505050565b508515612949565b73ffffffffffffffffffffffffffffffffffffffff8060055416918233148015612fa0575b15612f42578116918215612f1e57506040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526020918282602481875afa908115612ee25783925f92612eed575b50604490600554165f60405196879485937fa9059cbb000000000000000000000000000000000000000000000000000000008552600485015260248401525af18015612ee257612eb4575050565b81813d8311612edb575b612ec88183611dd5565b81010312611c99575180151503611c9957565b503d612ebe565b6040513d5f823e3d90fd5b91909282813d8311612f17575b612f048183611dd5565b8101031261026957505182916044612e66565b503d612efa565b5f80935080925080914790828215612f39575bf115612ee257565b506108fc612f31565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4e6f7420617574686f72697a65640000000000000000000000000000000000006044820152fd5b5081600b54163314612e1056fea26469706673582212206da546dbdb8e42cdc698c06aefbf6fea9be51df7f8e565aa373353926c9c98a364736f6c63430008140033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.