ERC-20
Overview
Max Total Supply
1,000,000,000,000 GF
Holders
33
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000285705368466 GFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheGodfather
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-08 */ // SPDX-License-Identifier: MIT /* * Twitter:https://twitter.com/TheGodfatherETH */ // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } pragma solidity ^0.8.0; contract TheGodfather is ERC20, Ownable { mapping(address => bool) private _isBlacklisted; event BlacklistUpdated(address indexed account, bool isBlacklisted); constructor() ERC20("The Godfather", "GF") { _mint(msg.sender, 1000 * 10 ** 9 * 10 ** decimals()); } function isBlacklisted(address account) public view returns (bool) { return _isBlacklisted[account]; } function updateBlacklist(address account, bool isBlacklisted_) public onlyOwner { _isBlacklisted[account] = isBlacklisted_; emit BlacklistUpdated(account, isBlacklisted_); } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { require(!_isBlacklisted[msg.sender], "Sender is blacklisted"); require(!_isBlacklisted[recipient], "Recipient is blacklisted"); return super.transfer(recipient, amount); } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { require(!_isBlacklisted[sender], "Sender is blacklisted"); require(!_isBlacklisted[recipient], "Recipient is blacklisted"); return super.transferFrom(sender, recipient, amount); } }
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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted_","type":"bool"}],"name":"updateBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600d81526c2a34329023b7b23330ba3432b960991b60208083019182528351808501909452600284526123a360f11b90840152815191929162000061916003916200020f565b508051620000779060049060208401906200020f565b505050620000946200008e620000cd60201b60201c565b620000d1565b620000c733620000a362000123565b620000b090600a6200035d565b620000c19064e8d4a5100062000455565b62000128565b620004ca565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601290565b6001600160a01b0382166200015a5760405162461bcd60e51b81526004016200015190620002b5565b60405180910390fd5b62000168600083836200020a565b80600260008282546200017c9190620002f5565b90915550506001600160a01b03821660009081526020819052604081208054839290620001ab908490620002f5565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f0908590620002ec565b60405180910390a362000206600083836200020a565b5050565b505050565b8280546200021d9062000477565b90600052602060002090601f0160209004810192826200024157600085556200028c565b82601f106200025c57805160ff19168380011785556200028c565b828001600101855582156200028c579182015b828111156200028c5782518255916020019190600101906200026f565b506200029a9291506200029e565b5090565b5b808211156200029a57600081556001016200029f565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200030b576200030b620004b4565b500190565b80825b600180861162000324575062000354565b818704821115620003395762000339620004b4565b808616156200034757918102915b9490941c93800262000313565b94509492505050565b60006200037160001960ff85168462000378565b9392505050565b600082620003895750600162000371565b81620003985750600062000371565b8160018114620003b15760028114620003bc57620003f0565b600191505062000371565b60ff841115620003d057620003d0620004b4565b6001841b915084821115620003e957620003e9620004b4565b5062000371565b5060208310610133831016604e8410600b841016171562000428575081810a83811115620004225762000422620004b4565b62000371565b62000437848484600162000310565b8086048211156200044c576200044c620004b4565b02949350505050565b6000816000190483118215151615620004725762000472620004b4565b500290565b6002810460018216806200048c57607f821691505b60208210811415620004ae57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610e6980620004da6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb146101f3578063dd62ed3e14610206578063f2fde38b14610219578063fe575a871461022c57610100565b80638da5cb5b146101b05780639155e083146101c557806395d89b41146101d8578063a457c2d7146101e057610100565b8063313ce567116100d3578063313ce5671461016b578063395093511461018057806370a0823114610193578063715018a6146101a657610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014357806323b872dd14610158575b600080fd5b61010d61023f565b60405161011a9190610aa8565b60405180910390f35b610136610131366004610a60565b6102d1565b60405161011a9190610a9d565b61014b6102ee565b60405161011a9190610dbd565b6101366101663660046109eb565b6102f4565b610173610382565b60405161011a9190610dc6565b61013661018e366004610a60565b610387565b61014b6101a136600461099f565b6103db565b6101ae6103fa565b005b6101b8610445565b60405161011a9190610a89565b6101ae6101d3366004610a26565b610454565b61010d6104f3565b6101366101ee366004610a60565b610502565b610136610201366004610a60565b61057b565b61014b6102143660046109b9565b6105f5565b6101ae61022736600461099f565b610620565b61013661023a36600461099f565b610691565b60606003805461024e90610df8565b80601f016020809104026020016040519081016040528092919081815260200182805461027a90610df8565b80156102c75780601f1061029c576101008083540402835291602001916102c7565b820191906000526020600020905b8154815290600101906020018083116102aa57829003601f168201915b5050505050905090565b60006102e56102de6106af565b84846106b3565b50600192915050565b60025490565b6001600160a01b03831660009081526006602052604081205460ff16156103365760405162461bcd60e51b815260040161032d90610c43565b60405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161561036f5760405162461bcd60e51b815260040161032d90610bc6565b61037a848484610767565b949350505050565b601290565b60006102e56103946106af565b8484600160006103a26106af565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103d69190610dd4565b6106b3565b6001600160a01b0381166000908152602081905260409020545b919050565b6104026106af565b6001600160a01b0316610413610445565b6001600160a01b0316146104395760405162461bcd60e51b815260040161032d90610cba565b61044360006107f7565b565b6005546001600160a01b031690565b61045c6106af565b6001600160a01b031661046d610445565b6001600160a01b0316146104935760405162461bcd60e51b815260040161032d90610cba565b6001600160a01b03821660008181526006602052604090819020805460ff1916841515179055517f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac906104e7908490610a9d565b60405180910390a25050565b60606004805461024e90610df8565b600080600160006105116106af565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561055d5760405162461bcd60e51b815260040161032d90610d78565b6105716105686106af565b858584036106b3565b5060019392505050565b3360009081526006602052604081205460ff16156105ab5760405162461bcd60e51b815260040161032d90610c43565b6001600160a01b03831660009081526006602052604090205460ff16156105e45760405162461bcd60e51b815260040161032d90610bc6565b6105ee8383610849565b9392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106286106af565b6001600160a01b0316610639610445565b6001600160a01b03161461065f5760405162461bcd60e51b815260040161032d90610cba565b6001600160a01b0381166106855760405162461bcd60e51b815260040161032d90610b3e565b61068e816107f7565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b3390565b6001600160a01b0383166106d95760405162461bcd60e51b815260040161032d90610d34565b6001600160a01b0382166106ff5760405162461bcd60e51b815260040161032d90610b84565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061075a908590610dbd565b60405180910390a3505050565b6000610774848484610859565b6001600160a01b0384166000908152600160205260408120816107956106af565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156107d85760405162461bcd60e51b815260040161032d90610c72565b6107ec856107e46106af565b8584036106b3565b506001949350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006102e56108566106af565b84845b6001600160a01b03831661087f5760405162461bcd60e51b815260040161032d90610cef565b6001600160a01b0382166108a55760405162461bcd60e51b815260040161032d90610afb565b6108b0838383610983565b6001600160a01b038316600090815260208190526040902054818110156108e95760405162461bcd60e51b815260040161032d90610bfd565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610920908490610dd4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096a9190610dbd565b60405180910390a361097d848484610983565b50505050565b505050565b80356001600160a01b03811681146103f557600080fd5b6000602082840312156109b0578081fd5b6105ee82610988565b600080604083850312156109cb578081fd5b6109d483610988565b91506109e260208401610988565b90509250929050565b6000806000606084860312156109ff578081fd5b610a0884610988565b9250610a1660208501610988565b9150604084013590509250925092565b60008060408385031215610a38578182fd5b610a4183610988565b915060208301358015158114610a55578182fd5b809150509250929050565b60008060408385031215610a72578182fd5b610a7b83610988565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ad457858101830151858201604001528201610ab8565b81811115610ae55783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526018908201527f526563697069656e7420697320626c61636b6c69737465640000000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526015908201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610df357634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610e0c57607f821691505b60208210811415610e2d57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212209d3b43e5faecc699add0387a44158d4e879ec6e1a8859996688becf45baaad0664736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb146101f3578063dd62ed3e14610206578063f2fde38b14610219578063fe575a871461022c57610100565b80638da5cb5b146101b05780639155e083146101c557806395d89b41146101d8578063a457c2d7146101e057610100565b8063313ce567116100d3578063313ce5671461016b578063395093511461018057806370a0823114610193578063715018a6146101a657610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014357806323b872dd14610158575b600080fd5b61010d61023f565b60405161011a9190610aa8565b60405180910390f35b610136610131366004610a60565b6102d1565b60405161011a9190610a9d565b61014b6102ee565b60405161011a9190610dbd565b6101366101663660046109eb565b6102f4565b610173610382565b60405161011a9190610dc6565b61013661018e366004610a60565b610387565b61014b6101a136600461099f565b6103db565b6101ae6103fa565b005b6101b8610445565b60405161011a9190610a89565b6101ae6101d3366004610a26565b610454565b61010d6104f3565b6101366101ee366004610a60565b610502565b610136610201366004610a60565b61057b565b61014b6102143660046109b9565b6105f5565b6101ae61022736600461099f565b610620565b61013661023a36600461099f565b610691565b60606003805461024e90610df8565b80601f016020809104026020016040519081016040528092919081815260200182805461027a90610df8565b80156102c75780601f1061029c576101008083540402835291602001916102c7565b820191906000526020600020905b8154815290600101906020018083116102aa57829003601f168201915b5050505050905090565b60006102e56102de6106af565b84846106b3565b50600192915050565b60025490565b6001600160a01b03831660009081526006602052604081205460ff16156103365760405162461bcd60e51b815260040161032d90610c43565b60405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161561036f5760405162461bcd60e51b815260040161032d90610bc6565b61037a848484610767565b949350505050565b601290565b60006102e56103946106af565b8484600160006103a26106af565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103d69190610dd4565b6106b3565b6001600160a01b0381166000908152602081905260409020545b919050565b6104026106af565b6001600160a01b0316610413610445565b6001600160a01b0316146104395760405162461bcd60e51b815260040161032d90610cba565b61044360006107f7565b565b6005546001600160a01b031690565b61045c6106af565b6001600160a01b031661046d610445565b6001600160a01b0316146104935760405162461bcd60e51b815260040161032d90610cba565b6001600160a01b03821660008181526006602052604090819020805460ff1916841515179055517f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac906104e7908490610a9d565b60405180910390a25050565b60606004805461024e90610df8565b600080600160006105116106af565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561055d5760405162461bcd60e51b815260040161032d90610d78565b6105716105686106af565b858584036106b3565b5060019392505050565b3360009081526006602052604081205460ff16156105ab5760405162461bcd60e51b815260040161032d90610c43565b6001600160a01b03831660009081526006602052604090205460ff16156105e45760405162461bcd60e51b815260040161032d90610bc6565b6105ee8383610849565b9392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106286106af565b6001600160a01b0316610639610445565b6001600160a01b03161461065f5760405162461bcd60e51b815260040161032d90610cba565b6001600160a01b0381166106855760405162461bcd60e51b815260040161032d90610b3e565b61068e816107f7565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b3390565b6001600160a01b0383166106d95760405162461bcd60e51b815260040161032d90610d34565b6001600160a01b0382166106ff5760405162461bcd60e51b815260040161032d90610b84565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061075a908590610dbd565b60405180910390a3505050565b6000610774848484610859565b6001600160a01b0384166000908152600160205260408120816107956106af565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156107d85760405162461bcd60e51b815260040161032d90610c72565b6107ec856107e46106af565b8584036106b3565b506001949350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006102e56108566106af565b84845b6001600160a01b03831661087f5760405162461bcd60e51b815260040161032d90610cef565b6001600160a01b0382166108a55760405162461bcd60e51b815260040161032d90610afb565b6108b0838383610983565b6001600160a01b038316600090815260208190526040902054818110156108e95760405162461bcd60e51b815260040161032d90610bfd565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610920908490610dd4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096a9190610dbd565b60405180910390a361097d848484610983565b50505050565b505050565b80356001600160a01b03811681146103f557600080fd5b6000602082840312156109b0578081fd5b6105ee82610988565b600080604083850312156109cb578081fd5b6109d483610988565b91506109e260208401610988565b90509250929050565b6000806000606084860312156109ff578081fd5b610a0884610988565b9250610a1660208501610988565b9150604084013590509250925092565b60008060408385031215610a38578182fd5b610a4183610988565b915060208301358015158114610a55578182fd5b809150509250929050565b60008060408385031215610a72578182fd5b610a7b83610988565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ad457858101830151858201604001528201610ab8565b81811115610ae55783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526018908201527f526563697069656e7420697320626c61636b6c69737465640000000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526015908201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610df357634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610e0c57607f821691505b60208210811415610e2d57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212209d3b43e5faecc699add0387a44158d4e879ec6e1a8859996688becf45baaad0664736f6c63430008000033
Deployed Bytecode Sourcemap
19293:1263:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9305:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11472:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10425:108::-;;;:::i;:::-;;;;;;;:::i;20228:325::-;;;;;;:::i;:::-;;:::i;10267:93::-;;;:::i;:::-;;;;;;;:::i;13024:215::-;;;;;;:::i;:::-;;:::i;10596:127::-;;;;;;:::i;:::-;;:::i;2706:103::-;;;:::i;:::-;;2055:87;;;:::i;:::-;;;;;;;:::i;19719:196::-;;;;;;:::i;:::-;;:::i;9524:104::-;;;:::i;13742:413::-;;;;;;:::i;:::-;;:::i;19923:297::-;;;;;;:::i;:::-;;:::i;11174:151::-;;;;;;:::i;:::-;;:::i;2964:201::-;;;;;;:::i;:::-;;:::i;19595:116::-;;;;;;:::i;:::-;;:::i;9305:100::-;9359:13;9392:5;9385:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9305:100;:::o;11472:169::-;11555:4;11572:39;11581:12;:10;:12::i;:::-;11595:7;11604:6;11572:8;:39::i;:::-;-1:-1:-1;11629:4:0;11472:169;;;;:::o;10425:108::-;10513:12;;10425:108;:::o;20228:325::-;-1:-1:-1;;;;;20360:22:0;;20334:4;20360:22;;;:14;:22;;;;;;;;20359:23;20351:57;;;;-1:-1:-1;;;20351:57:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;20428:25:0;;;;;;:14;:25;;;;;;;;20427:26;20419:63;;;;-1:-1:-1;;;20419:63:0;;;;;;;:::i;:::-;20500:45;20519:6;20527:9;20538:6;20500:18;:45::i;:::-;20493:52;20228:325;-1:-1:-1;;;;20228:325:0:o;10267:93::-;10350:2;10267:93;:::o;13024:215::-;13112:4;13129:80;13138:12;:10;:12::i;:::-;13152:7;13198:10;13161:11;:25;13173:12;:10;:12::i;:::-;-1:-1:-1;;;;;13161:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13161:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;13129:8;:80::i;10596:127::-;-1:-1:-1;;;;;10697:18:0;;10670:7;10697:18;;;;;;;;;;;10596:127;;;;:::o;2706:103::-;2286:12;:10;:12::i;:::-;-1:-1:-1;;;;;2275:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2275:23:0;;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;2771:30:::1;2798:1;2771:18;:30::i;:::-;2706:103::o:0;2055:87::-;2128:6;;-1:-1:-1;;;;;2128:6:0;2055:87;:::o;19719:196::-;2286:12;:10;:12::i;:::-;-1:-1:-1;;;;;2275:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2275:23:0;;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19810:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;:40;;-1:-1:-1;;19810:40:0::1;::::0;::::1;;;::::0;;19866:41;::::1;::::0;::::1;::::0;19810:40;;19866:41:::1;:::i;:::-;;;;;;;;19719:196:::0;;:::o;9524:104::-;9580:13;9613:7;9606:14;;;;;:::i;13742:413::-;13835:4;13852:24;13879:11;:25;13891:12;:10;:12::i;:::-;-1:-1:-1;;;;;13879:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13879:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13932:35:0;;;;13924:85;;;;-1:-1:-1;;;13924:85:0;;;;;;;:::i;:::-;14045:67;14054:12;:10;:12::i;:::-;14068:7;14096:15;14077:16;:34;14045:8;:67::i;:::-;-1:-1:-1;14143:4:0;;13742:413;-1:-1:-1;;;13742:413:0:o;19923:297::-;20050:10;20009:4;20035:26;;;:14;:26;;;;;;;;20034:27;20026:61;;;;-1:-1:-1;;;20026:61:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20107:25:0;;;;;;:14;:25;;;;;;;;20106:26;20098:63;;;;-1:-1:-1;;;20098:63:0;;;;;;;:::i;:::-;20179:33;20194:9;20205:6;20179:14;:33::i;:::-;20172:40;19923:297;-1:-1:-1;;;19923:297:0:o;11174:151::-;-1:-1:-1;;;;;11290:18:0;;;11263:7;11290:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11174:151::o;2964:201::-;2286:12;:10;:12::i;:::-;-1:-1:-1;;;;;2275:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2275:23:0;;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3053:22:0;::::1;3045:73;;;;-1:-1:-1::0;;;3045:73:0::1;;;;;;;:::i;:::-;3129:28;3148:8;3129:18;:28::i;:::-;2964:201:::0;:::o;19595:116::-;-1:-1:-1;;;;;19680:23:0;19656:4;19680:23;;;:14;:23;;;;;;;;;19595:116::o;773:98::-;853:10;773:98;:::o;17426:380::-;-1:-1:-1;;;;;17562:19:0;;17554:68;;;;-1:-1:-1;;;17554:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17641:21:0;;17633:68;;;;-1:-1:-1;;;17633:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17714:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17766:32;;;;;17744:6;;17766:32;:::i;:::-;;;;;;;;17426:380;;;:::o;12123:492::-;12263:4;12280:36;12290:6;12298:9;12309:6;12280:9;:36::i;:::-;-1:-1:-1;;;;;12356:19:0;;12329:24;12356:19;;;:11;:19;;;;;12329:24;12376:12;:10;:12::i;:::-;-1:-1:-1;;;;;12356:33:0;-1:-1:-1;;;;;12356:33:0;;;;;;;;;;;;;12329:60;;12428:6;12408:16;:26;;12400:79;;;;-1:-1:-1;;;12400:79:0;;;;;;;:::i;:::-;12515:57;12524:6;12532:12;:10;:12::i;:::-;12565:6;12546:16;:25;12515:8;:57::i;:::-;-1:-1:-1;12603:4:0;;12123:492;-1:-1:-1;;;;12123:492:0:o;3325:191::-;3418:6;;;-1:-1:-1;;;;;3435:17:0;;;-1:-1:-1;;;;;;3435:17:0;;;;;;;3468:40;;3418:6;;;3435:17;3418:6;;3468:40;;3399:16;;3468:40;3325:191;;:::o;10936:175::-;11022:4;11039:42;11049:12;:10;:12::i;:::-;11063:9;11074:6;14645:733;-1:-1:-1;;;;;14785:20:0;;14777:70;;;;-1:-1:-1;;;14777:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14866:23:0;;14858:71;;;;-1:-1:-1;;;14858:71:0;;;;;;;:::i;:::-;14942:47;14963:6;14971:9;14982:6;14942:20;:47::i;:::-;-1:-1:-1;;;;;15026:17:0;;15002:21;15026:17;;;;;;;;;;;15062:23;;;;15054:74;;;;-1:-1:-1;;;15054:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15164:17:0;;;:9;:17;;;;;;;;;;;15184:22;;;15164:42;;15228:20;;;;;;;;:30;;15200:6;;15164:9;15228:30;;15200:6;;15228:30;:::i;:::-;;;;;;;;15293:9;-1:-1:-1;;;;;15276:35:0;15285:6;-1:-1:-1;;;;;15276:35:0;;15304:6;15276:35;;;;;;:::i;:::-;;;;;;;;15324:46;15344:6;15352:9;15363:6;15324:19;:46::i;:::-;14645:733;;;;:::o;18406:125::-;;;;:::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;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:369::-;;;1149:2;1137:9;1128:7;1124:23;1120:32;1117:2;;;1170:6;1162;1155:22;1117:2;1198:31;1219:9;1198:31;:::i;:::-;1188:41;;1279:2;1268:9;1264:18;1251:32;1326:5;1319:13;1312:21;1305:5;1302:32;1292:2;;1353:6;1345;1338:22;1292:2;1381:5;1371:15;;;1107:285;;;;;:::o;1397:266::-;;;1526:2;1514:9;1505:7;1501:23;1497:32;1494:2;;;1547:6;1539;1532:22;1494:2;1575:31;1596:9;1575:31;:::i;:::-;1565:41;1653:2;1638:18;;;;1625:32;;-1:-1:-1;;;1484:179:1:o;1668:203::-;-1:-1:-1;;;;;1832:32:1;;;;1814:51;;1802:2;1787:18;;1769:102::o;1876:187::-;2041:14;;2034:22;2016:41;;2004:2;1989:18;;1971:92::o;2068:603::-;;2209:2;2238;2227:9;2220:21;2270:6;2264:13;2313:6;2308:2;2297:9;2293:18;2286:34;2338:4;2351:140;2365:6;2362:1;2359:13;2351:140;;;2460:14;;;2456:23;;2450:30;2426:17;;;2445:2;2422:26;2415:66;2380:10;;2351:140;;;2509:6;2506:1;2503:13;2500:2;;;2579:4;2574:2;2565:6;2554:9;2550:22;2546:31;2539:45;2500:2;-1:-1:-1;2655:2:1;2634:15;-1:-1:-1;;2630:29:1;2615:45;;;;2662:2;2611:54;;2189:482;-1:-1:-1;;;2189:482:1:o;2676:399::-;2878:2;2860:21;;;2917:2;2897:18;;;2890:30;2956:34;2951:2;2936:18;;2929:62;-1:-1:-1;;;3022:2:1;3007:18;;3000:33;3065:3;3050:19;;2850:225::o;3080:402::-;3282:2;3264:21;;;3321:2;3301:18;;;3294:30;3360:34;3355:2;3340:18;;3333:62;-1:-1:-1;;;3426:2:1;3411:18;;3404:36;3472:3;3457:19;;3254:228::o;3487:398::-;3689:2;3671:21;;;3728:2;3708:18;;;3701:30;3767:34;3762:2;3747:18;;3740:62;-1:-1:-1;;;3833:2:1;3818:18;;3811:32;3875:3;3860:19;;3661:224::o;3890:348::-;4092:2;4074:21;;;4131:2;4111:18;;;4104:30;4170:26;4165:2;4150:18;;4143:54;4229:2;4214:18;;4064:174::o;4243:402::-;4445:2;4427:21;;;4484:2;4464:18;;;4457:30;4523:34;4518:2;4503:18;;4496:62;-1:-1:-1;;;4589:2:1;4574:18;;4567:36;4635:3;4620:19;;4417:228::o;4650:345::-;4852:2;4834:21;;;4891:2;4871:18;;;4864:30;-1:-1:-1;;;4925:2:1;4910:18;;4903:51;4986:2;4971:18;;4824:171::o;5000:404::-;5202:2;5184:21;;;5241:2;5221:18;;;5214:30;5280:34;5275:2;5260:18;;5253:62;-1:-1:-1;;;5346:2:1;5331:18;;5324:38;5394:3;5379:19;;5174:230::o;5409:356::-;5611:2;5593:21;;;5630:18;;;5623:30;5689:34;5684:2;5669:18;;5662:62;5756:2;5741:18;;5583:182::o;5770:401::-;5972:2;5954:21;;;6011:2;5991:18;;;5984:30;6050:34;6045:2;6030:18;;6023:62;-1:-1:-1;;;6116:2:1;6101:18;;6094:35;6161:3;6146:19;;5944:227::o;6176:400::-;6378:2;6360:21;;;6417:2;6397:18;;;6390:30;6456:34;6451:2;6436:18;;6429:62;-1:-1:-1;;;6522:2:1;6507:18;;6500:34;6566:3;6551:19;;6350:226::o;6581:401::-;6783:2;6765:21;;;6822:2;6802:18;;;6795:30;6861:34;6856:2;6841:18;;6834:62;-1:-1:-1;;;6927:2:1;6912:18;;6905:35;6972:3;6957:19;;6755:227::o;6987:177::-;7133:25;;;7121:2;7106:18;;7088:76::o;7169:184::-;7341:4;7329:17;;;;7311:36;;7299:2;7284:18;;7266:87::o;7358:229::-;;7429:1;7425:6;7422:1;7419:13;7416:2;;;-1:-1:-1;;;7455:33:1;;7511:4;7508:1;7501:15;7541:4;7462:3;7529:17;7416:2;-1:-1:-1;7572:9:1;;7406:181::o;7592:380::-;7677:1;7667:12;;7724:1;7714:12;;;7735:2;;7789:4;7781:6;7777:17;7767:27;;7735:2;7842;7834:6;7831:14;7811:18;7808:38;7805:2;;;7888:10;7883:3;7879:20;7876:1;7869:31;7923:4;7920:1;7913:15;7951:4;7948:1;7941:15;7805:2;;7647:325;;;:::o
Swarm Source
ipfs://9d3b43e5faecc699add0387a44158d4e879ec6e1a8859996688becf45baaad06
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.