ERC-20
Overview
Max Total Supply
420,690,000,000 PENNY
Holders
60
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,406,572,822.9598140234375 PENNYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PennyERC
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-12 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // 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; /* * https://Pennyerc.com */ contract PennyERC is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount= 8413800000 ether;//2% of supply uint256 public minHoldingAmount; address public uniswapV2; mapping(address => bool) private blacklists; mapping(address=>bool) public uniswapV2Pair; constructor() ERC20("PENNY", "PENNY") { _mint(msg.sender, 420690000000 ether); } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } function setRule(bool _limited, address _uniswapV2Pair) external onlyOwner { limited = _limited; uniswapV2Pair[ _uniswapV2Pair]=true; uniswapV2=_uniswapV2Pair; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (uniswapV2==address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && uniswapV2Pair[from]) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } // function burn(uint256 value) external { // _burn(msg.sender, value); // } }
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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"uniswapV2Pair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526b1b2fbb73f163a79bb10000006007553480156200002157600080fd5b506040518060400160405280600581526020016450454e4e5960d81b8152506040518060400160405280600581526020016450454e4e5960d81b8152506200007862000072620000cb60201b60201c565b620000cf565b81516200008d906004906020850190620003ff565b508051620000a3906005906020840190620003ff565b505050620000c5336c054f529ca52576bc68920000006200011f60201b60201c565b62000509565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200017b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001896000838362000216565b80600360008282546200019d9190620004a5565b90915550506001600160a01b03821660009081526001602052604081208054839290620001cc908490620004a5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166000908152600a602052604090205460ff161580156200025957506001600160a01b0383166000908152600a602052604090205460ff16155b620002955760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000172565b6009546001600160a01b031662000323576000546001600160a01b0384811691161480620002d057506000546001600160a01b038381169116145b6200031e5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000172565b505050565b60065460ff1680156200034e57506001600160a01b0383166000908152600b602052604090205460ff165b156200031e57600754816200036e84620003e460201b620004e71760201c565b6200037a9190620004a5565b11158015620003ad5750600854816200039e84620003e460201b620004e71760201c565b620003aa9190620004a5565b10155b6200031e5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000172565b6001600160a01b031660009081526001602052604090205490565b8280546200040d90620004cc565b90600052602060002090601f0160209004810192826200043157600085556200047c565b82601f106200044c57805160ff19168380011785556200047c565b828001600101855582156200047c579182015b828111156200047c5782518255916020019190600101906200045f565b506200048a9291506200048e565b5090565b5b808211156200048a57600081556001016200048f565b60008219821115620004c757634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620004e157607f821691505b602082108114156200050357634e487b7160e01b600052602260045260246000fd5b50919050565b610e3280620005196000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610272578063a457c2d71461027a578063a9059cbb1461028d578063dd62ed3e146102a0578063f2fde38b146102d9578063f48ef4ff146102ec57600080fd5b806370a0823114610230578063715018a614610243578063860a32ec1461024b57806389f9a1d3146102585780638da5cb5b1461026157600080fd5b80632847c6de116100ff5780632847c6de146101ab578063313ce567146101ce57806339509351146101dd578063404e5129146101f05780635187c0911461020557600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d5780631ab99e121461018f57806323b872dd14610198575b600080fd5b6101446102ff565b6040516101519190610d11565b60405180910390f35b61016d610168366004610ccb565b610391565b6040519015158152602001610151565b6003545b604051908152602001610151565b61018160085481565b61016d6101a6366004610c65565b6103a7565b61016d6101b9366004610c10565b600b6020526000908152604090205460ff1681565b60405160128152602001610151565b61016d6101eb366004610ccb565b610456565b6102036101fe366004610ca1565b610492565b005b600954610218906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b61018161023e366004610c10565b6104e7565b610203610502565b60065461016d9060ff1681565b61018160075481565b6000546001600160a01b0316610218565b610144610538565b61016d610288366004610ccb565b610547565b61016d61029b366004610ccb565b6105e0565b6101816102ae366004610c32565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102036102e7366004610c10565b6105ed565b6102036102fa366004610cf5565b610688565b60606004805461030e90610dc1565b80601f016020809104026020016040519081016040528092919081815260200182805461033a90610dc1565b80156103875780601f1061035c57610100808354040283529160200191610387565b820191906000526020600020905b81548152906001019060200180831161036a57829003601f168201915b5050505050905090565b600061039e3384846106f9565b50600192915050565b60006103b484848461081d565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561043e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61044b85338584036106f9565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161039e91859061048d908690610d9b565b6106f9565b6000546001600160a01b031633146104bc5760405162461bcd60e51b815260040161043590610d66565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461052c5760405162461bcd60e51b815260040161043590610d66565b61053660006109f7565b565b60606005805461030e90610dc1565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105c95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610435565b6105d633858584036106f9565b5060019392505050565b600061039e33848461081d565b6000546001600160a01b031633146106175760405162461bcd60e51b815260040161043590610d66565b6001600160a01b03811661067c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610435565b610685816109f7565b50565b6000546001600160a01b031633146106b25760405162461bcd60e51b815260040161043590610d66565b6006805492151560ff199384161790556001600160a01b03166000818152600b602052604090208054909216600117909155600980546001600160a01b0319169091179055565b6001600160a01b03831661075b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610435565b6001600160a01b0382166107bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610435565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108815760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610435565b6001600160a01b0382166108e35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610435565b6108ee838383610a47565b6001600160a01b038316600090815260016020526040902054818110156109665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610435565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061099d908490610d9b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109e991815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610a8957506001600160a01b0383166000908152600a602052604090205460ff16155b610ac35760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610435565b6009546001600160a01b0316610b46576000546001600160a01b0384811691161480610afc57506000546001600160a01b038381169116145b610b415760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610435565b505050565b60065460ff168015610b7057506001600160a01b0383166000908152600b602052604090205460ff165b15610b415760075481610b82846104e7565b610b8c9190610d9b565b11158015610baf575060085481610ba2846104e7565b610bac9190610d9b565b10155b610b415760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610435565b80356001600160a01b0381168114610bfb57600080fd5b919050565b80358015158114610bfb57600080fd5b600060208284031215610c2257600080fd5b610c2b82610be4565b9392505050565b60008060408385031215610c4557600080fd5b610c4e83610be4565b9150610c5c60208401610be4565b90509250929050565b600080600060608486031215610c7a57600080fd5b610c8384610be4565b9250610c9160208501610be4565b9150604084013590509250925092565b60008060408385031215610cb457600080fd5b610cbd83610be4565b9150610c5c60208401610c00565b60008060408385031215610cde57600080fd5b610ce783610be4565b946020939093013593505050565b60008060408385031215610d0857600080fd5b610c4e83610c00565b600060208083528351808285015260005b81811015610d3e57858101830151858201604001528201610d22565b81811115610d50576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610dbc57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680610dd557607f821691505b60208210811415610df657634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122044fa2302164be5580d068c48abe48c3c336d5304ea7078b0f04b592641e1fc4864736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610272578063a457c2d71461027a578063a9059cbb1461028d578063dd62ed3e146102a0578063f2fde38b146102d9578063f48ef4ff146102ec57600080fd5b806370a0823114610230578063715018a614610243578063860a32ec1461024b57806389f9a1d3146102585780638da5cb5b1461026157600080fd5b80632847c6de116100ff5780632847c6de146101ab578063313ce567146101ce57806339509351146101dd578063404e5129146101f05780635187c0911461020557600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d5780631ab99e121461018f57806323b872dd14610198575b600080fd5b6101446102ff565b6040516101519190610d11565b60405180910390f35b61016d610168366004610ccb565b610391565b6040519015158152602001610151565b6003545b604051908152602001610151565b61018160085481565b61016d6101a6366004610c65565b6103a7565b61016d6101b9366004610c10565b600b6020526000908152604090205460ff1681565b60405160128152602001610151565b61016d6101eb366004610ccb565b610456565b6102036101fe366004610ca1565b610492565b005b600954610218906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b61018161023e366004610c10565b6104e7565b610203610502565b60065461016d9060ff1681565b61018160075481565b6000546001600160a01b0316610218565b610144610538565b61016d610288366004610ccb565b610547565b61016d61029b366004610ccb565b6105e0565b6101816102ae366004610c32565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102036102e7366004610c10565b6105ed565b6102036102fa366004610cf5565b610688565b60606004805461030e90610dc1565b80601f016020809104026020016040519081016040528092919081815260200182805461033a90610dc1565b80156103875780601f1061035c57610100808354040283529160200191610387565b820191906000526020600020905b81548152906001019060200180831161036a57829003601f168201915b5050505050905090565b600061039e3384846106f9565b50600192915050565b60006103b484848461081d565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561043e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61044b85338584036106f9565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161039e91859061048d908690610d9b565b6106f9565b6000546001600160a01b031633146104bc5760405162461bcd60e51b815260040161043590610d66565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461052c5760405162461bcd60e51b815260040161043590610d66565b61053660006109f7565b565b60606005805461030e90610dc1565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105c95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610435565b6105d633858584036106f9565b5060019392505050565b600061039e33848461081d565b6000546001600160a01b031633146106175760405162461bcd60e51b815260040161043590610d66565b6001600160a01b03811661067c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610435565b610685816109f7565b50565b6000546001600160a01b031633146106b25760405162461bcd60e51b815260040161043590610d66565b6006805492151560ff199384161790556001600160a01b03166000818152600b602052604090208054909216600117909155600980546001600160a01b0319169091179055565b6001600160a01b03831661075b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610435565b6001600160a01b0382166107bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610435565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108815760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610435565b6001600160a01b0382166108e35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610435565b6108ee838383610a47565b6001600160a01b038316600090815260016020526040902054818110156109665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610435565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061099d908490610d9b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109e991815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610a8957506001600160a01b0383166000908152600a602052604090205460ff16155b610ac35760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610435565b6009546001600160a01b0316610b46576000546001600160a01b0384811691161480610afc57506000546001600160a01b038381169116145b610b415760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610435565b505050565b60065460ff168015610b7057506001600160a01b0383166000908152600b602052604090205460ff165b15610b415760075481610b82846104e7565b610b8c9190610d9b565b11158015610baf575060085481610ba2846104e7565b610bac9190610d9b565b10155b610b415760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610435565b80356001600160a01b0381168114610bfb57600080fd5b919050565b80358015158114610bfb57600080fd5b600060208284031215610c2257600080fd5b610c2b82610be4565b9392505050565b60008060408385031215610c4557600080fd5b610c4e83610be4565b9150610c5c60208401610be4565b90509250929050565b600080600060608486031215610c7a57600080fd5b610c8384610be4565b9250610c9160208501610be4565b9150604084013590509250925092565b60008060408385031215610cb457600080fd5b610cbd83610be4565b9150610c5c60208401610c00565b60008060408385031215610cde57600080fd5b610ce783610be4565b946020939093013593505050565b60008060408385031215610d0857600080fd5b610c4e83610c00565b600060208083528351808285015260005b81811015610d3e57858101830151858201604001528201610d22565b81811115610d50576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610dbc57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680610dd557607f821691505b60208210811415610df657634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122044fa2302164be5580d068c48abe48c3c336d5304ea7078b0f04b592641e1fc4864736f6c63430008070033
Deployed Bytecode Sourcemap
19160:1431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9136:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11303:169;;;;;;:::i;:::-;;:::i;:::-;;;2296:14:1;;2289:22;2271:41;;2259:2;2244:18;11303:169:0;2131:187:1;10256:108:0;10344:12;;10256:108;;;7704:25:1;;;7692:2;7677:18;10256:108:0;7558:177:1;19299:31:0;;;;;;11954:492;;;;;;:::i;:::-;;:::i;19418:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10098:93;;;10181:2;7882:36:1;;7870:2;7855:18;10098:93:0;7740:184:1;12855:215:0;;;;;;:::i;:::-;;:::i;19587:135::-;;;;;;:::i;:::-;;:::i;:::-;;19337:24;;;;;-1:-1:-1;;;;;19337:24:0;;;;;;-1:-1:-1;;;;;2087:32:1;;;2069:51;;2057:2;2042:18;19337:24:0;1923:203:1;10427:127:0;;;;;;:::i;:::-;;:::i;2537:103::-;;;:::i;19203:19::-;;;;;;;;;19229:49;;;;;;1886:87;1932:7;1959:6;-1:-1:-1;;;;;1959:6:0;1886:87;;9355:104;;;:::i;13573:413::-;;;;;;:::i;:::-;;:::i;10767:175::-;;;;;;:::i;:::-;;:::i;11005:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11121:18:0;;;11094:7;11121:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11005:151;2795:201;;;;;;:::i;:::-;;:::i;19730:193::-;;;;;;:::i;:::-;;:::i;9136:100::-;9190:13;9223:5;9216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9136:100;:::o;11303:169::-;11386:4;11403:39;684:10;11426:7;11435:6;11403:8;:39::i;:::-;-1:-1:-1;11460:4:0;11303:169;;;;:::o;11954:492::-;12094:4;12111:36;12121:6;12129:9;12140:6;12111:9;:36::i;:::-;-1:-1:-1;;;;;12187:19:0;;12160:24;12187:19;;;:11;:19;;;;;;;;684:10;12187:33;;;;;;;;12239:26;;;;12231:79;;;;-1:-1:-1;;;12231:79:0;;5082:2:1;12231:79:0;;;5064:21:1;5121:2;5101:18;;;5094:30;5160:34;5140:18;;;5133:62;-1:-1:-1;;;5211:18:1;;;5204:38;5259:19;;12231:79:0;;;;;;;;;12346:57;12355:6;684:10;12396:6;12377:16;:25;12346:8;:57::i;:::-;-1:-1:-1;12434:4:0;;11954:492;-1:-1:-1;;;;11954:492:0:o;12855:215::-;684:10;12943:4;12992:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12992:34:0;;;;;;;;;;12943:4;;12960:80;;12983:7;;12992:47;;13029:10;;12992:47;:::i;:::-;12960:8;:80::i;19587:135::-;1932:7;1959:6;-1:-1:-1;;;;;1959:6:0;684:10;2106:23;2098:68;;;;-1:-1:-1;;;2098:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19676:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;19676:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19587:135::o;10427:127::-;-1:-1:-1;;;;;10528:18:0;10501:7;10528:18;;;:9;:18;;;;;;;10427:127::o;2537:103::-;1932:7;1959:6;-1:-1:-1;;;;;1959:6:0;684:10;2106:23;2098:68;;;;-1:-1:-1;;;2098:68:0;;;;;;;:::i;:::-;2602:30:::1;2629:1;2602:18;:30::i;:::-;2537:103::o:0;9355:104::-;9411:13;9444:7;9437:14;;;;;:::i;13573:413::-;684:10;13666:4;13710:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13710:34:0;;;;;;;;;;13763:35;;;;13755:85;;;;-1:-1:-1;;;13755:85:0;;7014:2:1;13755:85:0;;;6996:21:1;7053:2;7033:18;;;7026:30;7092:34;7072:18;;;7065:62;-1:-1:-1;;;7143:18:1;;;7136:35;7188:19;;13755:85:0;6812:401:1;13755:85:0;13876:67;684:10;13899:7;13927:15;13908:16;:34;13876:8;:67::i;:::-;-1:-1:-1;13974:4:0;;13573:413;-1:-1:-1;;;13573:413:0:o;10767:175::-;10853:4;10870:42;684:10;10894:9;10905:6;10870:9;:42::i;2795:201::-;1932:7;1959:6;-1:-1:-1;;;;;1959:6:0;684:10;2106:23;2098:68;;;;-1:-1:-1;;;2098:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2884:22:0;::::1;2876:73;;;::::0;-1:-1:-1;;;2876:73:0;;3531:2:1;2876:73:0::1;::::0;::::1;3513:21:1::0;3570:2;3550:18;;;3543:30;3609:34;3589:18;;;3582:62;-1:-1:-1;;;3660:18:1;;;3653:36;3706:19;;2876:73:0::1;3329:402:1::0;2876:73:0::1;2960:28;2979:8;2960:18;:28::i;:::-;2795:201:::0;:::o;19730:193::-;1932:7;1959:6;-1:-1:-1;;;;;1959:6:0;684:10;2106:23;2098:68;;;;-1:-1:-1;;;2098:68:0;;;;;;;:::i;:::-;19816:7:::1;:18:::0;;;::::1;;-1:-1:-1::0;;19816:18:0;;::::1;;::::0;;-1:-1:-1;;;;;19845:30:0::1;19816:7;19845:30:::0;;;:13:::1;:30;::::0;;;;:35;;;;::::1;19816:18:::0;19845:35:::1;::::0;;;19891:9:::1;:24:::0;;-1:-1:-1;;;;;;19891:24:0::1;::::0;;::::1;::::0;;19730:193::o;17257:380::-;-1:-1:-1;;;;;17393:19:0;;17385:68;;;;-1:-1:-1;;;17385:68:0;;6609:2:1;17385:68:0;;;6591:21:1;6648:2;6628:18;;;6621:30;6687:34;6667:18;;;6660:62;-1:-1:-1;;;6738:18:1;;;6731:34;6782:19;;17385:68:0;6407:400:1;17385:68:0;-1:-1:-1;;;;;17472:21:0;;17464:68;;;;-1:-1:-1;;;17464:68:0;;3938:2:1;17464:68:0;;;3920:21:1;3977:2;3957:18;;;3950:30;4016:34;3996:18;;;3989:62;-1:-1:-1;;;4067:18:1;;;4060:32;4109:19;;17464:68:0;3736:398:1;17464:68:0;-1:-1:-1;;;;;17545:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17597:32;;7704:25:1;;;17597:32:0;;7677:18:1;17597:32:0;;;;;;;17257:380;;;:::o;14476:733::-;-1:-1:-1;;;;;14616:20:0;;14608:70;;;;-1:-1:-1;;;14608:70:0;;6203:2:1;14608:70:0;;;6185:21:1;6242:2;6222:18;;;6215:30;6281:34;6261:18;;;6254:62;-1:-1:-1;;;6332:18:1;;;6325:35;6377:19;;14608:70:0;6001:401:1;14608:70:0;-1:-1:-1;;;;;14697:23:0;;14689:71;;;;-1:-1:-1;;;14689:71:0;;3127:2:1;14689:71:0;;;3109:21:1;3166:2;3146:18;;;3139:30;3205:34;3185:18;;;3178:62;-1:-1:-1;;;3256:18:1;;;3249:33;3299:19;;14689:71:0;2925:399:1;14689:71:0;14773:47;14794:6;14802:9;14813:6;14773:20;:47::i;:::-;-1:-1:-1;;;;;14857:17:0;;14833:21;14857:17;;;:9;:17;;;;;;14893:23;;;;14885:74;;;;-1:-1:-1;;;14885:74:0;;4341:2:1;14885:74:0;;;4323:21:1;4380:2;4360:18;;;4353:30;4419:34;4399:18;;;4392:62;-1:-1:-1;;;4470:18:1;;;4463:36;4516:19;;14885:74:0;4139:402:1;14885:74:0;-1:-1:-1;;;;;14995:17:0;;;;;;;:9;:17;;;;;;15015:22;;;14995:42;;15059:20;;;;;;;;:30;;15031:6;;14995:17;15059:30;;15031:6;;15059:30;:::i;:::-;;;;;;;;15124:9;-1:-1:-1;;;;;15107:35:0;15116:6;-1:-1:-1;;;;;15107:35:0;;15135:6;15107:35;;;;7704:25:1;;7692:2;7677:18;;7558:177;15107:35:0;;;;;;;;14597:612;14476:733;;;:::o;3156:191::-;3230:16;3249:6;;-1:-1:-1;;;;;3266:17:0;;;-1:-1:-1;;;;;;3266:17:0;;;;;;3299:40;;3249:6;;;;;;;3299:40;;3230:16;3299:40;3219:128;3156:191;:::o;19931:559::-;-1:-1:-1;;;;;20083:14:0;;;;;;:10;:14;;;;;;;;20082:15;:36;;;;-1:-1:-1;;;;;;20102:16:0;;;;;;:10;:16;;;;;;;;20101:17;20082:36;20074:60;;;;-1:-1:-1;;;20074:60:0;;7420:2:1;20074:60:0;;;7402:21:1;7459:2;7439:18;;;7432:30;-1:-1:-1;;;7478:18:1;;;7471:41;7529:18;;20074:60:0;7218:335:1;20074:60:0;20151:9;;-1:-1:-1;;;;;20151:9:0;20147:142;;1932:7;1959:6;-1:-1:-1;;;;;20197:15:0;;;1959:6;;20197:15;;:32;;-1:-1:-1;1932:7:0;1959:6;-1:-1:-1;;;;;20216:13:0;;;1959:6;;20216:13;20197:32;20189:67;;;;-1:-1:-1;;;20189:67:0;;5852:2:1;20189:67:0;;;5834:21:1;5891:2;5871:18;;;5864:30;-1:-1:-1;;;5910:18:1;;;5903:52;5972:18;;20189:67:0;5650:346:1;20189:67:0;19931:559;;;:::o;20147:142::-;20305:7;;;;:30;;;;-1:-1:-1;;;;;;20316:19:0;;;;;;:13;:19;;;;;;;;20305:30;20301:182;;;20392:16;;20382:6;20360:19;20376:2;20360:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20444:16;;20434:6;20412:19;20428:2;20412:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20360:100;20352:119;;;;-1:-1:-1;;;20352:119:0;;4748:2:1;20352:119:0;;;4730:21:1;4787:1;4767:18;;;4760:29;-1:-1:-1;;;4805:18:1;;;4798:36;4851:18;;20352:119:0;4546:329:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;:::-;498:39;357:186;-1:-1:-1;;;357:186:1:o;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:254::-;1211:6;1219;1272:2;1260:9;1251:7;1247:23;1243:32;1240:52;;;1288:1;1285;1278:12;1240:52;1311:29;1330:9;1311:29;:::i;:::-;1301:39;;1359:35;1390:2;1379:9;1375:18;1359:35;:::i;1405:254::-;1473:6;1481;1534:2;1522:9;1513:7;1509:23;1505:32;1502:52;;;1550:1;1547;1540:12;1502:52;1573:29;1592:9;1573:29;:::i;:::-;1563:39;1649:2;1634:18;;;;1621:32;;-1:-1:-1;;;1405:254:1:o;1664:::-;1729:6;1737;1790:2;1778:9;1769:7;1765:23;1761:32;1758:52;;;1806:1;1803;1796:12;1758:52;1829:26;1845:9;1829:26;:::i;2323:597::-;2435:4;2464:2;2493;2482:9;2475:21;2525:6;2519:13;2568:6;2563:2;2552:9;2548:18;2541:34;2593:1;2603:140;2617:6;2614:1;2611:13;2603:140;;;2712:14;;;2708:23;;2702:30;2678:17;;;2697:2;2674:26;2667:66;2632:10;;2603:140;;;2761:6;2758:1;2755:13;2752:91;;;2831:1;2826:2;2817:6;2806:9;2802:22;2798:31;2791:42;2752:91;-1:-1:-1;2904:2:1;2883:15;-1:-1:-1;;2879:29:1;2864:45;;;;2911:2;2860:54;;2323:597;-1:-1:-1;;;2323:597:1:o;5289:356::-;5491:2;5473:21;;;5510:18;;;5503:30;5569:34;5564:2;5549:18;;5542:62;5636:2;5621:18;;5289:356::o;7929:225::-;7969:3;8000:1;7996:6;7993:1;7990:13;7987:136;;;8045:10;8040:3;8036:20;8033:1;8026:31;8080:4;8077:1;8070:15;8108:4;8105:1;8098:15;7987:136;-1:-1:-1;8139:9:1;;7929:225::o;8159:380::-;8238:1;8234:12;;;;8281;;;8302:61;;8356:4;8348:6;8344:17;8334:27;;8302:61;8409:2;8401:6;8398:14;8378:18;8375:38;8372:161;;;8455:10;8450:3;8446:20;8443:1;8436:31;8490:4;8487:1;8480:15;8518:4;8515:1;8508:15;8372:161;;8159:380;;;:::o
Swarm Source
ipfs://44fa2302164be5580d068c48abe48c3c336d5304ea7078b0f04b592641e1fc48
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.