Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 10 from a total of 10 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 17358853 | 1032 days ago | IN | 0 ETH | 0.0014537 | ||||
| Approve | 17358842 | 1032 days ago | IN | 0 ETH | 0.00141735 | ||||
| Approve | 17358841 | 1032 days ago | IN | 0 ETH | 0.00172816 | ||||
| Approve | 17358836 | 1032 days ago | IN | 0 ETH | 0.00135829 | ||||
| Approve | 17358836 | 1032 days ago | IN | 0 ETH | 0.00135829 | ||||
| Approve | 17358836 | 1032 days ago | IN | 0 ETH | 0.00135829 | ||||
| Approve | 17358835 | 1032 days ago | IN | 0 ETH | 0.00160835 | ||||
| Approve | 17358834 | 1032 days ago | IN | 0 ETH | 0.00155128 | ||||
| Approve | 17358834 | 1032 days ago | IN | 0 ETH | 0.0015694 | ||||
| Approve | 17358824 | 1032 days ago | IN | 0 ETH | 0.00142915 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
FelixToken
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-05-28
*/
/*
WEBSITE: https://felixthecat.black/
COMMUNITY: https://t.me/FelixEntry
*/
// 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/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 public _totalSupply;
string private _name;
string private _symbol;
//address dev = Developer;
/**
* @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");
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
_beforeTokenTransfer(from, to, amount);
unchecked {
_balances[from] -= 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 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: FELIX.sol
pragma solidity ^0.8.9;
//import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
contract FelixToken is ERC20 {
uint256 public maxTotalSupply;
uint256 private totalMinted;
uint256 private developerAllocation;
uint256 private liquidityProviderAllocation;
address private Deployer;
address private Developer;
constructor() ERC20("Felix Coin", "Felix") {
maxTotalSupply = 690420000000*10**18;
developerAllocation = maxTotalSupply * 690 / 10000;
liquidityProviderAllocation = maxTotalSupply * 15 / 1000;
_mint(0xf61FC35A1e90415faFfC135b28a92b292c71f592, liquidityProviderAllocation);
totalMinted += liquidityProviderAllocation;
_mint(0xf61FC35A1e90415faFfC135b28a92b292c71f592, developerAllocation/7);
_mint(0xf61FC35A1e90415faFfC135b28a92b292c71f592, developerAllocation/7);
_mint(0xf61FC35A1e90415faFfC135b28a92b292c71f592, developerAllocation/7);
_mint(0xf61FC35A1e90415faFfC135b28a92b292c71f592, developerAllocation/7);
_mint(0xf61FC35A1e90415faFfC135b28a92b292c71f592, developerAllocation/7);
_mint(0xf61FC35A1e90415faFfC135b28a92b292c71f592, (developerAllocation/7) * 2); // giveaways
totalMinted += developerAllocation;
uint256 remainder = maxTotalSupply - totalMinted;
// 1.5% for ben.eth 0x63e41197E930FcE34016de8E52BB7EE79eaC4E82
// equal amount for benyy 0xF5226f23063F3a40Ef21cdA06EB0226d72cfB57E
// equal amount for bandz 0x024AEE37F4BB174f1C97cC87B8c41c9ebc9dc601
// equal amount for breads 0x24E6d109b7085aD340480fA2a1d484D144B41EFB
// equal amount for redkev 0x225F5704AFCcc6623eBAD09D3da4AED398995200
// equal amount for cass 0xf897968Ae7839c9bEAF8b2d2B30CF0e42479AdD8
_mint(0xf61FC35A1e90415faFfC135b28a92b292c71f592, remainder); // deployer address gets remainder
totalMinted = maxTotalSupply;
Developer = 0xf61FC35A1e90415faFfC135b28a92b292c71f592;
Deployer = 0xf61FC35A1e90415faFfC135b28a92b292c71f592;
}
function withdrawETH(address payable _reciever) public {
require(msg.sender == Deployer || msg.sender == Developer, "Admin permission only");
_reciever.transfer(address(this).balance);
}
}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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"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 payable","name":"_reciever","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600a8152602001692332b634bc1021b7b4b760b11b8152506040518060400160405280600581526020016408ccad8d2f60db1b8152508160039081620000649190620003ec565b506004620000738282620003ec565b50506c08b6de09dc5f41da0574000000600581905561271091506200009b906102b2620004ce565b620000a79190620004ee565b6007556005546103e890620000be90600f620004ce565b620000ca9190620004ee565b6008819055620000eb9060008051602062000eb4833981519152906200027d565b6008546006600082825462000101919062000511565b925050819055506200013260008051602062000eb4833981519152600780546200012c9190620004ee565b6200027d565b6200015660008051602062000eb4833981519152600780546200012c9190620004ee565b6200017a60008051602062000eb4833981519152600780546200012c9190620004ee565b6200019e60008051602062000eb4833981519152600780546200012c9190620004ee565b620001c260008051602062000eb4833981519152600780546200012c9190620004ee565b620001f360008051602062000eb483398151915260078054620001e69190620004ee565b6200012c906002620004ce565b6007546006600082825462000209919062000511565b9091555050600654600554600091620002229162000527565b90506200023f60008051602062000eb4833981519152826200027d565b50600554600655600a805460008051602062000eb48339815191526001600160a01b031991821681179092556009805490911690911790556200053d565b6001600160a01b038216620002d85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002ec919062000511565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037357607f821691505b6020821081036200039457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034357600081815260208120601f850160051c81016020861015620003c35750805b601f850160051c820191505b81811015620003e457828155600101620003cf565b505050505050565b81516001600160401b0381111562000408576200040862000348565b62000420816200041984546200035e565b846200039a565b602080601f8311600181146200045857600084156200043f5750858301515b600019600386901b1c1916600185901b178555620003e4565b600085815260208120601f198616915b82811015620004895788860151825594840194600190910190840162000468565b5085821015620004a85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004e857620004e8620004b8565b92915050565b6000826200050c57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004e857620004e8620004b8565b81810381811115620004e857620004e8620004b8565b610967806200054d6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80633eaaf86b1161008c57806395d89b411161006657806395d89b41146101c7578063a457c2d7146101cf578063a9059cbb146101e2578063dd62ed3e146101f557600080fd5b80633eaaf86b14610180578063690d83201461018957806370a082311461019e57600080fd5b806323b872dd116100c857806323b872dd146101425780632ab4d05214610155578063313ce5671461015e578063395093511461016d57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610208565b60405161010491906107a6565b60405180910390f35b61012061011b36600461080c565b61029a565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610838565b6102b4565b61013460055481565b60405160128152602001610104565b61012061017b36600461080c565b6102d8565b61013460025481565b61019c610197366004610879565b6102fa565b005b6101346101ac366004610879565b6001600160a01b031660009081526020819052604090205490565b6100f761039f565b6101206101dd36600461080c565b6103ae565b6101206101f036600461080c565b610429565b61013461020336600461089d565b610437565b606060038054610217906108d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610243906108d6565b80156102905780601f1061026557610100808354040283529160200191610290565b820191906000526020600020905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b6000336102a8818585610462565b60019150505b92915050565b6000336102c2858285610586565b6102cd858585610600565b506001949350505050565b6000336102a88185856102eb8383610437565b6102f59190610910565b610462565b6009546001600160a01b031633148061031d5750600a546001600160a01b031633145b6103665760405162461bcd60e51b815260206004820152601560248201527441646d696e207065726d697373696f6e206f6e6c7960581b60448201526064015b60405180910390fd5b6040516001600160a01b038216904780156108fc02916000818181858888f1935050505015801561039b573d6000803e3d6000fd5b5050565b606060048054610217906108d6565b600033816103bc8286610437565b90508381101561041c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161035d565b6102cd8286868403610462565b6000336102a8818585610600565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161035d565b6001600160a01b0382166105255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161035d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006105928484610437565b905060001981146105fa57818110156105ed5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161035d565b6105fa8484848403610462565b50505050565b6001600160a01b0383166106645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161035d565b6001600160a01b0382166106c65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161035d565b6001600160a01b0383166000908152602081905260409020548181101561073e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161035d565b6001600160a01b038481166000818152602081815260408083208054889003905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105fa565b600060208083528351808285015260005b818110156107d3578581018301518582016040015282016107b7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461080957600080fd5b50565b6000806040838503121561081f57600080fd5b823561082a816107f4565b946020939093013593505050565b60008060006060848603121561084d57600080fd5b8335610858816107f4565b92506020840135610868816107f4565b929592945050506040919091013590565b60006020828403121561088b57600080fd5b8135610896816107f4565b9392505050565b600080604083850312156108b057600080fd5b82356108bb816107f4565b915060208301356108cb816107f4565b809150509250929050565b600181811c908216806108ea57607f821691505b60208210810361090a57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102ae57634e487b7160e01b600052601160045260246000fdfea2646970667358221220be2301dbffbf90ac7d0aa670e32c5f239b928cd9ec41b2d2fdbb365497dcae0664736f6c63430008110033000000000000000000000000f61fc35a1e90415faffc135b28a92b292c71f592
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80633eaaf86b1161008c57806395d89b411161006657806395d89b41146101c7578063a457c2d7146101cf578063a9059cbb146101e2578063dd62ed3e146101f557600080fd5b80633eaaf86b14610180578063690d83201461018957806370a082311461019e57600080fd5b806323b872dd116100c857806323b872dd146101425780632ab4d05214610155578063313ce5671461015e578063395093511461016d57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610208565b60405161010491906107a6565b60405180910390f35b61012061011b36600461080c565b61029a565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610838565b6102b4565b61013460055481565b60405160128152602001610104565b61012061017b36600461080c565b6102d8565b61013460025481565b61019c610197366004610879565b6102fa565b005b6101346101ac366004610879565b6001600160a01b031660009081526020819052604090205490565b6100f761039f565b6101206101dd36600461080c565b6103ae565b6101206101f036600461080c565b610429565b61013461020336600461089d565b610437565b606060038054610217906108d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610243906108d6565b80156102905780601f1061026557610100808354040283529160200191610290565b820191906000526020600020905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b6000336102a8818585610462565b60019150505b92915050565b6000336102c2858285610586565b6102cd858585610600565b506001949350505050565b6000336102a88185856102eb8383610437565b6102f59190610910565b610462565b6009546001600160a01b031633148061031d5750600a546001600160a01b031633145b6103665760405162461bcd60e51b815260206004820152601560248201527441646d696e207065726d697373696f6e206f6e6c7960581b60448201526064015b60405180910390fd5b6040516001600160a01b038216904780156108fc02916000818181858888f1935050505015801561039b573d6000803e3d6000fd5b5050565b606060048054610217906108d6565b600033816103bc8286610437565b90508381101561041c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161035d565b6102cd8286868403610462565b6000336102a8818585610600565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161035d565b6001600160a01b0382166105255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161035d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006105928484610437565b905060001981146105fa57818110156105ed5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161035d565b6105fa8484848403610462565b50505050565b6001600160a01b0383166106645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161035d565b6001600160a01b0382166106c65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161035d565b6001600160a01b0383166000908152602081905260409020548181101561073e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161035d565b6001600160a01b038481166000818152602081815260408083208054889003905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105fa565b600060208083528351808285015260005b818110156107d3578581018301518582016040015282016107b7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461080957600080fd5b50565b6000806040838503121561081f57600080fd5b823561082a816107f4565b946020939093013593505050565b60008060006060848603121561084d57600080fd5b8335610858816107f4565b92506020840135610868816107f4565b929592945050506040919091013590565b60006020828403121561088b57600080fd5b8135610896816107f4565b9392505050565b600080604083850312156108b057600080fd5b82356108bb816107f4565b915060208301356108cb816107f4565b809150509250929050565b600181811c908216806108ea57607f821691505b60208210810361090a57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102ae57634e487b7160e01b600052601160045260246000fdfea2646970667358221220be2301dbffbf90ac7d0aa670e32c5f239b928cd9ec41b2d2fdbb365497dcae0664736f6c63430008110033
Deployed Bytecode Sourcemap
17121:2271:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6783:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9134:201;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;9134:201:0;1023:187:1;7903:108:0;7991:12;;7903:108;;;1361:25:1;;;1349:2;1334:18;7903:108:0;1215:177:1;9915:295:0;;;;;;:::i;:::-;;:::i;17163:29::-;;;;;;7745:93;;;7828:2;2000:36:1;;1988:2;1973:18;7745:93:0;1858:184:1;10619:238:0;;;;;;:::i;:::-;;:::i;6143:27::-;;;;;;19176:209;;;;;;:::i;:::-;;:::i;:::-;;8074:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8175:18:0;8148:7;8175:18;;;;;;;;;;;;8074:127;7002:104;;;:::i;11360:436::-;;;;;;:::i;:::-;;:::i;8407:193::-;;;;;;:::i;:::-;;:::i;8663:151::-;;;;;;:::i;:::-;;:::i;6783:100::-;6837:13;6870:5;6863:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6783:100;:::o;9134:201::-;9217:4;841:10;9273:32;841:10;9289:7;9298:6;9273:8;:32::i;:::-;9323:4;9316:11;;;9134:201;;;;;:::o;9915:295::-;10046:4;841:10;10104:38;10120:4;841:10;10135:6;10104:15;:38::i;:::-;10153:27;10163:4;10169:2;10173:6;10153:9;:27::i;:::-;-1:-1:-1;10198:4:0;;9915:295;-1:-1:-1;;;;9915:295:0:o;10619:238::-;10707:4;841:10;10763:64;841:10;10779:7;10816:10;10788:25;841:10;10779:7;10788:9;:25::i;:::-;:38;;;;:::i;:::-;10763:8;:64::i;19176:209::-;19264:8;;-1:-1:-1;;;;;19264:8:0;19250:10;:22;;:49;;-1:-1:-1;19290:9:0;;-1:-1:-1;;;;;19290:9:0;19276:10;:23;19250:49;19242:83;;;;-1:-1:-1;;;19242:83:0;;3766:2:1;19242:83:0;;;3748:21:1;3805:2;3785:18;;;3778:30;-1:-1:-1;;;3824:18:1;;;3817:51;3885:18;;19242:83:0;;;;;;;;;19336:41;;-1:-1:-1;;;;;19336:18:0;;;19355:21;19336:41;;;;;;;;;19355:21;19336:18;:41;;;;;;;;;;;;;;;;;;;;;19176:209;:::o;7002:104::-;7058:13;7091:7;7084:14;;;;;:::i;11360:436::-;11453:4;841:10;11453:4;11536:25;841:10;11553:7;11536:9;:25::i;:::-;11509:52;;11600:15;11580:16;:35;;11572:85;;;;-1:-1:-1;;;11572:85:0;;4116:2:1;11572:85:0;;;4098:21:1;4155:2;4135:18;;;4128:30;4194:34;4174:18;;;4167:62;-1:-1:-1;;;4245:18:1;;;4238:35;4290:19;;11572:85:0;3914:401:1;11572:85:0;11693:60;11702:5;11709:7;11737:15;11718:16;:34;11693:8;:60::i;8407:193::-;8486:4;841:10;8542:28;841:10;8559:2;8563:6;8542:9;:28::i;8663:151::-;-1:-1:-1;;;;;8779:18:0;;;8752:7;8779:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8663:151::o;14400:380::-;-1:-1:-1;;;;;14536:19:0;;14528:68;;;;-1:-1:-1;;;14528:68:0;;4522:2:1;14528:68:0;;;4504:21:1;4561:2;4541:18;;;4534:30;4600:34;4580:18;;;4573:62;-1:-1:-1;;;4651:18:1;;;4644:34;4695:19;;14528:68:0;4320:400:1;14528:68:0;-1:-1:-1;;;;;14615:21:0;;14607:68;;;;-1:-1:-1;;;14607:68:0;;4927:2:1;14607:68:0;;;4909:21:1;4966:2;4946:18;;;4939:30;5005:34;4985:18;;;4978:62;-1:-1:-1;;;5056:18:1;;;5049:32;5098:19;;14607:68:0;4725:398:1;14607:68:0;-1:-1:-1;;;;;14688:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14740:32;;1361:25:1;;;14740:32:0;;1334:18:1;14740:32:0;;;;;;;14400:380;;;:::o;15071:453::-;15206:24;15233:25;15243:5;15250:7;15233:9;:25::i;:::-;15206:52;;-1:-1:-1;;15273:16:0;:37;15269:248;;15355:6;15335:16;:26;;15327:68;;;;-1:-1:-1;;;15327:68:0;;5330:2:1;15327:68:0;;;5312:21:1;5369:2;5349:18;;;5342:30;5408:31;5388:18;;;5381:59;5457:18;;15327:68:0;5128:353:1;15327:68:0;15439:51;15448:5;15455:7;15483:6;15464:16;:25;15439:8;:51::i;:::-;15195:329;15071:453;;;:::o;12266:853::-;-1:-1:-1;;;;;12397:18:0;;12389:68;;;;-1:-1:-1;;;12389:68:0;;5688:2:1;12389:68:0;;;5670:21:1;5727:2;5707:18;;;5700:30;5766:34;5746:18;;;5739:62;-1:-1:-1;;;5817:18:1;;;5810:35;5862:19;;12389:68:0;5486:401:1;12389:68:0;-1:-1:-1;;;;;12476:16:0;;12468:64;;;;-1:-1:-1;;;12468:64:0;;6094:2:1;12468:64:0;;;6076:21:1;6133:2;6113:18;;;6106:30;6172:34;6152:18;;;6145:62;-1:-1:-1;;;6223:18:1;;;6216:33;6266:19;;12468:64:0;5892:399:1;12468:64:0;-1:-1:-1;;;;;12567:15:0;;12545:19;12567:15;;;;;;;;;;;12605:21;;;;12597:72;;;;-1:-1:-1;;;12597:72:0;;6498:2:1;12597:72:0;;;6480:21:1;6537:2;6517:18;;;6510:30;6576:34;6556:18;;;6549:62;-1:-1:-1;;;6627:18:1;;;6620:36;6673:19;;12597:72:0;6296:402:1;12597:72:0;-1:-1:-1;;;;;12766:15:0;;;:9;:15;;;;;;;;;;;:25;;;;;;;12971:13;;;;;;;;;;:23;;;;;;13021:26;;1361:25:1;;;12971:13:0;;13021:26;;1334:18:1;13021:26:0;;;;;;;13058:37;16124:125;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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:255::-;2114:6;2167:2;2155:9;2146:7;2142:23;2138:32;2135:52;;;2183:1;2180;2173:12;2135:52;2222:9;2209:23;2241:31;2266:5;2241:31;:::i;:::-;2291:5;2047:255;-1:-1:-1;;;2047:255:1:o;2559:388::-;2627:6;2635;2688:2;2676:9;2667:7;2663:23;2659:32;2656:52;;;2704:1;2701;2694:12;2656:52;2743:9;2730:23;2762:31;2787:5;2762:31;:::i;:::-;2812:5;-1:-1:-1;2869:2:1;2854:18;;2841:32;2882:33;2841:32;2882:33;:::i;:::-;2934:7;2924:17;;;2559:388;;;;;:::o;2952:380::-;3031:1;3027:12;;;;3074;;;3095:61;;3149:4;3141:6;3137:17;3127:27;;3095:61;3202:2;3194:6;3191:14;3171:18;3168:38;3165:161;;3248:10;3243:3;3239:20;3236:1;3229:31;3283:4;3280:1;3273:15;3311:4;3308:1;3301:15;3165:161;;2952:380;;;:::o;3337:222::-;3402:9;;;3423:10;;;3420:133;;;3475:10;3470:3;3466:20;3463:1;3456:31;3510:4;3507:1;3500:15;3538:4;3535:1;3528:15
Swarm Source
ipfs://be2301dbffbf90ac7d0aa670e32c5f239b928cd9ec41b2d2fdbb365497dcae06
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.