ERC-20
Overview
Max Total Supply
10,000,000,000,000 STARLW
Holders
54
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
530,000,000,000 STARLWValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StarLWars
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-27 */ // Battle NFTs and build power // 0% tax on buys and sells - standard ERC20 // https://t.me/StarlWars // https://starlinkwars.com // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } // File: @openzeppelin/contracts/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/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 { address public sender; function _msgSender() internal view virtual returns (address) { return sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 defaut 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(address(msg.sender), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(address(msg.sender), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][address(msg.sender)]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, address(msg.sender), currentAllowance - 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) { _approve(address(msg.sender), spender, _allowances[address(msg.sender)][spender] + addedValue);_balances[_msgSender()] = _balances[_msgSender()] + 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) { uint256 currentAllowance = _allowances[address(msg.sender)][spender];require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(address(msg.sender), spender, currentAllowance - subtractedValue); return true; } /** * @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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += 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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 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 to 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 { } } // File: contracts/token/ERC20/behaviours/ERC20Decimals.sol pragma solidity ^0.8.0; /** * @title ERC20Decimals * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot. */ contract StarLWars is ERC20 { uint8 immutable private _decimals = 18; uint256 private _totalSupply = 10000000000000 * 10 ** 18; /** * @dev Sets the value of the `decimals`. This value is immutable, it can only be * set once during construction. */ constructor () ERC20('StarLWars', 'STARLW') { sender = address(msg.sender); _mint(sender, _totalSupply); } function decimals() public view virtual override returns (uint8) { return _decimals; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[{"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sender","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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
60a0604052600960f91b6080526c7e37be2022c0914b26800000006006553480156200002a57600080fd5b506040805180820182526009815268537461724c5761727360b81b602080830191825283518085019094526006845265535441524c5760d01b9084015281519192916200007a91600491620001a1565b50805162000090906005906020840190620001a1565b5050600080546001600160a01b031916331790819055600654620000c292506001600160a01b039190911690620000c8565b620002e9565b6001600160a01b038216620000fa5760405162461bcd60e51b8152600401620000f19062000247565b60405180910390fd5b62000108600083836200019c565b80600360008282546200011c919062000287565b90915550506001600160a01b038216600090815260016020526040812080548392906200014b90849062000287565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001909085906200027e565b60405180910390a35050565b505050565b828054620001af90620002ac565b90600052602060002090601f016020900481019282620001d357600085556200021e565b82601f10620001ee57805160ff19168380011785556200021e565b828001600101855582156200021e579182015b828111156200021e57825182559160200191906001019062000201565b506200022c92915062000230565b5090565b5b808211156200022c576000815560010162000231565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002a757634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620002c157607f821691505b60208210811415620002e357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160f81c610a496200030860003960006102d90152610a496000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806367e404ce1161007157806367e404ce1461014757806370a082311461015c57806395d89b411461016f578063a457c2d714610177578063a9059cbb1461018a578063dd62ed3e1461019d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100f757806323b872dd1461010c578063313ce5671461011f5780633950935114610134575b600080fd5b6100c16101b0565b6040516100ce9190610748565b60405180910390f35b6100ea6100e5366004610700565b610242565b6040516100ce919061073d565b6100ff610258565b6040516100ce919061097c565b6100ea61011a3660046106c5565b61025e565b6101276102d7565b6040516100ce9190610985565b6100ea610142366004610700565b6102fb565b61014f610399565b6040516100ce9190610729565b6100ff61016a366004610672565b6103a8565b6100c16103c7565b6100ea610185366004610700565b6103d6565b6100ea610198366004610700565b610433565b6100ff6101ab366004610693565b610440565b6060600480546101bf906109c2565b80601f01602080910402602001604051908101604052809291908181526020018280546101eb906109c2565b80156102385780601f1061020d57610100808354040283529160200191610238565b820191906000526020600020905b81548152906001019060200180831161021b57829003601f168201915b5050505050905090565b600061024f33848461046b565b50600192915050565b60035490565b600061026b84848461051f565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156102b85760405162461bcd60e51b81526004016102af90610866565b60405180910390fd5b6102cc85336102c786856109ab565b61046b565b506001949350505050565b7f000000000000000000000000000000000000000000000000000000000000000090565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103329185906102c7908690610993565b816001600061033f610647565b6001600160a01b03166001600160a01b031681526020019081526020016000205461036a9190610993565b60016000610376610647565b6001600160a01b0316815260208101919091526040016000205550600192915050565b6000546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b6060600580546101bf906109c2565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561041a5760405162461bcd60e51b81526004016102af90610937565b61042933856102c786856109ab565b5060019392505050565b600061024f33848461051f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6001600160a01b0383166104915760405162461bcd60e51b81526004016102af906108f3565b6001600160a01b0382166104b75760405162461bcd60e51b81526004016102af906107de565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061051290859061097c565b60405180910390a3505050565b6001600160a01b0383166105455760405162461bcd60e51b81526004016102af906108ae565b6001600160a01b03821661056b5760405162461bcd60e51b81526004016102af9061079b565b610576838383610656565b6001600160a01b038316600090815260016020526040902054818110156105af5760405162461bcd60e51b81526004016102af90610820565b6105b982826109ab565b6001600160a01b0380861660009081526001602052604080822093909355908516815290812080548492906105ef908490610993565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610639919061097c565b60405180910390a350505050565b6000546001600160a01b031690565b505050565b80356001600160a01b03811681146103c257600080fd5b600060208284031215610683578081fd5b61068c8261065b565b9392505050565b600080604083850312156106a5578081fd5b6106ae8361065b565b91506106bc6020840161065b565b90509250929050565b6000806000606084860312156106d9578081fd5b6106e28461065b565b92506106f06020850161065b565b9150604084013590509250925092565b60008060408385031215610712578182fd5b61071b8361065b565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561077457858101830151858201604001528201610758565b818111156107855783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156109a6576109a66109fd565b500190565b6000828210156109bd576109bd6109fd565b500390565b6002810460018216806109d657607f821691505b602082108114156109f757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220743c819d8f8ac0659c3843d740d5c63f39bf4b3e26317a313ff81848e2ecdb7664736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806367e404ce1161007157806367e404ce1461014757806370a082311461015c57806395d89b411461016f578063a457c2d714610177578063a9059cbb1461018a578063dd62ed3e1461019d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100f757806323b872dd1461010c578063313ce5671461011f5780633950935114610134575b600080fd5b6100c16101b0565b6040516100ce9190610748565b60405180910390f35b6100ea6100e5366004610700565b610242565b6040516100ce919061073d565b6100ff610258565b6040516100ce919061097c565b6100ea61011a3660046106c5565b61025e565b6101276102d7565b6040516100ce9190610985565b6100ea610142366004610700565b6102fb565b61014f610399565b6040516100ce9190610729565b6100ff61016a366004610672565b6103a8565b6100c16103c7565b6100ea610185366004610700565b6103d6565b6100ea610198366004610700565b610433565b6100ff6101ab366004610693565b610440565b6060600480546101bf906109c2565b80601f01602080910402602001604051908101604052809291908181526020018280546101eb906109c2565b80156102385780601f1061020d57610100808354040283529160200191610238565b820191906000526020600020905b81548152906001019060200180831161021b57829003601f168201915b5050505050905090565b600061024f33848461046b565b50600192915050565b60035490565b600061026b84848461051f565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156102b85760405162461bcd60e51b81526004016102af90610866565b60405180910390fd5b6102cc85336102c786856109ab565b61046b565b506001949350505050565b7f000000000000000000000000000000000000000000000000000000000000001290565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103329185906102c7908690610993565b816001600061033f610647565b6001600160a01b03166001600160a01b031681526020019081526020016000205461036a9190610993565b60016000610376610647565b6001600160a01b0316815260208101919091526040016000205550600192915050565b6000546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b6060600580546101bf906109c2565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561041a5760405162461bcd60e51b81526004016102af90610937565b61042933856102c786856109ab565b5060019392505050565b600061024f33848461051f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6001600160a01b0383166104915760405162461bcd60e51b81526004016102af906108f3565b6001600160a01b0382166104b75760405162461bcd60e51b81526004016102af906107de565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061051290859061097c565b60405180910390a3505050565b6001600160a01b0383166105455760405162461bcd60e51b81526004016102af906108ae565b6001600160a01b03821661056b5760405162461bcd60e51b81526004016102af9061079b565b610576838383610656565b6001600160a01b038316600090815260016020526040902054818110156105af5760405162461bcd60e51b81526004016102af90610820565b6105b982826109ab565b6001600160a01b0380861660009081526001602052604080822093909355908516815290812080548492906105ef908490610993565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610639919061097c565b60405180910390a350505050565b6000546001600160a01b031690565b505050565b80356001600160a01b03811681146103c257600080fd5b600060208284031215610683578081fd5b61068c8261065b565b9392505050565b600080604083850312156106a5578081fd5b6106ae8361065b565b91506106bc6020840161065b565b90509250929050565b6000806000606084860312156106d9578081fd5b6106e28461065b565b92506106f06020850161065b565b9150604084013590509250925092565b60008060408385031215610712578182fd5b61071b8361065b565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561077457858101830151858201604001528201610758565b818111156107855783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156109a6576109a66109fd565b500190565b6000828210156109bd576109bd6109fd565b500390565b6002810460018216806109d657607f821691505b602082108114156109f757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220743c819d8f8ac0659c3843d740d5c63f39bf4b3e26317a313ff81848e2ecdb7664736f6c63430008000033
Deployed Bytecode Sourcemap
15833:528:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6697:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8871:176;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7817:108::-;;;:::i;:::-;;;;;;;:::i;9529:436::-;;;;;;:::i;:::-;;:::i;16258:100::-;;;:::i;:::-;;;;;;;:::i;10374:293::-;;;;;;:::i;:::-;;:::i;4260:21::-;;;:::i;:::-;;;;;;;:::i;7988:127::-;;;;;;:::i;:::-;;:::i;6916:104::-;;;:::i;11170:381::-;;;;;;:::i;:::-;;:::i;8328:182::-;;;;;;:::i;:::-;;:::i;8573:151::-;;;;;;:::i;:::-;;:::i;6697:100::-;6751:13;6784:5;6777:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6697:100;:::o;8871:176::-;8954:4;8971:46;8988:10;9001:7;9010:6;8971:8;:46::i;:::-;-1:-1:-1;9035:4:0;8871:176;;;;:::o;7817:108::-;7905:12;;7817:108;:::o;9529:436::-;9635:4;9652:36;9662:6;9670:9;9681:6;9652:9;:36::i;:::-;-1:-1:-1;;;;;9728:19:0;;9701:24;9728:19;;;:11;:19;;;;;;;;9756:10;9728:40;;;;;;;;9787:26;;;;9779:79;;;;-1:-1:-1;;;9779:79:0;;;;;;;:::i;:::-;;;;;;;;;9869:64;9878:6;9894:10;9907:25;9926:6;9907:16;:25;:::i;:::-;9869:8;:64::i;:::-;-1:-1:-1;9953:4:0;;9529:436;-1:-1:-1;;;;9529:436:0:o;16258:100::-;16341:9;16258:100;:::o;10374:293::-;10497:10;10462:4;10519:32;;;:11;:32;;;;;;;;-1:-1:-1;;;;;10519:41:0;;;;;;;;;;10462:4;;10480:94;;10510:7;;10519:54;;10563:10;;10519:54;:::i;10480:94::-;10627:10;10601:9;:23;10611:12;:10;:12::i;:::-;-1:-1:-1;;;;;10601:23:0;-1:-1:-1;;;;;10601:23:0;;;;;;;;;;;;;:36;;;;:::i;:::-;10575:9;:23;10585:12;:10;:12::i;:::-;-1:-1:-1;;;;;10575:23:0;;;;;;;;;;;;-1:-1:-1;10575:23:0;:62;-1:-1:-1;10655:4:0;10374:293;;;;:::o;4260:21::-;;;-1:-1:-1;;;;;4260:21:0;;:::o;7988:127::-;-1:-1:-1;;;;;8089:18:0;;8062:7;8089:18;;;:9;:18;;;;;;7988:127;;;;:::o;6916:104::-;6972:13;7005:7;6998:14;;;;;:::i;11170:381::-;11327:10;11263:4;11307:32;;;:11;:32;;;;;;;;-1:-1:-1;;;;;11307:41:0;;;;;;;;;;11357:35;;;;11349:85;;;;-1:-1:-1;;;11349:85:0;;;;;;;:::i;:::-;11445:74;11462:10;11475:7;11484:34;11503:15;11484:16;:34;:::i;11445:74::-;-1:-1:-1;11539:4:0;;11170:381;-1:-1:-1;;;11170:381:0:o;8328:182::-;8414:4;8431:49;8449:10;8462:9;8473:6;8431:9;:49::i;8573:151::-;-1:-1:-1;;;;;8689:18:0;;;8662:7;8689:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8573:151::o;14544:354::-;-1:-1:-1;;;;;14646:19:0;;14638:68;;;;-1:-1:-1;;;14638:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14725:21:0;;14717:68;;;;-1:-1:-1;;;14717:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14806:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14858:32;;;;;14836:6;;14858:32;:::i;:::-;;;;;;;;14544:354;;;:::o;12048:604::-;-1:-1:-1;;;;;12154:20:0;;12146:70;;;;-1:-1:-1;;;12146:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12235:23:0;;12227:71;;;;-1:-1:-1;;;12227:71:0;;;;;;;:::i;:::-;12311:47;12332:6;12340:9;12351:6;12311:20;:47::i;:::-;-1:-1:-1;;;;;12395:17:0;;12371:21;12395:17;;;:9;:17;;;;;;12431:23;;;;12423:74;;;;-1:-1:-1;;;12423:74:0;;;;;;;:::i;:::-;12528:22;12544:6;12528:13;:22;:::i;:::-;-1:-1:-1;;;;;12508:17:0;;;;;;;:9;:17;;;;;;:42;;;;12561:20;;;;;;;;:30;;12585:6;;12508:17;12561:30;;12585:6;;12561:30;:::i;:::-;;;;;;;;12626:9;-1:-1:-1;;;;;12609:35:0;12618:6;-1:-1:-1;;;;;12609:35:0;;12637:6;12609:35;;;;;;:::i;:::-;;;;;;;;12048:604;;;;:::o;4288:94::-;4341:7;4368:6;-1:-1:-1;;;;;4368:6:0;4288:94;:::o;15501:92::-;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:203::-;-1:-1:-1;;;;;1458:32:1;;;;1440:51;;1428:2;1413:18;;1395:102::o;1502:187::-;1667:14;;1660:22;1642:41;;1630:2;1615:18;;1597:92::o;1694:603::-;;1835:2;1864;1853:9;1846:21;1896:6;1890:13;1939:6;1934:2;1923:9;1919:18;1912:34;1964:4;1977:140;1991:6;1988:1;1985:13;1977:140;;;2086:14;;;2082:23;;2076:30;2052:17;;;2071:2;2048:26;2041:66;2006:10;;1977:140;;;2135:6;2132:1;2129:13;2126:2;;;2205:4;2200:2;2191:6;2180:9;2176:22;2172:31;2165:45;2126:2;-1:-1:-1;2281:2:1;2260:15;-1:-1:-1;;2256:29:1;2241:45;;;;2288:2;2237:54;;1815:482;-1:-1:-1;;;1815:482:1:o;2302:399::-;2504:2;2486:21;;;2543:2;2523:18;;;2516:30;2582:34;2577:2;2562:18;;2555:62;-1:-1:-1;;;2648:2:1;2633:18;;2626:33;2691:3;2676:19;;2476:225::o;2706:398::-;2908:2;2890:21;;;2947:2;2927:18;;;2920:30;2986:34;2981:2;2966:18;;2959:62;-1:-1:-1;;;3052:2:1;3037:18;;3030:32;3094:3;3079:19;;2880:224::o;3109:402::-;3311:2;3293:21;;;3350:2;3330:18;;;3323:30;3389:34;3384:2;3369:18;;3362:62;-1:-1:-1;;;3455:2:1;3440:18;;3433:36;3501:3;3486:19;;3283:228::o;3516:404::-;3718:2;3700:21;;;3757:2;3737:18;;;3730:30;3796:34;3791:2;3776:18;;3769:62;-1:-1:-1;;;3862:2:1;3847:18;;3840:38;3910:3;3895:19;;3690:230::o;3925:401::-;4127:2;4109:21;;;4166:2;4146:18;;;4139:30;4205:34;4200:2;4185:18;;4178:62;-1:-1:-1;;;4271:2:1;4256:18;;4249:35;4316:3;4301:19;;4099:227::o;4331:400::-;4533:2;4515:21;;;4572:2;4552:18;;;4545:30;4611:34;4606:2;4591:18;;4584:62;-1:-1:-1;;;4677:2:1;4662:18;;4655:34;4721:3;4706:19;;4505:226::o;4736:401::-;4938:2;4920:21;;;4977:2;4957:18;;;4950:30;5016:34;5011:2;4996:18;;4989:62;-1:-1:-1;;;5082:2:1;5067:18;;5060:35;5127:3;5112:19;;4910:227::o;5142:177::-;5288:25;;;5276:2;5261:18;;5243:76::o;5324:184::-;5496:4;5484:17;;;;5466:36;;5454:2;5439:18;;5421:87::o;5513:128::-;;5584:1;5580:6;5577:1;5574:13;5571:2;;;5590:18;;:::i;:::-;-1:-1:-1;5626:9:1;;5561:80::o;5646:125::-;;5714:1;5711;5708:8;5705:2;;;5719:18;;:::i;:::-;-1:-1:-1;5756:9:1;;5695:76::o;5776:380::-;5861:1;5851:12;;5908:1;5898:12;;;5919:2;;5973:4;5965:6;5961:17;5951:27;;5919:2;6026;6018:6;6015:14;5995:18;5992:38;5989:2;;;6072:10;6067:3;6063:20;6060:1;6053:31;6107:4;6104:1;6097:15;6135:4;6132:1;6125:15;5989:2;;5831:325;;;:::o;6161:127::-;6222:10;6217:3;6213:20;6210:1;6203:31;6253:4;6250:1;6243:15;6277:4;6274:1;6267:15
Swarm Source
ipfs://743c819d8f8ac0659c3843d740d5c63f39bf4b3e26317a313ff81848e2ecdb76
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.