ERC-20
Overview
Max Total Supply
1,000,000,000 REKT
Holders
17
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,000,000 REKTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
REKT
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-19 */ /** ░░░░░░░░░░░░░░░░▄▄▄░░░░░░░░░░░░░░░░░ ░░░░░░░░░░▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄▄▄░░░░░░░░░ ░░░░░░▄▄▀▀░░░░░░░░░░░░░░░░░▀▄▄░░░░░░ ░░░░▄█░░░░░░░░░░░░░░░░░░░░░░░░▀▄░░░░ ░░░▄▀░░░░░░░░░░░░░░░░░░░░░░░░░░▀▄░░░ ░░█▀░░░░░░░░░░░░░░░░░░░░░░░░░░░░▀█░░ ░▄█░░░░░░░░░▄▄▄▄▄░░▀▀▀▀░░░░▄░░░░░▀▄░ ░█░░░░░░░░▄▄▄▄▄▄░██▀▀▀▀██▄▄▄▄░░░░░▀▄ █▀░░░░░░▀▀██▀▀▀▀██▀░░░░▀██▀▀▀▀█▀░░░█ █░░░░░░░░████░░░░█░░░█░░██░░░██░░░░█ █░░░░░░░▀▀██▄▄▄▄█▀░░░█░░▀██▄▄█▀░░░▄▀ █░░░░░░░░░▀████▀▀▄▄▄▄██▄▄████▀░░░░█░ █░░▄▀░░░░░░░▄▄▄▄██████▀▀██▄▄░░░░░░█░ ▀▄▀░░▄▄▄█▀▀▀▀████▀█▀███▀▀▀█████▄▄▄█░ ░▀▄░░▀█░░░░░░░░░▀▀▀████▀▀▀░░░░▄▄▀█░░ ░░░▀▄░░▀░░░░░░░░░░▀░▀█░░░░░░░░░░█░░░ ░░░░░▀▄░░░░░░░░░░░░░░▀░░░░░░░░▄▀░░░░ ░░░░░░░▀▀▄▄░░░░░░░░░░░░░░░░▄▄▀░░░░░░ ░░░░░░░░░░░▀▀█▄▄▄▄▄▄▄▄▄▄▄█▀▀░░░░░░░░ **/ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (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/[email protected] // OpenZeppelin Contracts v4.4.0 (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/[email protected] // OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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(_msgSender(), 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(_msgSender(), 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][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), 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(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 contracts/neetcoin.sol pragma solidity ^0.8.0; contract REKT is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; constructor(uint256 _totalSupply) ERC20("Rekt", "REKT") { _mint(msg.sender, _totalSupply); } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "lmao u r blacklisted, neet"); if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "are you stupid, you can't trade yet, pajeet"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "not allowed, pajeet"); } } function burn(uint256 value) external { _burn(msg.sender, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620017b7380380620017b7833981016040819052620000349162000454565b6040518060400160405280600481526020016314995add60e21b81525060405180604001604052806004815260200163149152d560e21b8152506200008862000082620000cf60201b60201c565b620000d3565b81516200009d906004906020850190620003ae565b508051620000b3906005906020840190620003ae565b505050620000c833826200012360201b60201c565b50620005c8565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001555760405162461bcd60e51b81526004016200014c9062000526565b60405180910390fd5b620001636000838362000205565b806003600082825462000177919062000566565b90915550506001600160a01b03821660009081526001602052604081208054839290620001a690849062000566565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001eb9085906200055d565b60405180910390a362000201600083836200037f565b5050565b6001600160a01b0382166000908152600a602052604090205460ff161580156200024857506001600160a01b0383166000908152600a602052604090205460ff16155b620002675760405162461bcd60e51b81526004016200014c906200046d565b6009546001600160a01b0316620002e1576200028262000384565b6001600160a01b0316836001600160a01b03161480620002bc5750620002a762000384565b6001600160a01b0316826001600160a01b0316145b620002db5760405162461bcd60e51b81526004016200014c90620004db565b6200037f565b60065460ff1680156200030157506009546001600160a01b038481169116145b156200037f576007548162000321846200039360201b620005891760201c565b6200032d919062000566565b111580156200036057506008548162000351846200039360201b620005891760201c565b6200035d919062000566565b10155b6200037f5760405162461bcd60e51b81526004016200014c90620004a4565b505050565b6000546001600160a01b031690565b6001600160a01b031660009081526001602052604090205490565b828054620003bc906200058b565b90600052602060002090601f016020900481019282620003e057600085556200042b565b82601f10620003fb57805160ff19168380011785556200042b565b828001600101855582156200042b579182015b828111156200042b5782518255916020019190600101906200040e565b50620004399291506200043d565b5090565b5b808211156200043957600081556001016200043e565b60006020828403121562000466578081fd5b5051919050565b6020808252601a908201527f6c6d616f2075207220626c61636b6c69737465642c206e656574000000000000604082015260600190565b60208082526013908201527f6e6f7420616c6c6f7765642c2070616a65657400000000000000000000000000604082015260600190565b6020808252602b908201527f61726520796f75207374757069642c20796f752063616e27742074726164652060408201526a1e595d0b081c185a99595d60aa1b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200058657634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620005a057607f821691505b60208210811415620005c257634e487b7160e01b600052602260045260246000fd5b50919050565b6111df80620005d86000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461026b57806395d89b4114610273578063a457c2d71461027b578063a9059cbb1461028e578063dd62ed3e146102a1578063f2fde38b146102b457610142565b806349bd5a5e1461022b57806370a0823114610240578063715018a614610253578063860a32ec1461025b57806389f9a1d31461026357610142565b806323b872dd1161010a57806323b872dd146101b5578063313ce567146101c857806339509351146101dd5780633aa633aa146101f0578063404e51291461020557806342966c681461021857610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461018557806318160ddd146101985780631ab99e12146101ad575b600080fd5b61014f6102c7565b60405161015c9190610d31565b60405180910390f35b610178610173366004610c90565b610359565b60405161015c9190610d26565b610178610193366004610bd9565b610376565b6101a061038b565b60405161015c9190611112565b6101a0610391565b6101786101c3366004610c2c565b610397565b6101d0610430565b60405161015c919061111b565b6101786101eb366004610c90565b610435565b6102036101fe366004610cb9565b610489565b005b610203610213366004610c67565b610503565b610203610226366004610cfa565b61056d565b61023361057a565b60405161015c9190610d12565b6101a061024e366004610bd9565b610589565b6102036105a8565b6101786105f3565b6101a06105fc565b610233610602565b61014f610611565b610178610289366004610c90565b610620565b61017861029c366004610c90565b610699565b6101a06102af366004610bfa565b6106ad565b6102036102c2366004610bd9565b6106d8565b6060600480546102d690611158565b80601f016020809104026020016040519081016040528092919081815260200182805461030290611158565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b600061036d610366610746565b848461074a565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103a48484846107fe565b6001600160a01b0384166000908152600260205260408120816103c5610746565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104115760405162461bcd60e51b815260040161040890610f86565b60405180910390fd5b6104258561041d610746565b85840361074a565b506001949350505050565b601290565b600061036d610442610746565b848460026000610450610746565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104849190611129565b61074a565b610491610746565b6001600160a01b03166104a2610602565b6001600160a01b0316146104c85760405162461bcd60e51b815260040161040890610fce565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b61050b610746565b6001600160a01b031661051c610602565b6001600160a01b0316146105425760405162461bcd60e51b815260040161040890610fce565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6105773382610928565b50565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b6105b0610746565b6001600160a01b03166105c1610602565b6001600160a01b0316146105e75760405162461bcd60e51b815260040161040890610fce565b6105f16000610a1a565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b6060600580546102d690611158565b6000806002600061062f610746565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561067b5760405162461bcd60e51b8152600401610408906110cd565b61068f610686610746565b8585840361074a565b5060019392505050565b600061036d6106a6610746565b84846107fe565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106e0610746565b6001600160a01b03166106f1610602565b6001600160a01b0316146107175760405162461bcd60e51b815260040161040890610fce565b6001600160a01b03811661073d5760405162461bcd60e51b815260040161040890610e09565b61057781610a1a565b3390565b6001600160a01b0383166107705760405162461bcd60e51b815260040161040890611089565b6001600160a01b0382166107965760405162461bcd60e51b815260040161040890610e4f565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107f1908590611112565b60405180910390a3505050565b6001600160a01b0383166108245760405162461bcd60e51b815260040161040890611044565b6001600160a01b03821661084a5760405162461bcd60e51b815260040161040890610d84565b610855838383610a6a565b6001600160a01b0383166000908152600160205260409020548181101561088e5760405162461bcd60e51b815260040161040890610e91565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906108c5908490611129565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161090f9190611112565b60405180910390a3610922848484610a15565b50505050565b6001600160a01b03821661094e5760405162461bcd60e51b815260040161040890611003565b61095a82600083610a6a565b6001600160a01b038216600090815260016020526040902054818110156109935760405162461bcd60e51b815260040161040890610dc7565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109c2908490611141565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a05908690611112565b60405180910390a3610a15836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610aac57506001600160a01b0383166000908152600a602052604090205460ff16155b610ac85760405162461bcd60e51b815260040161040890610ed7565b6009546001600160a01b0316610b3857610ae0610602565b6001600160a01b0316836001600160a01b03161480610b175750610b02610602565b6001600160a01b0316826001600160a01b0316145b610b335760405162461bcd60e51b815260040161040890610f3b565b610a15565b60065460ff168015610b5757506009546001600160a01b038481169116145b15610a155760075481610b6984610589565b610b739190611129565b11158015610b96575060085481610b8984610589565b610b939190611129565b10155b610a155760405162461bcd60e51b815260040161040890610f0e565b80356001600160a01b03811681146105a357600080fd5b803580151581146105a357600080fd5b600060208284031215610bea578081fd5b610bf382610bb2565b9392505050565b60008060408385031215610c0c578081fd5b610c1583610bb2565b9150610c2360208401610bb2565b90509250929050565b600080600060608486031215610c40578081fd5b610c4984610bb2565b9250610c5760208501610bb2565b9150604084013590509250925092565b60008060408385031215610c79578182fd5b610c8283610bb2565b9150610c2360208401610bc9565b60008060408385031215610ca2578182fd5b610cab83610bb2565b946020939093013593505050565b60008060008060808587031215610cce578081fd5b610cd785610bc9565b9350610ce560208601610bb2565b93969395505050506040820135916060013590565b600060208284031215610d0b578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610d5d57858101830151858201604001528201610d41565b81811115610d6e5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252601a908201527f6c6d616f2075207220626c61636b6c69737465642c206e656574000000000000604082015260600190565b6020808252601390820152721b9bdd08185b1b1bddd9590b081c185a99595d606a1b604082015260600190565b6020808252602b908201527f61726520796f75207374757069642c20796f752063616e27742074726164652060408201526a1e595d0b081c185a99595d60aa1b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b6000821982111561113c5761113c611193565b500190565b60008282101561115357611153611193565b500390565b60028104600182168061116c57607f821691505b6020821081141561118d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220208769c120a5ec17ce6451cf973dd150f7ae713b909a07d7daa20b5fe98c985664736f6c634300080000330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461026b57806395d89b4114610273578063a457c2d71461027b578063a9059cbb1461028e578063dd62ed3e146102a1578063f2fde38b146102b457610142565b806349bd5a5e1461022b57806370a0823114610240578063715018a614610253578063860a32ec1461025b57806389f9a1d31461026357610142565b806323b872dd1161010a57806323b872dd146101b5578063313ce567146101c857806339509351146101dd5780633aa633aa146101f0578063404e51291461020557806342966c681461021857610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461018557806318160ddd146101985780631ab99e12146101ad575b600080fd5b61014f6102c7565b60405161015c9190610d31565b60405180910390f35b610178610173366004610c90565b610359565b60405161015c9190610d26565b610178610193366004610bd9565b610376565b6101a061038b565b60405161015c9190611112565b6101a0610391565b6101786101c3366004610c2c565b610397565b6101d0610430565b60405161015c919061111b565b6101786101eb366004610c90565b610435565b6102036101fe366004610cb9565b610489565b005b610203610213366004610c67565b610503565b610203610226366004610cfa565b61056d565b61023361057a565b60405161015c9190610d12565b6101a061024e366004610bd9565b610589565b6102036105a8565b6101786105f3565b6101a06105fc565b610233610602565b61014f610611565b610178610289366004610c90565b610620565b61017861029c366004610c90565b610699565b6101a06102af366004610bfa565b6106ad565b6102036102c2366004610bd9565b6106d8565b6060600480546102d690611158565b80601f016020809104026020016040519081016040528092919081815260200182805461030290611158565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b600061036d610366610746565b848461074a565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103a48484846107fe565b6001600160a01b0384166000908152600260205260408120816103c5610746565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104115760405162461bcd60e51b815260040161040890610f86565b60405180910390fd5b6104258561041d610746565b85840361074a565b506001949350505050565b601290565b600061036d610442610746565b848460026000610450610746565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104849190611129565b61074a565b610491610746565b6001600160a01b03166104a2610602565b6001600160a01b0316146104c85760405162461bcd60e51b815260040161040890610fce565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b61050b610746565b6001600160a01b031661051c610602565b6001600160a01b0316146105425760405162461bcd60e51b815260040161040890610fce565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6105773382610928565b50565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b6105b0610746565b6001600160a01b03166105c1610602565b6001600160a01b0316146105e75760405162461bcd60e51b815260040161040890610fce565b6105f16000610a1a565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b6060600580546102d690611158565b6000806002600061062f610746565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561067b5760405162461bcd60e51b8152600401610408906110cd565b61068f610686610746565b8585840361074a565b5060019392505050565b600061036d6106a6610746565b84846107fe565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106e0610746565b6001600160a01b03166106f1610602565b6001600160a01b0316146107175760405162461bcd60e51b815260040161040890610fce565b6001600160a01b03811661073d5760405162461bcd60e51b815260040161040890610e09565b61057781610a1a565b3390565b6001600160a01b0383166107705760405162461bcd60e51b815260040161040890611089565b6001600160a01b0382166107965760405162461bcd60e51b815260040161040890610e4f565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107f1908590611112565b60405180910390a3505050565b6001600160a01b0383166108245760405162461bcd60e51b815260040161040890611044565b6001600160a01b03821661084a5760405162461bcd60e51b815260040161040890610d84565b610855838383610a6a565b6001600160a01b0383166000908152600160205260409020548181101561088e5760405162461bcd60e51b815260040161040890610e91565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906108c5908490611129565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161090f9190611112565b60405180910390a3610922848484610a15565b50505050565b6001600160a01b03821661094e5760405162461bcd60e51b815260040161040890611003565b61095a82600083610a6a565b6001600160a01b038216600090815260016020526040902054818110156109935760405162461bcd60e51b815260040161040890610dc7565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109c2908490611141565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a05908690611112565b60405180910390a3610a15836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610aac57506001600160a01b0383166000908152600a602052604090205460ff16155b610ac85760405162461bcd60e51b815260040161040890610ed7565b6009546001600160a01b0316610b3857610ae0610602565b6001600160a01b0316836001600160a01b03161480610b175750610b02610602565b6001600160a01b0316826001600160a01b0316145b610b335760405162461bcd60e51b815260040161040890610f3b565b610a15565b60065460ff168015610b5757506009546001600160a01b038481169116145b15610a155760075481610b6984610589565b610b739190611129565b11158015610b96575060085481610b8984610589565b610b939190611129565b10155b610a155760405162461bcd60e51b815260040161040890610f0e565b80356001600160a01b03811681146105a357600080fd5b803580151581146105a357600080fd5b600060208284031215610bea578081fd5b610bf382610bb2565b9392505050565b60008060408385031215610c0c578081fd5b610c1583610bb2565b9150610c2360208401610bb2565b90509250929050565b600080600060608486031215610c40578081fd5b610c4984610bb2565b9250610c5760208501610bb2565b9150604084013590509250925092565b60008060408385031215610c79578182fd5b610c8283610bb2565b9150610c2360208401610bc9565b60008060408385031215610ca2578182fd5b610cab83610bb2565b946020939093013593505050565b60008060008060808587031215610cce578081fd5b610cd785610bc9565b9350610ce560208601610bb2565b93969395505050506040820135916060013590565b600060208284031215610d0b578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610d5d57858101830151858201604001528201610d41565b81811115610d6e5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252601a908201527f6c6d616f2075207220626c61636b6c69737465642c206e656574000000000000604082015260600190565b6020808252601390820152721b9bdd08185b1b1bddd9590b081c185a99595d606a1b604082015260600190565b6020808252602b908201527f61726520796f75207374757069642c20796f752063616e27742074726164652060408201526a1e595d0b081c185a99595d60aa1b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b6000821982111561113c5761113c611193565b500190565b60008282101561115357611153611193565b500390565b60028104600182168061116c57607f821691505b6020821081141561118d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220208769c120a5ec17ce6451cf973dd150f7ae713b909a07d7daa20b5fe98c985664736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode Sourcemap
21312:1501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11288:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13455:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21488:42::-;;;;;;:::i;:::-;;:::i;12408:108::-;;;:::i;:::-;;;;;;;:::i;21415:31::-;;;:::i;14106:492::-;;;;;;:::i;:::-;;:::i;12250:93::-;;;:::i;:::-;;;;;;;:::i;15007:215::-;;;;;;:::i;:::-;;:::i;21796:301::-;;;;;;:::i;:::-;;:::i;:::-;;21653:135;;;;;;:::i;:::-;;:::i;22729:81::-;;;;;;:::i;:::-;;:::i;21453:28::-;;;:::i;:::-;;;;;;;:::i;12579:127::-;;;;;;:::i;:::-;;:::i;4693:103::-;;;:::i;21351:19::-;;;:::i;21377:31::-;;;:::i;4042:87::-;;;:::i;11507:104::-;;;:::i;15725:413::-;;;;;;:::i;:::-;;:::i;12919:175::-;;;;;;:::i;:::-;;:::i;13157:151::-;;;;;;:::i;:::-;;:::i;4951:201::-;;;;;;:::i;:::-;;:::i;11288:100::-;11342:13;11375:5;11368:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11288:100;:::o;13455:169::-;13538:4;13555:39;13564:12;:10;:12::i;:::-;13578:7;13587:6;13555:8;:39::i;:::-;-1:-1:-1;13612:4:0;13455:169;;;;:::o;21488:42::-;;;;;;;;;;;;;;;:::o;12408:108::-;12496:12;;12408:108;:::o;21415:31::-;;;;:::o;14106:492::-;14246:4;14263:36;14273:6;14281:9;14292:6;14263:9;:36::i;:::-;-1:-1:-1;;;;;14339:19:0;;14312:24;14339:19;;;:11;:19;;;;;14312:24;14359:12;:10;:12::i;:::-;-1:-1:-1;;;;;14339:33:0;-1:-1:-1;;;;;14339:33:0;;;;;;;;;;;;;14312:60;;14411:6;14391:16;:26;;14383:79;;;;-1:-1:-1;;;14383:79:0;;;;;;;:::i;:::-;;;;;;;;;14498:57;14507:6;14515:12;:10;:12::i;:::-;14548:6;14529:16;:25;14498:8;:57::i;:::-;-1:-1:-1;14586:4:0;;14106:492;-1:-1:-1;;;;14106:492:0:o;12250:93::-;12333:2;12250:93;:::o;15007:215::-;15095:4;15112:80;15121:12;:10;:12::i;:::-;15135:7;15181:10;15144:11;:25;15156:12;:10;:12::i;:::-;-1:-1:-1;;;;;15144:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15144:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;15112:8;:80::i;21796:301::-;4273:12;:10;:12::i;:::-;-1:-1:-1;;;;;4262:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4262:23:0;;4254:68;;;;-1:-1:-1;;;4254:68:0;;;;;;;:::i;:::-;21936:7:::1;:18:::0;;-1:-1:-1;;21936:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;21965:13:::1;:30:::0;;-1:-1:-1;;;;;;21965:30:0::1;-1:-1:-1::0;;;;;21965:30:0;;;::::1;::::0;;;::::1;::::0;;;22006:16:::1;:36:::0;22053:16:::1;:36:::0;21796:301::o;21653:135::-;4273:12;:10;:12::i;:::-;-1:-1:-1;;;;;4262:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4262:23:0;;4254:68;;;;-1:-1:-1;;;4254:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21742:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;21742:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21653:135::o;22729:81::-;22778:24;22784:10;22796:5;22778;:24::i;:::-;22729:81;:::o;21453:28::-;;;-1:-1:-1;;;;;21453:28:0;;:::o;12579:127::-;-1:-1:-1;;;;;12680:18:0;;12653:7;12680:18;;;:9;:18;;;;;;12579:127;;;;:::o;4693:103::-;4273:12;:10;:12::i;:::-;-1:-1:-1;;;;;4262:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4262:23:0;;4254:68;;;;-1:-1:-1;;;4254:68:0;;;;;;;:::i;:::-;4758:30:::1;4785:1;4758:18;:30::i;:::-;4693:103::o:0;21351:19::-;;;;;;:::o;21377:31::-;;;;:::o;4042:87::-;4088:7;4115:6;-1:-1:-1;;;;;4115:6:0;4042:87;:::o;11507:104::-;11563:13;11596:7;11589:14;;;;;:::i;15725:413::-;15818:4;15835:24;15862:11;:25;15874:12;:10;:12::i;:::-;-1:-1:-1;;;;;15862:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15862:25:0;;;:34;;;;;;;;;;;-1:-1:-1;15915:35:0;;;;15907:85;;;;-1:-1:-1;;;15907:85:0;;;;;;;:::i;:::-;16028:67;16037:12;:10;:12::i;:::-;16051:7;16079:15;16060:16;:34;16028:8;:67::i;:::-;-1:-1:-1;16126:4:0;;15725:413;-1:-1:-1;;;15725:413:0:o;12919:175::-;13005:4;13022:42;13032:12;:10;:12::i;:::-;13046:9;13057:6;13022:9;:42::i;13157:151::-;-1:-1:-1;;;;;13273:18:0;;;13246:7;13273:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13157:151::o;4951:201::-;4273:12;:10;:12::i;:::-;-1:-1:-1;;;;;4262:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4262:23:0;;4254:68;;;;-1:-1:-1;;;4254:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5040:22:0;::::1;5032:73;;;;-1:-1:-1::0;;;5032:73:0::1;;;;;;;:::i;:::-;5116:28;5135:8;5116:18;:28::i;2760:98::-:0;2840:10;2760:98;:::o;19409:380::-;-1:-1:-1;;;;;19545:19:0;;19537:68;;;;-1:-1:-1;;;19537:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19624:21:0;;19616:68;;;;-1:-1:-1;;;19616:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19697:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;19749:32;;;;;19727:6;;19749:32;:::i;:::-;;;;;;;;19409:380;;;:::o;16628:733::-;-1:-1:-1;;;;;16768:20:0;;16760:70;;;;-1:-1:-1;;;16760:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16849:23:0;;16841:71;;;;-1:-1:-1;;;16841:71:0;;;;;;;:::i;:::-;16925:47;16946:6;16954:9;16965:6;16925:20;:47::i;:::-;-1:-1:-1;;;;;17009:17:0;;16985:21;17009:17;;;:9;:17;;;;;;17045:23;;;;17037:74;;;;-1:-1:-1;;;17037:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17147:17:0;;;;;;;:9;:17;;;;;;17167:22;;;17147:42;;17211:20;;;;;;;;:30;;17183:6;;17147:17;17211:30;;17183:6;;17211:30;:::i;:::-;;;;;;;;17276:9;-1:-1:-1;;;;;17259:35:0;17268:6;-1:-1:-1;;;;;17259:35:0;;17287:6;17259:35;;;;;;:::i;:::-;;;;;;;;17307:46;17327:6;17335:9;17346:6;17307:19;:46::i;:::-;16628:733;;;;:::o;18380:591::-;-1:-1:-1;;;;;18464:21:0;;18456:67;;;;-1:-1:-1;;;18456:67:0;;;;;;;:::i;:::-;18536:49;18557:7;18574:1;18578:6;18536:20;:49::i;:::-;-1:-1:-1;;;;;18623:18:0;;18598:22;18623:18;;;:9;:18;;;;;;18660:24;;;;18652:71;;;;-1:-1:-1;;;18652:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18759:18:0;;;;;;:9;:18;;;;;18780:23;;;18759:44;;18825:12;:22;;18797:6;;18759:18;18825:22;;18797:6;;18825:22;:::i;:::-;;;;-1:-1:-1;;18865:37:0;;18891:1;;-1:-1:-1;;;;;18865:37:0;;;;;;;18895:6;;18865:37;:::i;:::-;;;;;;;;18915:48;18935:7;18952:1;18956:6;18915:48;18380:591;;;:::o;5312:191::-;5386:16;5405:6;;-1:-1:-1;;;;;5422:17:0;;;-1:-1:-1;;;;;;5422:17:0;;;;;;5455:40;;5405:6;;;;;;;5455:40;;5386:16;5455:40;5312:191;;:::o;22105:616::-;-1:-1:-1;;;;;22257:14:0;;;;;;:10;:14;;;;;;;;22256:15;:36;;;;-1:-1:-1;;;;;;22276:16:0;;;;;;:10;:16;;;;;;;;22275:17;22256:36;22248:75;;;;-1:-1:-1;;;22248:75:0;;;;;;;:::i;:::-;22340:13;;-1:-1:-1;;;;;22340:13:0;22336:169;;22400:7;:5;:7::i;:::-;-1:-1:-1;;;;;22392:15:0;:4;-1:-1:-1;;;;;22392:15:0;;:32;;;;22417:7;:5;:7::i;:::-;-1:-1:-1;;;;;22411:13:0;:2;-1:-1:-1;;;;;22411:13:0;;22392:32;22384:88;;;;-1:-1:-1;;;22384:88:0;;;;;;;:::i;:::-;22487:7;;22336:169;22521:7;;;;:32;;;;-1:-1:-1;22540:13:0;;-1:-1:-1;;;;;22532:21:0;;;22540:13;;22532:21;22521:32;22517:197;;;22610:16;;22600:6;22578:19;22594:2;22578:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;22662:16;;22652:6;22630:19;22646:2;22630:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;22578:100;22570:132;;;;-1:-1:-1;;;22570:132:0;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:162;261:20;;317:13;;310:21;300:32;;290:2;;346:1;343;336:12;361:198;;473:2;461:9;452:7;448:23;444:32;441:2;;;494:6;486;479:22;441:2;522:31;543:9;522:31;:::i;:::-;512:41;431:128;-1:-1:-1;;;431:128:1:o;564:274::-;;;693:2;681:9;672:7;668:23;664:32;661:2;;;714:6;706;699:22;661:2;742:31;763:9;742:31;:::i;:::-;732:41;;792:40;828:2;817:9;813:18;792:40;:::i;:::-;782:50;;651:187;;;;;:::o;843:342::-;;;;989:2;977:9;968:7;964:23;960:32;957:2;;;1010:6;1002;995:22;957:2;1038:31;1059:9;1038:31;:::i;:::-;1028:41;;1088:40;1124:2;1113:9;1109:18;1088:40;:::i;:::-;1078:50;;1175:2;1164:9;1160:18;1147:32;1137:42;;947:238;;;;;:::o;1190:268::-;;;1316:2;1304:9;1295:7;1291:23;1287:32;1284:2;;;1337:6;1329;1322:22;1284:2;1365:31;1386:9;1365:31;:::i;:::-;1355:41;;1415:37;1448:2;1437:9;1433:18;1415:37;:::i;1463:266::-;;;1592:2;1580:9;1571:7;1567:23;1563:32;1560:2;;;1613:6;1605;1598:22;1560:2;1641:31;1662:9;1641:31;:::i;:::-;1631:41;1719:2;1704:18;;;;1691:32;;-1:-1:-1;;;1550:179:1:o;1734:405::-;;;;;1894:3;1882:9;1873:7;1869:23;1865:33;1862:2;;;1916:6;1908;1901:22;1862:2;1944:28;1962:9;1944:28;:::i;:::-;1934:38;;1991:40;2027:2;2016:9;2012:18;1991:40;:::i;:::-;1852:287;;1981:50;;-1:-1:-1;;;;2078:2:1;2063:18;;2050:32;;2129:2;2114:18;2101:32;;1852:287::o;2144:190::-;;2256:2;2244:9;2235:7;2231:23;2227:32;2224:2;;;2277:6;2269;2262:22;2224:2;-1:-1:-1;2305:23:1;;2214:120;-1:-1:-1;2214:120:1:o;2339:203::-;-1:-1:-1;;;;;2503:32:1;;;;2485:51;;2473:2;2458:18;;2440:102::o;2547:187::-;2712:14;;2705:22;2687:41;;2675:2;2660:18;;2642:92::o;2739:603::-;;2880:2;2909;2898:9;2891:21;2941:6;2935:13;2984:6;2979:2;2968:9;2964:18;2957:34;3009:4;3022:140;3036:6;3033:1;3030:13;3022:140;;;3131:14;;;3127:23;;3121:30;3097:17;;;3116:2;3093:26;3086:66;3051:10;;3022:140;;;3180:6;3177:1;3174:13;3171:2;;;3250:4;3245:2;3236:6;3225:9;3221:22;3217:31;3210:45;3171:2;-1:-1:-1;3326:2:1;3305:15;-1:-1:-1;;3301:29:1;3286:45;;;;3333:2;3282:54;;2860:482;-1:-1:-1;;;2860:482:1:o;3347:399::-;3549:2;3531:21;;;3588:2;3568:18;;;3561:30;3627:34;3622:2;3607:18;;3600:62;-1:-1:-1;;;3693:2:1;3678:18;;3671:33;3736:3;3721:19;;3521:225::o;3751:398::-;3953:2;3935:21;;;3992:2;3972:18;;;3965:30;4031:34;4026:2;4011:18;;4004:62;-1:-1:-1;;;4097:2:1;4082:18;;4075:32;4139:3;4124:19;;3925:224::o;4154:402::-;4356:2;4338:21;;;4395:2;4375:18;;;4368:30;4434:34;4429:2;4414:18;;4407:62;-1:-1:-1;;;4500:2:1;4485:18;;4478:36;4546:3;4531:19;;4328:228::o;4561:398::-;4763:2;4745:21;;;4802:2;4782:18;;;4775:30;4841:34;4836:2;4821:18;;4814:62;-1:-1:-1;;;4907:2:1;4892:18;;4885:32;4949:3;4934:19;;4735:224::o;4964:402::-;5166:2;5148:21;;;5205:2;5185:18;;;5178:30;5244:34;5239:2;5224:18;;5217:62;-1:-1:-1;;;5310:2:1;5295:18;;5288:36;5356:3;5341:19;;5138:228::o;5371:350::-;5573:2;5555:21;;;5612:2;5592:18;;;5585:30;5651:28;5646:2;5631:18;;5624:56;5712:2;5697:18;;5545:176::o;5726:343::-;5928:2;5910:21;;;5967:2;5947:18;;;5940:30;-1:-1:-1;;;6001:2:1;5986:18;;5979:49;6060:2;6045:18;;5900:169::o;6074:407::-;6276:2;6258:21;;;6315:2;6295:18;;;6288:30;6354:34;6349:2;6334:18;;6327:62;-1:-1:-1;;;6420:2:1;6405:18;;6398:41;6471:3;6456:19;;6248:233::o;6486:404::-;6688:2;6670:21;;;6727:2;6707:18;;;6700:30;6766:34;6761:2;6746:18;;6739:62;-1:-1:-1;;;6832:2:1;6817:18;;6810:38;6880:3;6865:19;;6660:230::o;6895:356::-;7097:2;7079:21;;;7116:18;;;7109:30;7175:34;7170:2;7155:18;;7148:62;7242:2;7227:18;;7069:182::o;7256:397::-;7458:2;7440:21;;;7497:2;7477:18;;;7470:30;7536:34;7531:2;7516:18;;7509:62;-1:-1:-1;;;7602:2:1;7587:18;;7580:31;7643:3;7628:19;;7430:223::o;7658:401::-;7860:2;7842:21;;;7899:2;7879:18;;;7872:30;7938:34;7933:2;7918:18;;7911:62;-1:-1:-1;;;8004:2:1;7989:18;;7982:35;8049:3;8034:19;;7832:227::o;8064:400::-;8266:2;8248:21;;;8305:2;8285:18;;;8278:30;8344:34;8339:2;8324:18;;8317:62;-1:-1:-1;;;8410:2:1;8395:18;;8388:34;8454:3;8439:19;;8238:226::o;8469:401::-;8671:2;8653:21;;;8710:2;8690:18;;;8683:30;8749:34;8744:2;8729:18;;8722:62;-1:-1:-1;;;8815:2:1;8800:18;;8793:35;8860:3;8845:19;;8643:227::o;8875:177::-;9021:25;;;9009:2;8994:18;;8976:76::o;9057:184::-;9229:4;9217:17;;;;9199:36;;9187:2;9172:18;;9154:87::o;9246:128::-;;9317:1;9313:6;9310:1;9307:13;9304:2;;;9323:18;;:::i;:::-;-1:-1:-1;9359:9:1;;9294:80::o;9379:125::-;;9447:1;9444;9441:8;9438:2;;;9452:18;;:::i;:::-;-1:-1:-1;9489:9:1;;9428:76::o;9509:380::-;9594:1;9584:12;;9641:1;9631:12;;;9652:2;;9706:4;9698:6;9694:17;9684:27;;9652:2;9759;9751:6;9748:14;9728:18;9725:38;9722:2;;;9805:10;9800:3;9796:20;9793:1;9786:31;9840:4;9837:1;9830:15;9868:4;9865:1;9858:15;9722:2;;9564:325;;;:::o;9894:127::-;9955:10;9950:3;9946:20;9943:1;9936:31;9986:4;9983:1;9976:15;10010:4;10007:1;10000:15
Swarm Source
ipfs://208769c120a5ec17ce6451cf973dd150f7ae713b909a07d7daa20b5fe98c9856
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.