ERC-20
Overview
Max Total Supply
100,000,000,000 KKF
Holders
97
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
84,913,043.64 KKFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KaiKenToken
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; interface IAntisnipe { function assureCanTransfer( address sender, address from, address to, uint256 amount ) external; } interface IUniswapV2Pair { function price0CumulativeLast() external view returns (uint256); } contract KaiKenToken is ERC20, Ownable { using SafeERC20 for IERC20; uint256 public constant totalSupply_ = 100_000_000_000 ether; IAntisnipe public antisnipe; bool public antisnipeDisable; uint16 public buyTax; uint16 public sellTax; uint16 public transferTax; address public taxRecipient; mapping(address => bool) public taxExcluded; function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override { if ( from == address(0) || to == address(0) || from == address(this) || to == address(this) || to == taxRecipient ) return; if (!antisnipeDisable && address(antisnipe) != address(0)) antisnipe.assureCanTransfer(msg.sender, from, to, amount); } function _afterTokenTransfer( address from, address to, uint256 amount ) internal override { if ( from == address(0) || from == address(this) || to == address(this) || to == taxRecipient ) { return; } if (taxExcluded[to] || taxExcluded[from]) { return; } uint256 tax; if (_isPair(from)) { // buy tax = (amount * buyTax) / 100; } else if (_isPair(to)) { // sell tax = (amount * sellTax) / 100; } else { // transfer tax = (amount * transferTax) / 100; } _transfer(to, taxRecipient, tax); } /// @dev Returns true if the address is a Uniswap V2-like pair. function _isPair(address user) internal view returns (bool) { if (user.code.length == 0) return false; try IUniswapV2Pair(user).price0CumulativeLast() returns (uint256) { return true; } catch { return false; } } function setTaxExcluded(address[] memory addrs, bool excluded) external onlyOwner { uint256 length = addrs.length; for (uint256 i = 0; i < length; ++i) { address addr = addrs[i]; require(addr != address(0) && addr != address(this)); taxExcluded[addr] = excluded; } } function setBuyTax(uint16 buyTax_) external onlyOwner { require(buyTax_ < 100, 'buy tax too high'); buyTax = buyTax_; } function setSellTax(uint16 sellTax_) external onlyOwner { require(sellTax_ < 100, 'sell tax too high'); sellTax = sellTax_; } function setTransferTax(uint16 transferTax_) external onlyOwner { require(transferTax_ < 100, 'transfer tax too high'); transferTax = transferTax_; } function setTaxRecipient(address addr) external onlyOwner { require(addr != address(0) && addr != address(this)); taxRecipient = addr; } function setAntisnipeDisable() external onlyOwner { require(!antisnipeDisable); antisnipeDisable = true; } function setAntisnipeAddress(address addr) external onlyOwner { antisnipe = IAntisnipe(addr); } constructor( uint256 buyTax_, uint256 sellTax_, uint256 transferTax_, address taxRecipient_ ) ERC20('KaiKen', 'KKF') { require(buyTax_ < 100, 'buy tax too high'); require(sellTax_ < 100, 'sell tax too high'); require(transferTax_ < 100, 'transfer tax too high'); require( taxRecipient_ != address(0) && taxRecipient_ != address(this), 'bad recipient' ); buyTax = uint16(buyTax_); sellTax = uint16(sellTax_); transferTax = uint16(transferTax_); taxRecipient = taxRecipient_; _mint(msg.sender, totalSupply_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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.6.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.zeppelin.solutions/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 `sender` to `recipient`. * * 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; } _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; _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; } _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 (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 (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 v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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; } }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"buyTax_","type":"uint256"},{"internalType":"uint256","name":"sellTax_","type":"uint256"},{"internalType":"uint256","name":"transferTax_","type":"uint256"},{"internalType":"address","name":"taxRecipient_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"antisnipe","outputs":[{"internalType":"contract IAntisnipe","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antisnipeDisable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buyTax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setAntisnipeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setAntisnipeDisable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"buyTax_","type":"uint16"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"sellTax_","type":"uint16"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setTaxExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setTaxRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"transferTax_","type":"uint16"}],"name":"setTransferTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001fce38038062001fce833981016040819052620000349162000897565b6040518060400160405280600681526020016525b0b4a5b2b760d11b8152506040518060400160405280600381526020016225a5a360e91b81525081600390816200008091906200098c565b5060046200008f82826200098c565b505050620000ac620000a66200027560201b60201c565b62000279565b60648410620000f55760405162461bcd60e51b815260206004820152601060248201526f0c4eaf240e8c2f040e8dede40d0d2ced60831b60448201526064015b60405180910390fd5b606483106200013b5760405162461bcd60e51b81526020600482015260116024820152700e6cad8d840e8c2f040e8dede40d0d2ced607b1b6044820152606401620000ec565b606482106200018d5760405162461bcd60e51b815260206004820152601560248201527f7472616e736665722074617820746f6f206869676800000000000000000000006044820152606401620000ec565b6001600160a01b03811615801590620001af57506001600160a01b0381163014155b620001ed5760405162461bcd60e51b815260206004820152600d60248201526c189859081c9958da5c1a595b9d609a1b6044820152606401620000ec565b6006805463ffffffff60a81b1916600160a81b61ffff8781169190910261ffff60b81b191691909117600160b81b868316021761ffff60c81b1916600160c81b91851691909102179055600780546001600160a01b0319166001600160a01b0383161790556200026b336c01431e0fae6d7217caa0000000620002cb565b5050505062000ae8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003235760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000ec565b6200033160008383620003bb565b806002600082825462000345919062000a6e565b90915550506001600160a01b038216600090815260208190526040812080548392906200037490849062000a6e565b90915550506040518181526001600160a01b0383169060009060008051602062001fae8339815191529060200160405180910390a3620003b760008383620004cc565b5050565b6001600160a01b0383161580620003d957506001600160a01b038216155b80620003ed57506001600160a01b03831630145b806200040157506001600160a01b03821630145b806200041a57506007546001600160a01b038381169116145b156200042557505050565b600654600160a01b900460ff161580156200044a57506006546001600160a01b031615155b15620004c757600654604051635d37a8dd60e01b81523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690635d37a8dd90608401600060405180830381600087803b158015620004ad57600080fd5b505af1158015620004c2573d6000803e3d6000fd5b505050505b505050565b6001600160a01b0383161580620004eb57506001600160a01b03831630145b80620004ff57506001600160a01b03821630145b806200051857506007546001600160a01b038381169116145b156200052357505050565b6001600160a01b03821660009081526008602052604090205460ff16806200056357506001600160a01b03831660009081526008602052604090205460ff165b156200056e57505050565b60006200057b846200062c565b15620005b2576006546064906200059e90600160a81b900461ffff168462000a89565b620005aa919062000aab565b90506200060c565b620005bd836200062c565b15620005e0576006546064906200059e90600160b81b900461ffff168462000a89565b600654606490620005fd90600160c81b900461ffff168462000a89565b62000609919062000aab565b90505b600754620006269084906001600160a01b031683620006bc565b50505050565b6000816001600160a01b03163b6000036200064957506000919050565b816001600160a01b0316635909c0d56040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015620006a6575060408051601f3d908101601f19168201909252620006a39181019062000ace565b60015b620006b357506000919050565b50600192915050565b6001600160a01b038316620007225760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401620000ec565b6001600160a01b038216620007865760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401620000ec565b62000793838383620003bb565b6001600160a01b038316600090815260208190526040902054818110156200080d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401620000ec565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906200084690849062000a6e565b92505081905550826001600160a01b0316846001600160a01b031660008051602062001fae833981519152846040516200088291815260200190565b60405180910390a362000626848484620004cc565b60008060008060808587031215620008ae57600080fd5b845160208601516040870151606088015192965090945092506001600160a01b0381168114620008dd57600080fd5b939692955090935050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200091357607f821691505b6020821081036200093457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004c757600081815260208120601f850160051c81016020861015620009635750805b601f850160051c820191505b8181101562000984578281556001016200096f565b505050505050565b81516001600160401b03811115620009a857620009a8620008e8565b620009c081620009b98454620008fe565b846200093a565b602080601f831160018114620009f85760008415620009df5750858301515b600019600386901b1c1916600185901b17855562000984565b600085815260208120601f198616915b8281101562000a295788860151825594840194600190910190840162000a08565b508582101562000a485787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000a845762000a8462000a58565b500190565b600081600019048311821515161562000aa65762000aa662000a58565b500290565b60008262000ac957634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121562000ae157600080fd5b5051919050565b6114b68062000af86000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806374fb20e111610104578063a457c2d7116100a2578063cc1776d311610071578063cc1776d3146103fa578063dd62ed3e1461040f578063e1e144de14610422578063f2fde38b1461043657600080fd5b8063a457c2d7146103ae578063a9059cbb146103c1578063bf5ee5be146103d4578063c3b045e4146103e757600080fd5b8063882cfb3f116100de578063882cfb3f1461036f5780638da5cb5b1461038257806395d89b41146103935780639c138b7b1461039b57600080fd5b806374fb20e11461033f57806378e3079e146103475780638124f7ac1461035a57600080fd5b80633950935111610171578063611bf6291161014b578063611bf629146102d057806370a08231146102e3578063715018a61461030c578063737ea06e1461031457600080fd5b8063395093511461027257806339b622d3146102855780634f7041a5146102a857600080fd5b806318160ddd116101ad57806318160ddd1461022a57806323b872dd1461023c578063313ce5671461024f578063324536eb1461025e57600080fd5b806306fdde03146101d4578063095ea7b3146101f257806309dcb7b014610215575b600080fd5b6101dc610449565b6040516101e99190611112565b60405180910390f35b61020561020036600461117e565b6104db565b60405190151581526020016101e9565b6102286102233660046111a8565b6104f3565b005b6002545b6040519081526020016101e9565b61020561024a3660046111d3565b610594565b604051601281526020016101e9565b61022e6c01431e0fae6d7217caa000000081565b61020561028036600461117e565b6105b8565b61020561029336600461120f565b60086020526000908152604090205460ff1681565b6006546102bd90600160a81b900461ffff1681565b60405161ffff90911681526020016101e9565b6102286102de36600461120f565b6105da565b61022e6102f136600461120f565b6001600160a01b031660009081526020819052604090205490565b610228610626565b600754610327906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b61022861065c565b61022861035536600461120f565b6106b2565b6006546102bd90600160c81b900461ffff1681565b600654610327906001600160a01b031681565b6005546001600160a01b0316610327565b6101dc610728565b6102286103a93660046111a8565b610737565b6102056103bc36600461117e565b6107cb565b6102056103cf36600461117e565b610846565b6102286103e2366004611250565b610854565b6102286103f53660046111a8565b610917565b6006546102bd90600160b81b900461ffff1681565b61022e61041d366004611327565b6109aa565b60065461020590600160a01b900460ff1681565b61022861044436600461120f565b6109d5565b6060600380546104589061135a565b80601f01602080910402602001604051908101604052809291908181526020018280546104849061135a565b80156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b5050505050905090565b6000336104e9818585610a70565b5060019392505050565b6005546001600160a01b031633146105265760405162461bcd60e51b815260040161051d90611394565b60405180910390fd5b60648161ffff16106105725760405162461bcd60e51b81526020600482015260156024820152740e8e4c2dce6cccae440e8c2f040e8dede40d0d2ced605b1b604482015260640161051d565b6006805461ffff909216600160c81b0261ffff60c81b19909216919091179055565b6000336105a2858285610b94565b6105ad858585610c08565b506001949350505050565b6000336104e98185856105cb83836109aa565b6105d591906113df565b610a70565b6005546001600160a01b031633146106045760405162461bcd60e51b815260040161051d90611394565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146106505760405162461bcd60e51b815260040161051d90611394565b61065a6000610de7565b565b6005546001600160a01b031633146106865760405162461bcd60e51b815260040161051d90611394565b600654600160a01b900460ff161561069d57600080fd5b6006805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146106dc5760405162461bcd60e51b815260040161051d90611394565b6001600160a01b038116158015906106fd57506001600160a01b0381163014155b61070657600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546104589061135a565b6005546001600160a01b031633146107615760405162461bcd60e51b815260040161051d90611394565b60648161ffff16106107a95760405162461bcd60e51b81526020600482015260116024820152700e6cad8d840e8c2f040e8dede40d0d2ced607b1b604482015260640161051d565b6006805461ffff909216600160b81b0261ffff60b81b19909216919091179055565b600033816107d982866109aa565b9050838110156108395760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161051d565b6105ad8286868403610a70565b6000336104e9818585610c08565b6005546001600160a01b0316331461087e5760405162461bcd60e51b815260040161051d90611394565b815160005b8181101561091157600084828151811061089f5761089f6113f7565b6020026020010151905060006001600160a01b0316816001600160a01b0316141580156108d557506001600160a01b0381163014155b6108de57600080fd5b6001600160a01b03166000908152600860205260409020805460ff191684151517905561090a8161140d565b9050610883565b50505050565b6005546001600160a01b031633146109415760405162461bcd60e51b815260040161051d90611394565b60648161ffff16106109885760405162461bcd60e51b815260206004820152601060248201526f0c4eaf240e8c2f040e8dede40d0d2ced60831b604482015260640161051d565b6006805461ffff909216600160a81b0261ffff60a81b19909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146109ff5760405162461bcd60e51b815260040161051d90611394565b6001600160a01b038116610a645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161051d565b610a6d81610de7565b50565b6001600160a01b038316610ad25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161051d565b6001600160a01b038216610b335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161051d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610ba084846109aa565b905060001981146109115781811015610bfb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161051d565b6109118484848403610a70565b6001600160a01b038316610c6c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161051d565b6001600160a01b038216610cce5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161051d565b610cd9838383610e39565b6001600160a01b03831660009081526020819052604090205481811015610d515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161051d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d889084906113df565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dd491815260200190565b60405180910390a3610911848484610f41565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383161580610e5657506001600160a01b038216155b80610e6957506001600160a01b03831630145b80610e7c57506001600160a01b03821630145b80610e9457506007546001600160a01b038381169116145b15610e9e57505050565b600654600160a01b900460ff16158015610ec257506006546001600160a01b031615155b15610f3c57600654604051635d37a8dd60e01b81523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690635d37a8dd90608401600060405180830381600087803b158015610f2357600080fd5b505af1158015610f37573d6000803e3d6000fd5b505050505b505050565b6001600160a01b0383161580610f5f57506001600160a01b03831630145b80610f7257506001600160a01b03821630145b80610f8a57506007546001600160a01b038381169116145b15610f9457505050565b6001600160a01b03821660009081526008602052604090205460ff1680610fd357506001600160a01b03831660009081526008602052604090205460ff165b15610fdd57505050565b6000610fe884611082565b156110195760065460649061100890600160a81b900461ffff1684611426565b6110129190611445565b905061106a565b61102283611082565b156110425760065460649061100890600160b81b900461ffff1684611426565b60065460649061105d90600160c81b900461ffff1684611426565b6110679190611445565b90505b6007546109119084906001600160a01b031683610c08565b6000816001600160a01b03163b60000361109e57506000919050565b816001600160a01b0316635909c0d56040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156110f8575060408051601f3d908101601f191682019092526110f591810190611467565b60015b61110457506000919050565b50600192915050565b919050565b600060208083528351808285015260005b8181101561113f57858101830151858201604001528201611123565b81811115611151576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461110d57600080fd5b6000806040838503121561119157600080fd5b61119a83611167565b946020939093013593505050565b6000602082840312156111ba57600080fd5b813561ffff811681146111cc57600080fd5b9392505050565b6000806000606084860312156111e857600080fd5b6111f184611167565b92506111ff60208501611167565b9150604084013590509250925092565b60006020828403121561122157600080fd5b6111cc82611167565b634e487b7160e01b600052604160045260246000fd5b8035801515811461110d57600080fd5b6000806040838503121561126357600080fd5b823567ffffffffffffffff8082111561127b57600080fd5b818501915085601f83011261128f57600080fd5b81356020828211156112a3576112a361122a565b8160051b604051601f19603f830116810181811086821117156112c8576112c861122a565b6040529283528183019350848101820192898411156112e657600080fd5b948201945b8386101561130b576112fc86611167565b855294820194938201936112eb565b965061131a9050878201611240565b9450505050509250929050565b6000806040838503121561133a57600080fd5b61134383611167565b915061135160208401611167565b90509250929050565b600181811c9082168061136e57607f821691505b60208210810361138e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156113f2576113f26113c9565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161141f5761141f6113c9565b5060010190565b6000816000190483118215151615611440576114406113c9565b500290565b60008261146257634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561147957600080fd5b505191905056fea264697066735822122030fd16298d8a11054919d8b509f4b283eddfc362a38539ce755bb24a42319c7164736f6c634300080f0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000070000000000000000000000009ef94d54cadb6a8d6a918ba937777cfc1fed1292
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806374fb20e111610104578063a457c2d7116100a2578063cc1776d311610071578063cc1776d3146103fa578063dd62ed3e1461040f578063e1e144de14610422578063f2fde38b1461043657600080fd5b8063a457c2d7146103ae578063a9059cbb146103c1578063bf5ee5be146103d4578063c3b045e4146103e757600080fd5b8063882cfb3f116100de578063882cfb3f1461036f5780638da5cb5b1461038257806395d89b41146103935780639c138b7b1461039b57600080fd5b806374fb20e11461033f57806378e3079e146103475780638124f7ac1461035a57600080fd5b80633950935111610171578063611bf6291161014b578063611bf629146102d057806370a08231146102e3578063715018a61461030c578063737ea06e1461031457600080fd5b8063395093511461027257806339b622d3146102855780634f7041a5146102a857600080fd5b806318160ddd116101ad57806318160ddd1461022a57806323b872dd1461023c578063313ce5671461024f578063324536eb1461025e57600080fd5b806306fdde03146101d4578063095ea7b3146101f257806309dcb7b014610215575b600080fd5b6101dc610449565b6040516101e99190611112565b60405180910390f35b61020561020036600461117e565b6104db565b60405190151581526020016101e9565b6102286102233660046111a8565b6104f3565b005b6002545b6040519081526020016101e9565b61020561024a3660046111d3565b610594565b604051601281526020016101e9565b61022e6c01431e0fae6d7217caa000000081565b61020561028036600461117e565b6105b8565b61020561029336600461120f565b60086020526000908152604090205460ff1681565b6006546102bd90600160a81b900461ffff1681565b60405161ffff90911681526020016101e9565b6102286102de36600461120f565b6105da565b61022e6102f136600461120f565b6001600160a01b031660009081526020819052604090205490565b610228610626565b600754610327906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b61022861065c565b61022861035536600461120f565b6106b2565b6006546102bd90600160c81b900461ffff1681565b600654610327906001600160a01b031681565b6005546001600160a01b0316610327565b6101dc610728565b6102286103a93660046111a8565b610737565b6102056103bc36600461117e565b6107cb565b6102056103cf36600461117e565b610846565b6102286103e2366004611250565b610854565b6102286103f53660046111a8565b610917565b6006546102bd90600160b81b900461ffff1681565b61022e61041d366004611327565b6109aa565b60065461020590600160a01b900460ff1681565b61022861044436600461120f565b6109d5565b6060600380546104589061135a565b80601f01602080910402602001604051908101604052809291908181526020018280546104849061135a565b80156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b5050505050905090565b6000336104e9818585610a70565b5060019392505050565b6005546001600160a01b031633146105265760405162461bcd60e51b815260040161051d90611394565b60405180910390fd5b60648161ffff16106105725760405162461bcd60e51b81526020600482015260156024820152740e8e4c2dce6cccae440e8c2f040e8dede40d0d2ced605b1b604482015260640161051d565b6006805461ffff909216600160c81b0261ffff60c81b19909216919091179055565b6000336105a2858285610b94565b6105ad858585610c08565b506001949350505050565b6000336104e98185856105cb83836109aa565b6105d591906113df565b610a70565b6005546001600160a01b031633146106045760405162461bcd60e51b815260040161051d90611394565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146106505760405162461bcd60e51b815260040161051d90611394565b61065a6000610de7565b565b6005546001600160a01b031633146106865760405162461bcd60e51b815260040161051d90611394565b600654600160a01b900460ff161561069d57600080fd5b6006805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146106dc5760405162461bcd60e51b815260040161051d90611394565b6001600160a01b038116158015906106fd57506001600160a01b0381163014155b61070657600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546104589061135a565b6005546001600160a01b031633146107615760405162461bcd60e51b815260040161051d90611394565b60648161ffff16106107a95760405162461bcd60e51b81526020600482015260116024820152700e6cad8d840e8c2f040e8dede40d0d2ced607b1b604482015260640161051d565b6006805461ffff909216600160b81b0261ffff60b81b19909216919091179055565b600033816107d982866109aa565b9050838110156108395760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161051d565b6105ad8286868403610a70565b6000336104e9818585610c08565b6005546001600160a01b0316331461087e5760405162461bcd60e51b815260040161051d90611394565b815160005b8181101561091157600084828151811061089f5761089f6113f7565b6020026020010151905060006001600160a01b0316816001600160a01b0316141580156108d557506001600160a01b0381163014155b6108de57600080fd5b6001600160a01b03166000908152600860205260409020805460ff191684151517905561090a8161140d565b9050610883565b50505050565b6005546001600160a01b031633146109415760405162461bcd60e51b815260040161051d90611394565b60648161ffff16106109885760405162461bcd60e51b815260206004820152601060248201526f0c4eaf240e8c2f040e8dede40d0d2ced60831b604482015260640161051d565b6006805461ffff909216600160a81b0261ffff60a81b19909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146109ff5760405162461bcd60e51b815260040161051d90611394565b6001600160a01b038116610a645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161051d565b610a6d81610de7565b50565b6001600160a01b038316610ad25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161051d565b6001600160a01b038216610b335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161051d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610ba084846109aa565b905060001981146109115781811015610bfb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161051d565b6109118484848403610a70565b6001600160a01b038316610c6c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161051d565b6001600160a01b038216610cce5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161051d565b610cd9838383610e39565b6001600160a01b03831660009081526020819052604090205481811015610d515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161051d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d889084906113df565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dd491815260200190565b60405180910390a3610911848484610f41565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383161580610e5657506001600160a01b038216155b80610e6957506001600160a01b03831630145b80610e7c57506001600160a01b03821630145b80610e9457506007546001600160a01b038381169116145b15610e9e57505050565b600654600160a01b900460ff16158015610ec257506006546001600160a01b031615155b15610f3c57600654604051635d37a8dd60e01b81523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690635d37a8dd90608401600060405180830381600087803b158015610f2357600080fd5b505af1158015610f37573d6000803e3d6000fd5b505050505b505050565b6001600160a01b0383161580610f5f57506001600160a01b03831630145b80610f7257506001600160a01b03821630145b80610f8a57506007546001600160a01b038381169116145b15610f9457505050565b6001600160a01b03821660009081526008602052604090205460ff1680610fd357506001600160a01b03831660009081526008602052604090205460ff165b15610fdd57505050565b6000610fe884611082565b156110195760065460649061100890600160a81b900461ffff1684611426565b6110129190611445565b905061106a565b61102283611082565b156110425760065460649061100890600160b81b900461ffff1684611426565b60065460649061105d90600160c81b900461ffff1684611426565b6110679190611445565b90505b6007546109119084906001600160a01b031683610c08565b6000816001600160a01b03163b60000361109e57506000919050565b816001600160a01b0316635909c0d56040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156110f8575060408051601f3d908101601f191682019092526110f591810190611467565b60015b61110457506000919050565b50600192915050565b919050565b600060208083528351808285015260005b8181101561113f57858101830151858201604001528201611123565b81811115611151576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461110d57600080fd5b6000806040838503121561119157600080fd5b61119a83611167565b946020939093013593505050565b6000602082840312156111ba57600080fd5b813561ffff811681146111cc57600080fd5b9392505050565b6000806000606084860312156111e857600080fd5b6111f184611167565b92506111ff60208501611167565b9150604084013590509250925092565b60006020828403121561122157600080fd5b6111cc82611167565b634e487b7160e01b600052604160045260246000fd5b8035801515811461110d57600080fd5b6000806040838503121561126357600080fd5b823567ffffffffffffffff8082111561127b57600080fd5b818501915085601f83011261128f57600080fd5b81356020828211156112a3576112a361122a565b8160051b604051601f19603f830116810181811086821117156112c8576112c861122a565b6040529283528183019350848101820192898411156112e657600080fd5b948201945b8386101561130b576112fc86611167565b855294820194938201936112eb565b965061131a9050878201611240565b9450505050509250929050565b6000806040838503121561133a57600080fd5b61134383611167565b915061135160208401611167565b90509250929050565b600181811c9082168061136e57607f821691505b60208210810361138e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156113f2576113f26113c9565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161141f5761141f6113c9565b5060010190565b6000816000190483118215151615611440576114406113c9565b500290565b60008261146257634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561147957600080fd5b505191905056fea264697066735822122030fd16298d8a11054919d8b509f4b283eddfc362a38539ce755bb24a42319c7164736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000070000000000000000000000009ef94d54cadb6a8d6a918ba937777cfc1fed1292
-----Decoded View---------------
Arg [0] : buyTax_ (uint256): 7
Arg [1] : sellTax_ (uint256): 7
Arg [2] : transferTax_ (uint256): 7
Arg [3] : taxRecipient_ (address): 0x9Ef94d54caDb6a8d6A918bA937777CFc1FeD1292
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 0000000000000000000000009ef94d54cadb6a8d6a918ba937777cfc1fed1292
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.