Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000,000,000 Green
Holders
16
Total Transfers
-
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:
Green
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-21 */ /* I aped all the scams, cant sell, lp remove, etc. I just need a Green token. No honeypot, no fake lock, no fake renounce, no blacklist, no more fucking scam. $Green must be Green. I aped all the scams, cant sell, lp remove, etc. I just need a Green token. No honeypot, no fake lock, no fake renounce, no blacklist, no more fucking scam. $Green must be Green. I aped all the scams, cant sell, lp remove, etc. I just need a Green token. No honeypot, no fake lock, no fake renounce, no blacklist, no more fucking scam. $Green must be Green. */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/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 {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: contracts/Green.sol pragma solidity ^0.8.0; contract Green is ERC20, ERC20Burnable, Ownable { uint256 private constant INITIAL_SUPPLY = 100000000000000 * 10**18; constructor() ERC20("I aped all the scams, cant sell, lp remove, etc. I just need a Green token. No honeypot, no fake lock, no fake renounce, no blacklist, no more fucking scam. $Green must be Green.", "Green") { _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
60806040523480156200001157600080fd5b506040518060e0016040528060b28152602001620010b260b291396040518060400160405280600581526020016423b932b2b760d91b815250816003908051906020019062000062929190620001d2565b50805162000078906004906020840190620001d2565b505050620000956200008f620000b560201b60201c565b620000b9565b620000af336d04ee2d6d415b85acef81000000006200010b565b6200031a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200013d5760405162461bcd60e51b8152600401620001349062000278565b60405180910390fd5b6200014b60008383620001cd565b80600260008282546200015f9190620002b8565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001b3908590620002af565b60405180910390a3620001c960008383620001cd565b5050565b505050565b828054620001e090620002dd565b90600052602060002090601f0160209004810192826200020457600085556200024f565b82601f106200021f57805160ff19168380011785556200024f565b828001600101855582156200024f579182015b828111156200024f57825182559160200191906001019062000232565b506200025d92915062000261565b5090565b5b808211156200025d576000815560010162000262565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002d857634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620002f257607f821691505b602082108114156200031457634e487b7160e01b600052602260045260246000fd5b50919050565b610d88806200032a6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b1d17c9814610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c657806379cc6790146101ce5780638da5cb5b146101e157806395d89b41146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610984565b60405180910390f35b61014161013c366004610924565b6102ef565b6040516101259190610979565b610156610311565b6040516101259190610cdc565b6101416101713660046108e9565b610317565b61017e610345565b6040516101259190610ce5565b610141610199366004610924565b61034a565b6101b16101ac36600461094d565b610376565b005b6101566101c1366004610896565b61038a565b6101b16103a9565b6101b16101dc366004610924565b6103bd565b6101e96103dd565b6040516101259190610965565b6101186103ec565b61014161020c366004610924565b6103fb565b61014161021f366004610924565b61044c565b6101b1610232366004610896565b610464565b6101566102453660046108b7565b6104b1565b6101b1610258366004610896565b6104dc565b60606003805461026c90610d17565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610d17565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000806102fa610513565b9050610307818585610517565b5060019392505050565b60025490565b600080610322610513565b905061032f8582856105cb565b61033a858585610615565b506001949350505050565b601290565b600080610355610513565b905061030781858561036785896104b1565b6103719190610cf3565b610517565b610387610381610513565b82610716565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6103b16107ee565b6103bb600061082d565b565b6103cf826103c9610513565b836105cb565b6103d98282610716565b5050565b6005546001600160a01b031690565b60606004805461026c90610d17565b600080610406610513565b9050600061041482866104b1565b90508381101561043f5760405162461bcd60e51b815260040161043690610c97565b60405180910390fd5b61033a8286868403610517565b600080610457610513565b9050610307818585610615565b61046c6107ee565b60006104773361038a565b90506d04ee2d6d415b85acef810000000081146104a65760405162461bcd60e51b815260040161043690610b1b565b6103d9338383610615565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e46107ee565b6001600160a01b03811661050a5760405162461bcd60e51b815260040161043690610a5c565b6103878161082d565b3390565b6001600160a01b03831661053d5760405162461bcd60e51b815260040161043690610c53565b6001600160a01b0382166105635760405162461bcd60e51b815260040161043690610aa2565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105be908590610cdc565b60405180910390a3505050565b60006105d784846104b1565b9050600019811461060f57818110156106025760405162461bcd60e51b815260040161043690610ae4565b61060f8484848403610517565b50505050565b6001600160a01b03831661063b5760405162461bcd60e51b815260040161043690610c0e565b6001600160a01b0382166106615760405162461bcd60e51b8152600401610436906109d7565b61066c8383836107e9565b6001600160a01b038316600090815260208190526040902054818110156106a55760405162461bcd60e51b815260040161043690610b52565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610703908690610cdc565b60405180910390a361060f8484846107e9565b6001600160a01b03821661073c5760405162461bcd60e51b815260040161043690610bcd565b610748826000836107e9565b6001600160a01b038216600090815260208190526040902054818110156107815760405162461bcd60e51b815260040161043690610a1a565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107d9908690610cdc565b60405180910390a36107e9836000845b505050565b6107f6610513565b6001600160a01b03166108076103dd565b6001600160a01b0316146103bb5760405162461bcd60e51b815260040161043690610b98565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146103a457600080fd5b6000602082840312156108a7578081fd5b6108b08261087f565b9392505050565b600080604083850312156108c9578081fd5b6108d28361087f565b91506108e06020840161087f565b90509250929050565b6000806000606084860312156108fd578081fd5b6109068461087f565b92506109146020850161087f565b9150604084013590509250925092565b60008060408385031215610936578182fd5b61093f8361087f565b946020939093013593505050565b60006020828403121561095e578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109b057858101830151858201604001528201610994565b818111156109c15783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1257634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2b57607f821691505b60208210811415610d4c57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220ce58dad20382508ff50810ebfb92b4ac269c1f1dfbb5c94ec8e91388a5251ff764736f6c6343000800003349206170656420616c6c20746865207363616d732c2063616e742073656c6c2c206c702072656d6f76652c206574632e2049206a757374206e656564206120477265656e20746f6b656e2e204e6f20686f6e6579706f742c206e6f2066616b65206c6f636b2c206e6f2066616b652072656e6f756e63652c206e6f20626c61636b6c6973742c206e6f206d6f7265206675636b696e67207363616d2e2024477265656e206d75737420626520477265656e2e
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b1d17c9814610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c657806379cc6790146101ce5780638da5cb5b146101e157806395d89b41146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610984565b60405180910390f35b61014161013c366004610924565b6102ef565b6040516101259190610979565b610156610311565b6040516101259190610cdc565b6101416101713660046108e9565b610317565b61017e610345565b6040516101259190610ce5565b610141610199366004610924565b61034a565b6101b16101ac36600461094d565b610376565b005b6101566101c1366004610896565b61038a565b6101b16103a9565b6101b16101dc366004610924565b6103bd565b6101e96103dd565b6040516101259190610965565b6101186103ec565b61014161020c366004610924565b6103fb565b61014161021f366004610924565b61044c565b6101b1610232366004610896565b610464565b6101566102453660046108b7565b6104b1565b6101b1610258366004610896565b6104dc565b60606003805461026c90610d17565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610d17565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000806102fa610513565b9050610307818585610517565b5060019392505050565b60025490565b600080610322610513565b905061032f8582856105cb565b61033a858585610615565b506001949350505050565b601290565b600080610355610513565b905061030781858561036785896104b1565b6103719190610cf3565b610517565b610387610381610513565b82610716565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6103b16107ee565b6103bb600061082d565b565b6103cf826103c9610513565b836105cb565b6103d98282610716565b5050565b6005546001600160a01b031690565b60606004805461026c90610d17565b600080610406610513565b9050600061041482866104b1565b90508381101561043f5760405162461bcd60e51b815260040161043690610c97565b60405180910390fd5b61033a8286868403610517565b600080610457610513565b9050610307818585610615565b61046c6107ee565b60006104773361038a565b90506d04ee2d6d415b85acef810000000081146104a65760405162461bcd60e51b815260040161043690610b1b565b6103d9338383610615565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e46107ee565b6001600160a01b03811661050a5760405162461bcd60e51b815260040161043690610a5c565b6103878161082d565b3390565b6001600160a01b03831661053d5760405162461bcd60e51b815260040161043690610c53565b6001600160a01b0382166105635760405162461bcd60e51b815260040161043690610aa2565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105be908590610cdc565b60405180910390a3505050565b60006105d784846104b1565b9050600019811461060f57818110156106025760405162461bcd60e51b815260040161043690610ae4565b61060f8484848403610517565b50505050565b6001600160a01b03831661063b5760405162461bcd60e51b815260040161043690610c0e565b6001600160a01b0382166106615760405162461bcd60e51b8152600401610436906109d7565b61066c8383836107e9565b6001600160a01b038316600090815260208190526040902054818110156106a55760405162461bcd60e51b815260040161043690610b52565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610703908690610cdc565b60405180910390a361060f8484846107e9565b6001600160a01b03821661073c5760405162461bcd60e51b815260040161043690610bcd565b610748826000836107e9565b6001600160a01b038216600090815260208190526040902054818110156107815760405162461bcd60e51b815260040161043690610a1a565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107d9908690610cdc565b60405180910390a36107e9836000845b505050565b6107f6610513565b6001600160a01b03166108076103dd565b6001600160a01b0316146103bb5760405162461bcd60e51b815260040161043690610b98565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146103a457600080fd5b6000602082840312156108a7578081fd5b6108b08261087f565b9392505050565b600080604083850312156108c9578081fd5b6108d28361087f565b91506108e06020840161087f565b90509250929050565b6000806000606084860312156108fd578081fd5b6109068461087f565b92506109146020850161087f565b9150604084013590509250925092565b60008060408385031215610936578182fd5b61093f8361087f565b946020939093013593505050565b60006020828403121561095e578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109b057858101830151858201604001528201610994565b818111156109c15783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1257634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2b57607f821691505b60208210811415610d4c57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220ce58dad20382508ff50810ebfb92b4ac269c1f1dfbb5c94ec8e91388a5251ff764736f6c63430008000033
Deployed Bytecode Sourcemap
22347:670:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9928:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12279:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;11048:108::-;;;:::i;:::-;;;;;;;:::i;13060:295::-;;;;;;:::i;:::-;;:::i;10890:93::-;;;:::i;:::-;;;;;;;:::i;13764:238::-;;;;;;:::i;:::-;;:::i;21699:91::-;;;;;;:::i;:::-;;:::i;:::-;;11219:127;;;;;;:::i;:::-;;:::i;3353:103::-;;;:::i;22109:164::-;;;;;;:::i;:::-;;:::i;2705:87::-;;;:::i;:::-;;;;;;;:::i;10147:104::-;;;:::i;14505:436::-;;;;;;:::i;:::-;;:::i;11552:193::-;;;;;;:::i;:::-;;:::i;22748:266::-;;;;;;:::i;:::-;;:::i;11808:151::-;;;;;;:::i;:::-;;:::i;3611:201::-;;;;;;:::i;:::-;;:::i;9928:100::-;9982:13;10015:5;10008:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9928:100;:::o;12279:201::-;12362:4;12379:13;12395:12;:10;:12::i;:::-;12379:28;;12418:32;12427:5;12434:7;12443:6;12418:8;:32::i;:::-;-1:-1:-1;12468:4:0;;12279:201;-1:-1:-1;;;12279:201:0:o;11048:108::-;11136:12;;11048:108;:::o;13060:295::-;13191:4;13208:15;13226:12;:10;:12::i;:::-;13208:30;;13249:38;13265:4;13271:7;13280:6;13249:15;:38::i;:::-;13298:27;13308:4;13314:2;13318:6;13298:9;:27::i;:::-;-1:-1:-1;13343:4:0;;13060:295;-1:-1:-1;;;;13060:295:0:o;10890:93::-;10973:2;10890:93;:::o;13764:238::-;13852:4;13869:13;13885:12;:10;:12::i;:::-;13869:28;;13908:64;13917:5;13924:7;13961:10;13933:25;13943:5;13950:7;13933:9;:25::i;:::-;:38;;;;:::i;:::-;13908:8;:64::i;21699:91::-;21755:27;21761:12;:10;:12::i;:::-;21775:6;21755:5;:27::i;:::-;21699:91;:::o;11219:127::-;-1:-1:-1;;;;;11320:18:0;;11293:7;11320:18;;;;;;;;;;;11219:127;;;;:::o;3353:103::-;2591:13;:11;:13::i;:::-;3418:30:::1;3445:1;3418:18;:30::i;:::-;3353:103::o:0;22109:164::-;22186:46;22202:7;22211:12;:10;:12::i;:::-;22225:6;22186:15;:46::i;:::-;22243:22;22249:7;22258:6;22243:5;:22::i;:::-;22109:164;;:::o;2705:87::-;2778:6;;-1:-1:-1;;;;;2778:6:0;2705:87;:::o;10147:104::-;10203:13;10236:7;10229:14;;;;;:::i;14505:436::-;14598:4;14615:13;14631:12;:10;:12::i;:::-;14615:28;;14654:24;14681:25;14691:5;14698:7;14681:9;:25::i;:::-;14654:52;;14745:15;14725:16;:35;;14717:85;;;;-1:-1:-1;;;14717:85:0;;;;;;;:::i;:::-;;;;;;;;;14838:60;14847:5;14854:7;14882:15;14863:16;:34;14838:8;:60::i;11552:193::-;11631:4;11648:13;11664:12;:10;:12::i;:::-;11648:28;;11687;11697:5;11704:2;11708:6;11687:9;:28::i;22748:266::-;2591:13;:11;:13::i;:::-;22832:14:::1;22849:21;22859:10;22849:9;:21::i;:::-;22832:38;;22444:24;22889:6;:24;22881:63;;;;-1:-1:-1::0;;;22881:63:0::1;;;;;;;:::i;:::-;22957:49;22967:10;22979:18;22999:6;22957:9;:49::i;11808:151::-:0;-1:-1:-1;;;;;11924:18:0;;;11897:7;11924:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11808:151::o;3611:201::-;2591:13;:11;:13::i;:::-;-1:-1:-1;;;;;3700:22:0;::::1;3692:73;;;;-1:-1:-1::0;;;3692:73:0::1;;;;;;;:::i;:::-;3776:28;3795:8;3776:18;:28::i;1256:98::-:0;1336:10;1256:98;:::o;18532:380::-;-1:-1:-1;;;;;18668:19:0;;18660:68;;;;-1:-1:-1;;;18660:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18747:21:0;;18739:68;;;;-1:-1:-1;;;18739:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18820:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18872:32;;;;;18850:6;;18872:32;:::i;:::-;;;;;;;;18532:380;;;:::o;19203:453::-;19338:24;19365:25;19375:5;19382:7;19365:9;:25::i;:::-;19338:52;;-1:-1:-1;;19405:16:0;:37;19401:248;;19487:6;19467:16;:26;;19459:68;;;;-1:-1:-1;;;19459:68:0;;;;;;;:::i;:::-;19571:51;19580:5;19587:7;19615:6;19596:16;:25;19571:8;:51::i;:::-;19203:453;;;;:::o;15411:840::-;-1:-1:-1;;;;;15542:18:0;;15534:68;;;;-1:-1:-1;;;15534:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15621:16:0;;15613:64;;;;-1:-1:-1;;;15613:64:0;;;;;;;:::i;:::-;15690:38;15711:4;15717:2;15721:6;15690:20;:38::i;:::-;-1:-1:-1;;;;;15763:15:0;;15741:19;15763:15;;;;;;;;;;;15797:21;;;;15789:72;;;;-1:-1:-1;;;15789:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15897:15:0;;;:9;:15;;;;;;;;;;;15915:20;;;15897:38;;16115:13;;;;;;;;;;:23;;;;;;16167:26;;;;;;15929:6;;16167:26;:::i;:::-;;;;;;;;16206:37;16226:4;16232:2;16236:6;16206:19;:37::i;17419:675::-;-1:-1:-1;;;;;17503:21:0;;17495:67;;;;-1:-1:-1;;;17495:67:0;;;;;;;:::i;:::-;17575:49;17596:7;17613:1;17617:6;17575:20;:49::i;:::-;-1:-1:-1;;;;;17662:18:0;;17637:22;17662:18;;;;;;;;;;;17699:24;;;;17691:71;;;;-1:-1:-1;;;17691:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17798:18:0;;:9;:18;;;;;;;;;;;17819:23;;;17798:44;;17937:12;:22;;;;;;;17988:37;17798:9;;:18;17988:37;;;;17836:6;;17988:37;:::i;:::-;;;;;;;;18038:48;18058:7;18075:1;18079:6;18038:48;17419:675;;;:::o;2870:132::-;2945:12;:10;:12::i;:::-;-1:-1:-1;;;;;2934:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2934:23:0;;2926:68;;;;-1:-1:-1;;;2926:68:0;;;;;;;:::i;3972:191::-;4065:6;;;-1:-1:-1;;;;;4082:17:0;;;-1:-1:-1;;;;;;4082:17:0;;;;;;;4115:40;;4065:6;;;4082:17;4065:6;;4115:40;;4046:16;;4115:40;3972:191;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:402::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;3584:34;3579:2;3564:18;;3557:62;-1:-1:-1;;;3650:2:1;3635:18;;3628:36;3696:3;3681:19;;3478:228::o;3711:398::-;3913:2;3895:21;;;3952:2;3932:18;;;3925:30;3991:34;3986:2;3971:18;;3964:62;-1:-1:-1;;;4057:2:1;4042:18;;4035:32;4099:3;4084:19;;3885:224::o;4114:353::-;4316:2;4298:21;;;4355:2;4335:18;;;4328:30;4394:31;4389:2;4374:18;;4367:59;4458:2;4443:18;;4288:179::o;4472:350::-;4674:2;4656:21;;;4713:2;4693:18;;;4686:30;4752:28;4747:2;4732:18;;4725:56;4813:2;4798:18;;4646:176::o;4827:402::-;5029:2;5011:21;;;5068:2;5048:18;;;5041:30;5107:34;5102:2;5087:18;;5080:62;-1:-1:-1;;;5173:2:1;5158:18;;5151:36;5219:3;5204:19;;5001:228::o;5234:356::-;5436:2;5418:21;;;5455:18;;;5448:30;5514:34;5509:2;5494:18;;5487:62;5581:2;5566:18;;5408:182::o;5595:397::-;5797:2;5779:21;;;5836:2;5816:18;;;5809:30;5875:34;5870:2;5855:18;;5848:62;-1:-1:-1;;;5941:2:1;5926:18;;5919:31;5982:3;5967:19;;5769:223::o;5997:401::-;6199:2;6181:21;;;6238:2;6218:18;;;6211:30;6277:34;6272:2;6257:18;;6250:62;-1:-1:-1;;;6343:2:1;6328:18;;6321:35;6388:3;6373:19;;6171:227::o;6403:400::-;6605:2;6587:21;;;6644:2;6624:18;;;6617:30;6683:34;6678:2;6663:18;;6656:62;-1:-1:-1;;;6749:2:1;6734:18;;6727:34;6793:3;6778:19;;6577:226::o;6808:401::-;7010:2;6992:21;;;7049:2;7029:18;;;7022:30;7088:34;7083:2;7068:18;;7061:62;-1:-1:-1;;;7154:2:1;7139:18;;7132:35;7199:3;7184:19;;6982:227::o;7214:177::-;7360:25;;;7348:2;7333:18;;7315:76::o;7396:184::-;7568:4;7556:17;;;;7538:36;;7526:2;7511:18;;7493:87::o;7585:229::-;;7656:1;7652:6;7649:1;7646:13;7643:2;;;-1:-1:-1;;;7682:33:1;;7738:4;7735:1;7728:15;7768:4;7689:3;7756:17;7643:2;-1:-1:-1;7799:9:1;;7633:181::o;7819:380::-;7904:1;7894:12;;7951:1;7941:12;;;7962:2;;8016:4;8008:6;8004:17;7994:27;;7962:2;8069;8061:6;8058:14;8038:18;8035:38;8032:2;;;8115:10;8110:3;8106:20;8103:1;8096:31;8150:4;8147:1;8140:15;8178:4;8175:1;8168:15;8032:2;;7874:325;;;:::o
Swarm Source
ipfs://ce58dad20382508ff50810ebfb92b4ac269c1f1dfbb5c94ec8e91388a5251ff7
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.