ERC-20
Overview
Max Total Supply
690,000,000,000,000 IS
Holders
1,184
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
IS
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-29 */ // SPDX-License-Identifier: MIT 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; } } /** * @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 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 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); } } /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 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: * * - `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 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); } } } /** * @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 Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } contract IS is ERC20, ERC20Burnable, Ownable { uint256 private constant INITIAL_SUPPLY = 690000000000000 * 10**18; constructor() ERC20("Injustice Samurai", "IS") { _mint(msg.sender, INITIAL_SUPPLY); } function distributeTokens(address distributionWallet) external onlyOwner { uint256 supply = balanceOf(msg.sender); require(supply == INITIAL_SUPPLY, "Tokens already distributed"); _transfer(msg.sender, distributionWallet, supply); } }
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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"distributionWallet","type":"address"}],"name":"distributeTokens","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180604001604052806011815260200170496e6a7573746963652053616d7572616960781b81525060405180604001604052806002815260200161495360f01b815250816003908162000068919062000279565b50600462000077828262000279565b505050620000946200008e620000b460201b60201c565b620000b8565b620000ae336d2205063ea95de7294160800000006200010a565b6200036d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001655760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000179919062000345565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200020057607f821691505b6020821081036200022157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001d057600081815260208120601f850160051c81016020861015620002505750805b601f850160051c820191505b8181101562000271578281556001016200025c565b505050505050565b81516001600160401b03811115620002955762000295620001d5565b620002ad81620002a68454620001eb565b8462000227565b602080601f831160018114620002e55760008415620002cc5750858301515b600019600386901b1c1916600185901b17855562000271565b600085815260208120601f198616915b828110156200031657888601518255948401946001909101908401620002f5565b5085821015620003355787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200036757634e487b7160e01b600052601160045260246000fd5b92915050565b611041806200037d6000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c8063715018a6116100b2578063a457c2d711610081578063b1d17c9811610066578063b1d17c9814610264578063dd62ed3e14610277578063f2fde38b146102bd57600080fd5b8063a457c2d71461023e578063a9059cbb1461025157600080fd5b8063715018a6146101f357806379cc6790146101fb5780638da5cb5b1461020e57806395d89b411461023657600080fd5b8063313ce567116100ee578063313ce56714610186578063395093511461019557806342966c68146101a857806370a08231146101bd57600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b6101286102d0565b6040516101359190610e15565b60405180910390f35b61015161014c366004610eaa565b610362565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610ed4565b61037c565b60405160128152602001610135565b6101516101a3366004610eaa565b6103a0565b6101bb6101b6366004610f10565b6103ec565b005b6101656101cb366004610f29565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101bb6103f9565b6101bb610209366004610eaa565b61040d565b60055460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b610128610426565b61015161024c366004610eaa565b610435565b61015161025f366004610eaa565b61050b565b6101bb610272366004610f29565b610519565b610165610285366004610f4b565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101bb6102cb366004610f29565b6105b3565b6060600380546102df90610f7e565b80601f016020809104026020016040519081016040528092919081815260200182805461030b90610f7e565b80156103585780601f1061032d57610100808354040283529160200191610358565b820191906000526020600020905b81548152906001019060200180831161033b57829003601f168201915b5050505050905090565b600033610370818585610667565b60019150505b92915050565b60003361038a85828561081b565b6103958585856108f2565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061037090829086906103e7908790610fd1565b610667565b6103f63382610b61565b50565b610401610d1d565b61040b6000610d9e565b565b61041882338361081b565b6104228282610b61565b5050565b6060600480546102df90610f7e565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156104fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103958286868403610667565b6000336103708185856108f2565b610521610d1d565b336000908152602081905260409020546d2205063ea95de72941608000000081146105a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f546f6b656e7320616c726561647920646973747269627574656400000000000060448201526064016104f5565b6104223383836108f2565b6105bb610d1d565b73ffffffffffffffffffffffffffffffffffffffff811661065e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104f5565b6103f681610d9e565b73ffffffffffffffffffffffffffffffffffffffff8316610709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff82166107ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108ec57818110156108df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104f5565b6108ec8484848403610667565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff8216610a38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610aee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108ec565b73ffffffffffffffffffffffffffffffffffffffff8216610c04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161080e565b60055473ffffffffffffffffffffffffffffffffffffffff16331461040b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104f5565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610e4257858101830151858201604001528201610e26565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ea557600080fd5b919050565b60008060408385031215610ebd57600080fd5b610ec683610e81565b946020939093013593505050565b600080600060608486031215610ee957600080fd5b610ef284610e81565b9250610f0060208501610e81565b9150604084013590509250925092565b600060208284031215610f2257600080fd5b5035919050565b600060208284031215610f3b57600080fd5b610f4482610e81565b9392505050565b60008060408385031215610f5e57600080fd5b610f6783610e81565b9150610f7560208401610e81565b90509250929050565b600181811c90821680610f9257607f821691505b602082108103610fcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b80820180821115610376577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220f528c5cb95c6f4f047a225c6fea27f360c26420daee4779583098d09e6e7bf7764736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011b5760003560e01c8063715018a6116100b2578063a457c2d711610081578063b1d17c9811610066578063b1d17c9814610264578063dd62ed3e14610277578063f2fde38b146102bd57600080fd5b8063a457c2d71461023e578063a9059cbb1461025157600080fd5b8063715018a6146101f357806379cc6790146101fb5780638da5cb5b1461020e57806395d89b411461023657600080fd5b8063313ce567116100ee578063313ce56714610186578063395093511461019557806342966c68146101a857806370a08231146101bd57600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b6101286102d0565b6040516101359190610e15565b60405180910390f35b61015161014c366004610eaa565b610362565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610ed4565b61037c565b60405160128152602001610135565b6101516101a3366004610eaa565b6103a0565b6101bb6101b6366004610f10565b6103ec565b005b6101656101cb366004610f29565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101bb6103f9565b6101bb610209366004610eaa565b61040d565b60055460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b610128610426565b61015161024c366004610eaa565b610435565b61015161025f366004610eaa565b61050b565b6101bb610272366004610f29565b610519565b610165610285366004610f4b565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101bb6102cb366004610f29565b6105b3565b6060600380546102df90610f7e565b80601f016020809104026020016040519081016040528092919081815260200182805461030b90610f7e565b80156103585780601f1061032d57610100808354040283529160200191610358565b820191906000526020600020905b81548152906001019060200180831161033b57829003601f168201915b5050505050905090565b600033610370818585610667565b60019150505b92915050565b60003361038a85828561081b565b6103958585856108f2565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061037090829086906103e7908790610fd1565b610667565b6103f63382610b61565b50565b610401610d1d565b61040b6000610d9e565b565b61041882338361081b565b6104228282610b61565b5050565b6060600480546102df90610f7e565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156104fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103958286868403610667565b6000336103708185856108f2565b610521610d1d565b336000908152602081905260409020546d2205063ea95de72941608000000081146105a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f546f6b656e7320616c726561647920646973747269627574656400000000000060448201526064016104f5565b6104223383836108f2565b6105bb610d1d565b73ffffffffffffffffffffffffffffffffffffffff811661065e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104f5565b6103f681610d9e565b73ffffffffffffffffffffffffffffffffffffffff8316610709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff82166107ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108ec57818110156108df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104f5565b6108ec8484848403610667565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff8216610a38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610aee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108ec565b73ffffffffffffffffffffffffffffffffffffffff8216610c04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104f5565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161080e565b60055473ffffffffffffffffffffffffffffffffffffffff16331461040b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104f5565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610e4257858101830151858201604001528201610e26565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ea557600080fd5b919050565b60008060408385031215610ebd57600080fd5b610ec683610e81565b946020939093013593505050565b600080600060608486031215610ee957600080fd5b610ef284610e81565b9250610f0060208501610e81565b9150604084013590509250925092565b600060208284031215610f2257600080fd5b5035919050565b600060208284031215610f3b57600080fd5b610f4482610e81565b9392505050565b60008060408385031215610f5e57600080fd5b610f6783610e81565b9150610f7560208401610e81565b90509250929050565b600181811c90821680610f9257607f821691505b602082108103610fcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b80820180821115610376577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220f528c5cb95c6f4f047a225c6fea27f360c26420daee4779583098d09e6e7bf7764736f6c63430008130033
Deployed Bytecode Sourcemap
20923:503:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8767:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11118:201;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;11118:201:0;1086:187:1;9887:108:0;9975:12;;9887:108;;;1424:25:1;;;1412:2;1397:18;9887:108:0;1278:177:1;11899:295:0;;;;;;:::i;:::-;;:::i;9729:93::-;;;9812:2;1935:36:1;;1923:2;1908:18;9729:93:0;1793:184:1;12603:238:0;;;;;;:::i;:::-;;:::i;20338:91::-;;;;;;:::i;:::-;;:::i;:::-;;10058:127;;;;;;:::i;:::-;10159:18;;10132:7;10159:18;;;;;;;;;;;;10058:127;2541:103;;;:::i;20748:164::-;;;;;;:::i;:::-;;:::i;1893:87::-;1966:6;;1893:87;;1966:6;;;;2504:74:1;;2492:2;2477:18;1893:87:0;2358:226:1;8986:104:0;;;:::i;13344:436::-;;;;;;:::i;:::-;;:::i;10391:193::-;;;;;;:::i;:::-;;:::i;21157:266::-;;;;;;:::i;:::-;;:::i;10647:151::-;;;;;;:::i;:::-;10763:18;;;;10736:7;10763:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10647:151;2799:201;;;;;;:::i;:::-;;:::i;8767:100::-;8821:13;8854:5;8847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8767:100;:::o;11118:201::-;11201:4;680:10;11257:32;680:10;11273:7;11282:6;11257:8;:32::i;:::-;11307:4;11300:11;;;11118:201;;;;;:::o;11899:295::-;12030:4;680:10;12088:38;12104:4;680:10;12119:6;12088:15;:38::i;:::-;12137:27;12147:4;12153:2;12157:6;12137:9;:27::i;:::-;-1:-1:-1;12182:4:0;;11899:295;-1:-1:-1;;;;11899:295:0:o;12603:238::-;680:10;12691:4;10763:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;12691:4;;680:10;12747:64;;680:10;;10763:27;;12772:38;;12800:10;;12772:38;:::i;:::-;12747:8;:64::i;20338:91::-;20394:27;680:10;20414:6;20394:5;:27::i;:::-;20338:91;:::o;2541:103::-;1779:13;:11;:13::i;:::-;2606:30:::1;2633:1;2606:18;:30::i;:::-;2541:103::o:0;20748:164::-;20825:46;20841:7;680:10;20864:6;20825:15;:46::i;:::-;20882:22;20888:7;20897:6;20882:5;:22::i;:::-;20748:164;;:::o;8986:104::-;9042:13;9075:7;9068:14;;;;;:::i;13344:436::-;680:10;13437:4;10763:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;13437:4;;680:10;13584:15;13564:16;:35;;13556:85;;;;;;;3782:2:1;13556:85:0;;;3764:21:1;3821:2;3801:18;;;3794:30;3860:34;3840:18;;;3833:62;3931:7;3911:18;;;3904:35;3956:19;;13556:85:0;;;;;;;;;13677:60;13686:5;13693:7;13721:15;13702:16;:34;13677:8;:60::i;10391:193::-;10470:4;680:10;10526:28;680:10;10543:2;10547:6;10526:9;:28::i;21157:266::-;1779:13;:11;:13::i;:::-;21268:10:::1;21241:14;10159:18:::0;;;;;;;;;;;21017:24:::1;21298::::0;::::1;21290:63;;;::::0;::::1;::::0;;4188:2:1;21290:63:0::1;::::0;::::1;4170:21:1::0;4227:2;4207:18;;;4200:30;4266:28;4246:18;;;4239:56;4312:18;;21290:63:0::1;3986:350:1::0;21290:63:0::1;21366:49;21376:10;21388:18;21408:6;21366:9;:49::i;2799:201::-:0;1779:13;:11;:13::i;:::-;2888:22:::1;::::0;::::1;2880:73;;;::::0;::::1;::::0;;4543:2:1;2880:73:0::1;::::0;::::1;4525:21:1::0;4582:2;4562:18;;;4555:30;4621:34;4601:18;;;4594:62;4692:8;4672:18;;;4665:36;4718:19;;2880:73:0::1;4341:402:1::0;2880:73:0::1;2964:28;2983:8;2964:18;:28::i;17371:380::-:0;17507:19;;;17499:68;;;;;;;4950:2:1;17499:68:0;;;4932:21:1;4989:2;4969:18;;;4962:30;5028:34;5008:18;;;5001:62;5099:6;5079:18;;;5072:34;5123:19;;17499:68:0;4748:400:1;17499:68:0;17586:21;;;17578:68;;;;;;;5355:2:1;17578:68:0;;;5337:21:1;5394:2;5374:18;;;5367:30;5433:34;5413:18;;;5406:62;5504:4;5484:18;;;5477:32;5526:19;;17578:68:0;5153:398:1;17578:68:0;17659:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17711:32;;1424:25:1;;;17711:32:0;;1397:18:1;17711:32:0;;;;;;;;17371:380;;;:::o;18042:453::-;10763:18;;;;18177:24;10763:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;18264:17;18244:37;;18240:248;;18326:6;18306:16;:26;;18298:68;;;;;;;5758:2:1;18298:68:0;;;5740:21:1;5797:2;5777:18;;;5770:30;5836:31;5816:18;;;5809:59;5885:18;;18298:68:0;5556:353:1;18298:68:0;18410:51;18419:5;18426:7;18454:6;18435:16;:25;18410:8;:51::i;:::-;18166:329;18042:453;;;:::o;14250:840::-;14381:18;;;14373:68;;;;;;;6116:2:1;14373:68:0;;;6098:21:1;6155:2;6135:18;;;6128:30;6194:34;6174:18;;;6167:62;6265:7;6245:18;;;6238:35;6290:19;;14373:68:0;5914:401:1;14373:68:0;14460:16;;;14452:64;;;;;;;6522:2:1;14452:64:0;;;6504:21:1;6561:2;6541:18;;;6534:30;6600:34;6580:18;;;6573:62;6671:5;6651:18;;;6644:33;6694:19;;14452:64:0;6320:399:1;14452:64:0;14602:15;;;14580:19;14602:15;;;;;;;;;;;14636:21;;;;14628:72;;;;;;;6926:2:1;14628:72:0;;;6908:21:1;6965:2;6945:18;;;6938:30;7004:34;6984:18;;;6977:62;7075:8;7055:18;;;7048:36;7101:19;;14628:72:0;6724:402:1;14628:72:0;14736:15;;;;:9;:15;;;;;;;;;;;14754:20;;;14736:38;;14954:13;;;;;;;;;;:23;;;;;;15006:26;;1424:25:1;;;14954:13:0;;15006:26;;1397:18:1;15006:26:0;;;;;;;15045:37;16258:675;;16342:21;;;16334:67;;;;;;;7333:2:1;16334:67:0;;;7315:21:1;7372:2;7352:18;;;7345:30;7411:34;7391:18;;;7384:62;7482:3;7462:18;;;7455:31;7503:19;;16334:67:0;7131:397:1;16334:67:0;16501:18;;;16476:22;16501:18;;;;;;;;;;;16538:24;;;;16530:71;;;;;;;7735:2:1;16530:71:0;;;7717:21:1;7774:2;7754:18;;;7747:30;7813:34;7793:18;;;7786:62;7884:4;7864:18;;;7857:32;7906:19;;16530:71:0;7533:398:1;16530:71:0;16637:18;;;:9;:18;;;;;;;;;;;16658:23;;;16637:44;;16776:12;:22;;;;;;;16827:37;1424:25:1;;;16637:9:0;;:18;16827:37;;1397:18:1;16827:37:0;1278:177:1;2058:132:0;1966:6;;2122:23;1966:6;680:10;2122:23;2114:68;;;;;;;8138:2:1;2114:68:0;;;8120:21:1;;;8157:18;;;8150:30;8216:34;8196:18;;;8189:62;8268:18;;2114:68:0;7936:356:1;3160:191:0;3253:6;;;;3270:17;;;;;;;;;;;3303:40;;3253:6;;;3270:17;3253:6;;3303:40;;3234:16;;3303:40;3223:128;3160:191;:::o;14:607: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;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1982:180::-;2041:6;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;-1:-1:-1;2133:23:1;;1982:180;-1:-1:-1;1982:180:1:o;2167:186::-;2226:6;2279:2;2267:9;2258:7;2254:23;2250:32;2247:52;;;2295:1;2292;2285:12;2247:52;2318:29;2337:9;2318:29;:::i;:::-;2308:39;2167:186;-1:-1:-1;;;2167:186:1:o;2589:260::-;2657:6;2665;2718:2;2706:9;2697:7;2693:23;2689:32;2686:52;;;2734:1;2731;2724:12;2686:52;2757:29;2776:9;2757:29;:::i;:::-;2747:39;;2805:38;2839:2;2828:9;2824:18;2805:38;:::i;:::-;2795:48;;2589:260;;;;;:::o;2854:437::-;2933:1;2929:12;;;;2976;;;2997:61;;3051:4;3043:6;3039:17;3029:27;;2997:61;3104:2;3096:6;3093:14;3073:18;3070:38;3067:218;;3141:77;3138:1;3131:88;3242:4;3239:1;3232:15;3270:4;3267:1;3260:15;3067:218;;2854:437;;;:::o;3296:279::-;3361:9;;;3382:10;;;3379:190;;;3425:77;3422:1;3415:88;3526:4;3523:1;3516:15;3554:4;3551:1;3544:15
Swarm Source
ipfs://f528c5cb95c6f4f047a225c6fea27f360c26420daee4779583098d09e6e7bf77
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.