Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 6 from a total of 6 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 17565220 | 985 days ago | IN | 0 ETH | 0.00058284 | ||||
| Approve | 17565089 | 985 days ago | IN | 0 ETH | 0.000704 | ||||
| Transfer | 17528409 | 991 days ago | IN | 0 ETH | 0.00068008 | ||||
| Approve | 17520814 | 992 days ago | IN | 0 ETH | 0.00083407 | ||||
| Set Whitelist St... | 17520811 | 992 days ago | IN | 0 ETH | 0.00078272 | ||||
| Approve | 17520781 | 992 days ago | IN | 0 ETH | 0.00090501 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
XCORP
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-06-20
*/
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// 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;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @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);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// 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);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
/**
* @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);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @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 {}
}
// File: X CORP.sol
pragma solidity 0.8.19;
interface DexFactory {
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
}
interface DexRouter {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
contract XCORP is ERC20, Ownable {
DexRouter public immutable uniswapRouter;
address public immutable pairAddress;
mapping(address => bool) private whitelisted;
bool public tradingEnabled = false;
uint256 public startTradingBlock;
event Whitelist(address indexed _target, bool indexed _status);
constructor() ERC20("X-Corp", "XCORP") {
uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
pairAddress = DexFactory(uniswapRouter.factory()).createPair(
address(this),
uniswapRouter.WETH()
);
whitelisted[msg.sender] = true;
whitelisted[address(uniswapRouter)] = true;
whitelisted[address(this)] = true;
_mint(msg.sender, 1000000000000 * 10 ** decimals());
}
function enableTrading() external onlyOwner {
require(!tradingEnabled, "Trading is already enabled");
tradingEnabled = true;
startTradingBlock = block.number;
}
function setWhitelistStatus(
address _wallet,
bool _status
) external onlyOwner {
whitelisted[_wallet] = _status;
emit Whitelist(_wallet, _status);
}
function checkWhitelist(address _wallet) external view returns (bool) {
return whitelisted[_wallet];
}
function _transfer(address _from, address _to, uint256 _amount) internal virtual override {
require(_from != address(0), "ERC20: transfer from the zero address");
require(_to != address(0), "ERC20: transfer to the zero address");
require(_amount > 0, "Transfer amount must be greater than zero");
if (
!whitelisted[_from] &&
!whitelisted[_to]
) {
require(tradingEnabled, "Trading no active");
}
super._transfer(_from, _to,_amount);
}
}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":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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","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":[{"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":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"enableTrading","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":"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":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","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":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60c06040526007805460ff191690553480156200001b57600080fd5b50604051806040016040528060068152602001650582d436f72760d41b81525060405180604001604052806005815260200164058434f52560dc1b81525081600390816200006a919062000447565b50600462000079828262000447565b50505062000096620000906200028260201b60201c565b62000286565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620000ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000112919062000513565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000162573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000188919062000513565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fc919062000513565b6001600160a01b0390811660a052336000818152600660205260408082208054600160ff1991821681179092556080519095168352818320805486168217905530835291208054909316179091556200027c9062000258601290565b6200026590600a6200065a565b620002769064e8d4a510006200066b565b620002d8565b6200069b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003335760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000347919062000685565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003ce57607f821691505b602082108103620003ef57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039e57600081815260208120601f850160051c810160208610156200041e5750805b601f850160051c820191505b818110156200043f578281556001016200042a565b505050505050565b81516001600160401b03811115620004635762000463620003a3565b6200047b81620004748454620003b9565b84620003f5565b602080601f831160018114620004b357600084156200049a5750858301515b600019600386901b1c1916600185901b1785556200043f565b600085815260208120601f198616915b82811015620004e457888601518255948401946001909101908401620004c3565b5085821015620005035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200052657600080fd5b81516001600160a01b03811681146200053e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200059c57816000190482111562000580576200058062000545565b808516156200058e57918102915b93841c939080029062000560565b509250929050565b600082620005b55750600162000654565b81620005c45750600062000654565b8160018114620005dd5760028114620005e85762000608565b600191505062000654565b60ff841115620005fc57620005fc62000545565b50506001821b62000654565b5060208310610133831016604e8410600b84101617156200062d575081810a62000654565b6200063983836200055b565b806000190482111562000650576200065062000545565b0290505b92915050565b60006200053e60ff841683620005a4565b808202811582820484141762000654576200065462000545565b8082018082111562000654576200065462000545565b60805160a051610d69620006c160003960006102c4015260006102480152610d696000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b857806395d89b411161007c57806395d89b41146102a4578063a457c2d7146102ac578063a8b08982146102bf578063a9059cbb146102e6578063dd62ed3e146102f9578063f2fde38b1461030c57600080fd5b8063715018a61461023b578063735de9f71461024357806376be96f3146102825780638a8c523c1461028b5780638da5cb5b1461029357600080fd5b806323b872dd116100ff57806323b872dd146101d0578063313ce567146101e357806339509351146101f25780634ada218b1461020557806370a082311461021257600080fd5b806306fdde031461013c578063095ea7b31461015a5780630c4242841461017d57806318160ddd146101925780631950c218146101a4575b600080fd5b61014461031f565b6040516101519190610aef565b60405180910390f35b61016d610168366004610b59565b6103b1565b6040519015158152602001610151565b61019061018b366004610b83565b6103cb565b005b6002545b604051908152602001610151565b61016d6101b2366004610bbf565b6001600160a01b031660009081526006602052604090205460ff1690565b61016d6101de366004610be1565b610427565b60405160128152602001610151565b61016d610200366004610b59565b61044b565b60075461016d9060ff1681565b610196610220366004610bbf565b6001600160a01b031660009081526020819052604090205490565b61019061046d565b61026a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610151565b61019660085481565b610190610481565b6005546001600160a01b031661026a565b6101446104f4565b61016d6102ba366004610b59565b610503565b61026a7f000000000000000000000000000000000000000000000000000000000000000081565b61016d6102f4366004610b59565b61057e565b610196610307366004610c1d565b61058c565b61019061031a366004610bbf565b6105b7565b60606003805461032e90610c50565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610c50565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b6000336103bf818585610630565b60019150505b92915050565b6103d3610754565b6001600160a01b038216600081815260066020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6000336104358582856107ae565b610440858585610828565b506001949350505050565b6000336103bf81858561045e838361058c565b6104689190610c8a565b610630565b610475610754565b61047f6000610973565b565b610489610754565b60075460ff16156104e15760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6007805460ff1916600117905543600855565b60606004805461032e90610c50565b60003381610511828661058c565b9050838110156105715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104d8565b6104408286868403610630565b6000336103bf818585610828565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105bf610754565b6001600160a01b0381166106245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d8565b61062d81610973565b50565b6001600160a01b0383166106925760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104d8565b6001600160a01b0382166106f35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104d8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461047f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104d8565b60006107ba848461058c565b9050600019811461082257818110156108155760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104d8565b6108228484848403610630565b50505050565b6001600160a01b03831661084e5760405162461bcd60e51b81526004016104d890610cab565b6001600160a01b0382166108745760405162461bcd60e51b81526004016104d890610cf0565b600081116108d65760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104d8565b6001600160a01b03831660009081526006602052604090205460ff1615801561091857506001600160a01b03821660009081526006602052604090205460ff16155b156109635760075460ff166109635760405162461bcd60e51b815260206004820152601160248201527054726164696e67206e6f2061637469766560781b60448201526064016104d8565b61096e8383836109c5565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166109eb5760405162461bcd60e51b81526004016104d890610cab565b6001600160a01b038216610a115760405162461bcd60e51b81526004016104d890610cf0565b6001600160a01b03831660009081526020819052604090205481811015610a895760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104d8565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610822565b600060208083528351808285015260005b81811015610b1c57858101830151858201604001528201610b00565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b5457600080fd5b919050565b60008060408385031215610b6c57600080fd5b610b7583610b3d565b946020939093013593505050565b60008060408385031215610b9657600080fd5b610b9f83610b3d565b915060208301358015158114610bb457600080fd5b809150509250929050565b600060208284031215610bd157600080fd5b610bda82610b3d565b9392505050565b600080600060608486031215610bf657600080fd5b610bff84610b3d565b9250610c0d60208501610b3d565b9150604084013590509250925092565b60008060408385031215610c3057600080fd5b610c3983610b3d565b9150610c4760208401610b3d565b90509250929050565b600181811c90821680610c6457607f821691505b602082108103610c8457634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103c557634e487b7160e01b600052601160045260246000fd5b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b60608201526080019056fea2646970667358221220e71854c134390651ab707d11b17cc5d1be60befadfade4ab5a42877cde7a0d0a64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b857806395d89b411161007c57806395d89b41146102a4578063a457c2d7146102ac578063a8b08982146102bf578063a9059cbb146102e6578063dd62ed3e146102f9578063f2fde38b1461030c57600080fd5b8063715018a61461023b578063735de9f71461024357806376be96f3146102825780638a8c523c1461028b5780638da5cb5b1461029357600080fd5b806323b872dd116100ff57806323b872dd146101d0578063313ce567146101e357806339509351146101f25780634ada218b1461020557806370a082311461021257600080fd5b806306fdde031461013c578063095ea7b31461015a5780630c4242841461017d57806318160ddd146101925780631950c218146101a4575b600080fd5b61014461031f565b6040516101519190610aef565b60405180910390f35b61016d610168366004610b59565b6103b1565b6040519015158152602001610151565b61019061018b366004610b83565b6103cb565b005b6002545b604051908152602001610151565b61016d6101b2366004610bbf565b6001600160a01b031660009081526006602052604090205460ff1690565b61016d6101de366004610be1565b610427565b60405160128152602001610151565b61016d610200366004610b59565b61044b565b60075461016d9060ff1681565b610196610220366004610bbf565b6001600160a01b031660009081526020819052604090205490565b61019061046d565b61026a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610151565b61019660085481565b610190610481565b6005546001600160a01b031661026a565b6101446104f4565b61016d6102ba366004610b59565b610503565b61026a7f0000000000000000000000007931fb1a0d4479a1f9fc969531897c8e5fd3de0881565b61016d6102f4366004610b59565b61057e565b610196610307366004610c1d565b61058c565b61019061031a366004610bbf565b6105b7565b60606003805461032e90610c50565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610c50565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b6000336103bf818585610630565b60019150505b92915050565b6103d3610754565b6001600160a01b038216600081815260066020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6000336104358582856107ae565b610440858585610828565b506001949350505050565b6000336103bf81858561045e838361058c565b6104689190610c8a565b610630565b610475610754565b61047f6000610973565b565b610489610754565b60075460ff16156104e15760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6007805460ff1916600117905543600855565b60606004805461032e90610c50565b60003381610511828661058c565b9050838110156105715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104d8565b6104408286868403610630565b6000336103bf818585610828565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105bf610754565b6001600160a01b0381166106245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d8565b61062d81610973565b50565b6001600160a01b0383166106925760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104d8565b6001600160a01b0382166106f35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104d8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461047f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104d8565b60006107ba848461058c565b9050600019811461082257818110156108155760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104d8565b6108228484848403610630565b50505050565b6001600160a01b03831661084e5760405162461bcd60e51b81526004016104d890610cab565b6001600160a01b0382166108745760405162461bcd60e51b81526004016104d890610cf0565b600081116108d65760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104d8565b6001600160a01b03831660009081526006602052604090205460ff1615801561091857506001600160a01b03821660009081526006602052604090205460ff16155b156109635760075460ff166109635760405162461bcd60e51b815260206004820152601160248201527054726164696e67206e6f2061637469766560781b60448201526064016104d8565b61096e8383836109c5565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166109eb5760405162461bcd60e51b81526004016104d890610cab565b6001600160a01b038216610a115760405162461bcd60e51b81526004016104d890610cf0565b6001600160a01b03831660009081526020819052604090205481811015610a895760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104d8565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610822565b600060208083528351808285015260005b81811015610b1c57858101830151858201604001528201610b00565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b5457600080fd5b919050565b60008060408385031215610b6c57600080fd5b610b7583610b3d565b946020939093013593505050565b60008060408385031215610b9657600080fd5b610b9f83610b3d565b915060208301358015158114610bb457600080fd5b809150509250929050565b600060208284031215610bd157600080fd5b610bda82610b3d565b9392505050565b600080600060608486031215610bf657600080fd5b610bff84610b3d565b9250610c0d60208501610b3d565b9150604084013590509250925092565b60008060408385031215610c3057600080fd5b610c3983610b3d565b9150610c4760208401610b3d565b90509250929050565b600181811c90821680610c6457607f821691505b602082108103610c8457634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103c557634e487b7160e01b600052601160045260246000fd5b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b60608201526080019056fea2646970667358221220e71854c134390651ab707d11b17cc5d1be60befadfade4ab5a42877cde7a0d0a64736f6c63430008130033
Deployed Bytecode Sourcemap
28478:1917:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16392:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18743:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;18743:201:0;1004:187:1;29499:195:0;;;;;;:::i;:::-;;:::i;:::-;;17512:108;17600:12;;17512:108;;;1694:25:1;;;1682:2;1667:18;17512:108:0;1548:177:1;29706:116:0;;;;;;:::i;:::-;-1:-1:-1;;;;;29794:20:0;29770:4;29794:20;;;:11;:20;;;;;;;;;29706:116;19524:295;;;;;;:::i;:::-;;:::i;17354:93::-;;;17437:2;2396:36:1;;2384:2;2369:18;17354:93:0;2254:184:1;20228:238:0;;;;;;:::i;:::-;;:::i;28665:34::-;;;;;;;;;17683:127;;;;;;:::i;:::-;-1:-1:-1;;;;;17784:18:0;17757:7;17784:18;;;;;;;;;;;;17683:127;9817:103;;;:::i;28520:40::-;;;;;;;;-1:-1:-1;;;;;2625:32:1;;;2607:51;;2595:2;2580:18;28520:40:0;2443:221:1;28706:32:0;;;;;;29299:192;;;:::i;9169:87::-;9242:6;;-1:-1:-1;;;;;9242:6:0;9169:87;;16611:104;;;:::i;20969:436::-;;;;;;:::i;:::-;;:::i;28567:36::-;;;;;18016:193;;;;;;:::i;:::-;;:::i;18272:151::-;;;;;;:::i;:::-;;:::i;10075:201::-;;;;;;:::i;:::-;;:::i;16392:100::-;16446:13;16479:5;16472:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16392:100;:::o;18743:201::-;18826:4;7800:10;18882:32;7800:10;18898:7;18907:6;18882:8;:32::i;:::-;18932:4;18925:11;;;18743:201;;;;;:::o;29499:195::-;9055:13;:11;:13::i;:::-;-1:-1:-1;;;;;29613:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;29613:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29659:27;;29613:30;;:20;29659:27:::1;::::0;::::1;29499:195:::0;;:::o;19524:295::-;19655:4;7800:10;19713:38;19729:4;7800:10;19744:6;19713:15;:38::i;:::-;19762:27;19772:4;19778:2;19782:6;19762:9;:27::i;:::-;-1:-1:-1;19807:4:0;;19524:295;-1:-1:-1;;;;19524:295:0:o;20228:238::-;20316:4;7800:10;20372:64;7800:10;20388:7;20425:10;20397:25;7800:10;20388:7;20397:9;:25::i;:::-;:38;;;;:::i;:::-;20372:8;:64::i;9817:103::-;9055:13;:11;:13::i;:::-;9882:30:::1;9909:1;9882:18;:30::i;:::-;9817:103::o:0;29299:192::-;9055:13;:11;:13::i;:::-;29363:14:::1;::::0;::::1;;29362:15;29354:54;;;::::0;-1:-1:-1;;;29354:54:0;;3956:2:1;29354:54:0::1;::::0;::::1;3938:21:1::0;3995:2;3975:18;;;3968:30;4034:28;4014:18;;;4007:56;4080:18;;29354:54:0::1;;;;;;;;;29419:14;:21:::0;;-1:-1:-1;;29419:21:0::1;29436:4;29419:21;::::0;;29471:12:::1;29451:17;:32:::0;29299:192::o;16611:104::-;16667:13;16700:7;16693:14;;;;;:::i;20969:436::-;21062:4;7800:10;21062:4;21145:25;7800:10;21162:7;21145:9;:25::i;:::-;21118:52;;21209:15;21189:16;:35;;21181:85;;;;-1:-1:-1;;;21181:85:0;;4311:2:1;21181:85:0;;;4293:21:1;4350:2;4330:18;;;4323:30;4389:34;4369:18;;;4362:62;-1:-1:-1;;;4440:18:1;;;4433:35;4485:19;;21181:85:0;4109:401:1;21181:85:0;21302:60;21311:5;21318:7;21346:15;21327:16;:34;21302:8;:60::i;18016:193::-;18095:4;7800:10;18151:28;7800:10;18168:2;18172:6;18151:9;:28::i;18272:151::-;-1:-1:-1;;;;;18388:18:0;;;18361:7;18388:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18272:151::o;10075:201::-;9055:13;:11;:13::i;:::-;-1:-1:-1;;;;;10164:22:0;::::1;10156:73;;;::::0;-1:-1:-1;;;10156:73:0;;4717:2:1;10156:73:0::1;::::0;::::1;4699:21:1::0;4756:2;4736:18;;;4729:30;4795:34;4775:18;;;4768:62;-1:-1:-1;;;4846:18:1;;;4839:36;4892:19;;10156:73:0::1;4515:402:1::0;10156:73:0::1;10240:28;10259:8;10240:18;:28::i;:::-;10075:201:::0;:::o;24996:380::-;-1:-1:-1;;;;;25132:19:0;;25124:68;;;;-1:-1:-1;;;25124:68:0;;5124:2:1;25124:68:0;;;5106:21:1;5163:2;5143:18;;;5136:30;5202:34;5182:18;;;5175:62;-1:-1:-1;;;5253:18:1;;;5246:34;5297:19;;25124:68:0;4922:400:1;25124:68:0;-1:-1:-1;;;;;25211:21:0;;25203:68;;;;-1:-1:-1;;;25203:68:0;;5529:2:1;25203:68:0;;;5511:21:1;5568:2;5548:18;;;5541:30;5607:34;5587:18;;;5580:62;-1:-1:-1;;;5658:18:1;;;5651:32;5700:19;;25203:68:0;5327:398:1;25203:68:0;-1:-1:-1;;;;;25284:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25336:32;;1694:25:1;;;25336:32:0;;1667:18:1;25336:32:0;;;;;;;24996:380;;;:::o;9334:132::-;9242:6;;-1:-1:-1;;;;;9242:6:0;7800:10;9398:23;9390:68;;;;-1:-1:-1;;;9390:68:0;;5932:2:1;9390:68:0;;;5914:21:1;;;5951:18;;;5944:30;6010:34;5990:18;;;5983:62;6062:18;;9390:68:0;5730:356:1;25667:453:0;25802:24;25829:25;25839:5;25846:7;25829:9;:25::i;:::-;25802:52;;-1:-1:-1;;25869:16:0;:37;25865:248;;25951:6;25931:16;:26;;25923:68;;;;-1:-1:-1;;;25923:68:0;;6293:2:1;25923:68:0;;;6275:21:1;6332:2;6312:18;;;6305:30;6371:31;6351:18;;;6344:59;6420:18;;25923:68:0;6091:353:1;25923:68:0;26035:51;26044:5;26051:7;26079:6;26060:16;:25;26035:8;:51::i;:::-;25791:329;25667:453;;;:::o;29827:561::-;-1:-1:-1;;;;;29937:19:0;;29929:69;;;;-1:-1:-1;;;29929:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30017:17:0;;30009:65;;;;-1:-1:-1;;;30009:65:0;;;;;;;:::i;:::-;30103:1;30093:7;:11;30085:65;;;;-1:-1:-1;;;30085:65:0;;7461:2:1;30085:65:0;;;7443:21:1;7500:2;7480:18;;;7473:30;7539:34;7519:18;;;7512:62;-1:-1:-1;;;7590:18:1;;;7583:39;7639:19;;30085:65:0;7259:405:1;30085:65:0;-1:-1:-1;;;;;30189:18:0;;;;;;:11;:18;;;;;;;;30188:19;:53;;;;-1:-1:-1;;;;;;30225:16:0;;;;;;:11;:16;;;;;;;;30224:17;30188:53;30168:167;;;30276:14;;;;30268:44;;;;-1:-1:-1;;;30268:44:0;;7871:2:1;30268:44:0;;;7853:21:1;7910:2;7890:18;;;7883:30;-1:-1:-1;;;7929:18:1;;;7922:47;7986:18;;30268:44:0;7669:341:1;30268:44:0;30345:35;30361:5;30368:3;30372:7;30345:15;:35::i;:::-;29827:561;;;:::o;10436:191::-;10529:6;;;-1:-1:-1;;;;;10546:17:0;;;-1:-1:-1;;;;;;10546:17:0;;;;;;;10579:40;;10529:6;;;10546:17;10529:6;;10579:40;;10510:16;;10579:40;10499:128;10436:191;:::o;21875:840::-;-1:-1:-1;;;;;22006:18:0;;21998:68;;;;-1:-1:-1;;;21998:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22085:16:0;;22077:64;;;;-1:-1:-1;;;22077:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22227:15:0;;22205:19;22227:15;;;;;;;;;;;22261:21;;;;22253:72;;;;-1:-1:-1;;;22253:72:0;;8217:2:1;22253:72:0;;;8199:21:1;8256:2;8236:18;;;8229:30;8295:34;8275:18;;;8268:62;-1:-1:-1;;;8346:18:1;;;8339:36;8392:19;;22253:72:0;8015:402:1;22253:72:0;-1:-1:-1;;;;;22361:15:0;;;:9;:15;;;;;;;;;;;22379:20;;;22361:38;;22579:13;;;;;;;;;;:23;;;;;;22631:26;;1694:25:1;;;22579:13:0;;22631:26;;1667:18:1;22631:26:0;;;;;;;22670:37;29827:561;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:347::-;1261:6;1269;1322:2;1310:9;1301:7;1297:23;1293:32;1290:52;;;1338:1;1335;1328:12;1290:52;1361:29;1380:9;1361:29;:::i;:::-;1351:39;;1440:2;1429:9;1425:18;1412:32;1487:5;1480:13;1473:21;1466:5;1463:32;1453:60;;1509:1;1506;1499:12;1453:60;1532:5;1522:15;;;1196:347;;;;;:::o;1730:186::-;1789:6;1842:2;1830:9;1821:7;1817:23;1813:32;1810:52;;;1858:1;1855;1848:12;1810:52;1881:29;1900:9;1881:29;:::i;:::-;1871:39;1730:186;-1:-1:-1;;;1730:186:1:o;1921:328::-;1998:6;2006;2014;2067:2;2055:9;2046:7;2042:23;2038:32;2035:52;;;2083:1;2080;2073:12;2035:52;2106:29;2125:9;2106:29;:::i;:::-;2096:39;;2154:38;2188:2;2177:9;2173:18;2154:38;:::i;:::-;2144:48;;2239:2;2228:9;2224:18;2211:32;2201:42;;1921:328;;;;;:::o;2877:260::-;2945:6;2953;3006:2;2994:9;2985:7;2981:23;2977:32;2974:52;;;3022:1;3019;3012:12;2974:52;3045:29;3064:9;3045:29;:::i;:::-;3035:39;;3093:38;3127:2;3116:9;3112:18;3093:38;:::i;:::-;3083:48;;2877:260;;;;;:::o;3142:380::-;3221:1;3217:12;;;;3264;;;3285:61;;3339:4;3331:6;3327:17;3317:27;;3285:61;3392:2;3384:6;3381:14;3361:18;3358:38;3355:161;;3438:10;3433:3;3429:20;3426:1;3419:31;3473:4;3470:1;3463:15;3501:4;3498:1;3491:15;3355:161;;3142:380;;;:::o;3527:222::-;3592:9;;;3613:10;;;3610:133;;;3665:10;3660:3;3656:20;3653:1;3646:31;3700:4;3697:1;3690:15;3728:4;3725:1;3718:15;6449:401;6651:2;6633:21;;;6690:2;6670:18;;;6663:30;6729:34;6724:2;6709:18;;6702:62;-1:-1:-1;;;6795:2:1;6780:18;;6773:35;6840:3;6825:19;;6449:401::o;6855:399::-;7057:2;7039:21;;;7096:2;7076:18;;;7069:30;7135:34;7130:2;7115:18;;7108:62;-1:-1:-1;;;7201:2:1;7186:18;;7179:33;7244:3;7229:19;;6855:399::o
Swarm Source
ipfs://e71854c134390651ab707d11b17cc5d1be60befadfade4ab5a42877cde7a0d0a
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.