Contract Overview
Balance:
0 AVAX
AVAX Value:
$0.00
[ Download CSV Export ]
Contract Name:
MoonMug
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2021-11-22 */ // 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev 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 guidelines: functions revert instead * of 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 defaut 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"); _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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(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: * * - `to` 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 to 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 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } contract MoonMug is ERC20, ERC20Burnable, Ownable { constructor() ERC20("MoonMug", "MUG") { _mint(msg.sender, 2000000000 * (10**uint256(decimals()))); } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051806040016040528060078152602001664d6f6f6e4d756760c81b815250604051806040016040528060038152602001624d554760e81b815250816003908051906020019062000066929190620001fa565b5080516200007c906004906020840190620001fa565b5050506000620000916200010e60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200010833620000f26012600a62000304565b62000102906377359400620003cf565b62000112565b62000444565b3390565b6001600160a01b0382166200016d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001819190620002a0565b90915550506001600160a01b03821660009081526020819052604081208054839290620001b0908490620002a0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200020890620003f1565b90600052602060002090601f0160209004810192826200022c576000855562000277565b82601f106200024757805160ff191683800117855562000277565b8280016001018555821562000277579182015b82811115620002775782518255916020019190600101906200025a565b506200028592915062000289565b5090565b5b808211156200028557600081556001016200028a565b60008219821115620002b657620002b66200042e565b500190565b600181815b80851115620002fc578160001904821115620002e057620002e06200042e565b80851615620002ee57918102915b93841c9390800290620002c0565b509250929050565b600062000312838362000319565b9392505050565b6000826200032a57506001620003c9565b816200033957506000620003c9565b81600181146200035257600281146200035d576200037d565b6001915050620003c9565b60ff8411156200037157620003716200042e565b50506001821b620003c9565b5060208310610133831016604e8410600b8410161715620003a2575081810a620003c9565b620003ae8383620002bb565b8060001904821115620003c557620003c56200042e565b0290505b92915050565b6000816000190483118215151615620003ec57620003ec6200042e565b500290565b600181811c908216806200040657607f821691505b602082108114156200042857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610d6280620004546000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610209578063a9059cbb1461021c578063dd62ed3e1461022f578063f2fde38b1461026857600080fd5b8063715018a6146101cb57806379cc6790146101d35780638da5cb5b146101e657806395d89b411461020157600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d61027b565b60405161011a9190610c57565b60405180910390f35b610136610131366004610c14565b61030d565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610bd8565b610323565b6040516012815260200161011a565b610136610188366004610c14565b6103d9565b6101a061019b366004610c3e565b610410565b005b61014a6101b0366004610b83565b6001600160a01b031660009081526020819052604090205490565b6101a061041d565b6101a06101e1366004610c14565b6104c1565b6005546040516001600160a01b03909116815260200161011a565b61010d610549565b610136610217366004610c14565b610558565b61013661022a366004610c14565b6105f3565b61014a61023d366004610ba5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101a0610276366004610b83565b610600565b60606003805461028a90610cdb565b80601f01602080910402602001604051908101604052809291908181526020018280546102b690610cdb565b80156103035780601f106102d857610100808354040283529160200191610303565b820191906000526020600020905b8154815290600101906020018083116102e657829003601f168201915b5050505050905090565b600061031a33848461071b565b50600192915050565b6000610330848484610840565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103ba5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103ce85336103c98685610cc4565b61071b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161031a9185906103c9908690610cac565b61041a3382610a18565b50565b6005546001600160a01b031633146104775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b1565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60006104cd833361023d565b90508181101561052b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016103b1565b61053a83336103c98585610cc4565b6105448383610a18565b505050565b60606004805461028a90610cdb565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b1565b6105e933856103c98685610cc4565b5060019392505050565b600061031a338484610840565b6005546001600160a01b0316331461065a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b1565b6001600160a01b0381166106bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b1565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661077d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b1565b6001600160a01b0382166107de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b1565b6001600160a01b0382166109065760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b1565b6001600160a01b0383166000908152602081905260409020548181101561097e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b1565b6109888282610cc4565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906109be908490610cac565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a0a91815260200190565b60405180910390a350505050565b6001600160a01b038216610a785760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103b1565b6001600160a01b03821660009081526020819052604090205481811015610aec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103b1565b610af68282610cc4565b6001600160a01b03841660009081526020819052604081209190915560028054849290610b24908490610cc4565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610833565b80356001600160a01b0381168114610b7e57600080fd5b919050565b600060208284031215610b9557600080fd5b610b9e82610b67565b9392505050565b60008060408385031215610bb857600080fd5b610bc183610b67565b9150610bcf60208401610b67565b90509250929050565b600080600060608486031215610bed57600080fd5b610bf684610b67565b9250610c0460208501610b67565b9150604084013590509250925092565b60008060408385031215610c2757600080fd5b610c3083610b67565b946020939093013593505050565b600060208284031215610c5057600080fd5b5035919050565b600060208083528351808285015260005b81811015610c8457858101830151858201604001528201610c68565b81811115610c96576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610cbf57610cbf610d16565b500190565b600082821015610cd657610cd6610d16565b500390565b600181811c90821680610cef57607f821691505b60208210811415610d1057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220ea1d008e7a943db940cafecd3ff5d18c2b3e91be2785e9a2e625ceb06607b3c564736f6c63430008070033
Deployed ByteCode Sourcemap
18293:176:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6179:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8346:169;;;;;;:::i;:::-;;:::i;:::-;;;1798:14:1;;1791:22;1773:41;;1761:2;1746:18;8346:169:0;1633:187:1;7299:108:0;7387:12;;7299:108;;;7391:25:1;;;7379:2;7364:18;7299:108:0;7245:177:1;8997:422:0;;;;;;:::i;:::-;;:::i;7141:93::-;;;7224:2;7569:36:1;;7557:2;7542:18;7141:93:0;7427:184:1;9828:215:0;;;;;;:::i;:::-;;:::i;17544:91::-;;;;;;:::i;:::-;;:::i;:::-;;7470:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7571:18:0;7544:7;7571:18;;;;;;;;;;;;7470:127;16609:148;;;:::i;17954:332::-;;;;;;:::i;:::-;;:::i;15958:87::-;16031:6;;15958:87;;-1:-1:-1;;;;;16031:6:0;;;1571:51:1;;1559:2;1544:18;15958:87:0;1425:203:1;6398:104:0;;;:::i;10546:377::-;;;;;;:::i;:::-;;:::i;7810:175::-;;;;;;:::i;:::-;;:::i;8048:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8164:18:0;;;8137:7;8164:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8048:151;16912:244;;;;;;:::i;:::-;;:::i;6179:100::-;6233:13;6266:5;6259:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6179:100;:::o;8346:169::-;8429:4;8446:39;679:10;8469:7;8478:6;8446:8;:39::i;:::-;-1:-1:-1;8503:4:0;8346:169;;;;:::o;8997:422::-;9103:4;9120:36;9130:6;9138:9;9149:6;9120:9;:36::i;:::-;-1:-1:-1;;;;;9196:19:0;;9169:24;9196:19;;;:11;:19;;;;;;;;679:10;9196:33;;;;;;;;9248:26;;;;9240:79;;;;-1:-1:-1;;;9240:79:0;;4653:2:1;9240:79:0;;;4635:21:1;4692:2;4672:18;;;4665:30;4731:34;4711:18;;;4704:62;-1:-1:-1;;;4782:18:1;;;4775:38;4830:19;;9240:79:0;;;;;;;;;9330:57;9339:6;679:10;9361:25;9380:6;9361:16;:25;:::i;:::-;9330:8;:57::i;:::-;-1:-1:-1;9407:4:0;;8997:422;-1:-1:-1;;;;8997:422:0:o;9828:215::-;679:10;9916:4;9965:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9965:34:0;;;;;;;;;;9916:4;;9933:80;;9956:7;;9965:47;;10002:10;;9965:47;:::i;17544:91::-;17600:27;679:10;17620:6;17600:5;:27::i;:::-;17544:91;:::o;16609:148::-;16031:6;;-1:-1:-1;;;;;16031:6:0;679:10;16178:23;16170:68;;;;-1:-1:-1;;;16170:68:0;;5062:2:1;16170:68:0;;;5044:21:1;;;5081:18;;;5074:30;5140:34;5120:18;;;5113:62;5192:18;;16170:68:0;4860:356:1;16170:68:0;16700:6:::1;::::0;16679:40:::1;::::0;16716:1:::1;::::0;-1:-1:-1;;;;;16700:6:0::1;::::0;16679:40:::1;::::0;16716:1;;16679:40:::1;16730:6;:19:::0;;-1:-1:-1;;;;;;16730:19:0::1;::::0;;16609:148::o;17954:332::-;18031:24;18058:32;18068:7;679:10;8048:151;:::i;18058:32::-;18031:59;;18129:6;18109:16;:26;;18101:75;;;;-1:-1:-1;;;18101:75:0;;5423:2:1;18101:75:0;;;5405:21:1;5462:2;5442:18;;;5435:30;5501:34;5481:18;;;5474:62;-1:-1:-1;;;5552:18:1;;;5545:34;5596:19;;18101:75:0;5221:400:1;18101:75:0;18187:58;18196:7;679:10;18219:25;18238:6;18219:16;:25;:::i;18187:58::-;18256:22;18262:7;18271:6;18256:5;:22::i;:::-;18020:266;17954:332;;:::o;6398:104::-;6454:13;6487:7;6480:14;;;;;:::i;10546:377::-;679:10;10639:4;10683:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10683:34:0;;;;;;;;;;10736:35;;;;10728:85;;;;-1:-1:-1;;;10728:85:0;;7041:2:1;10728:85:0;;;7023:21:1;7080:2;7060:18;;;7053:30;7119:34;7099:18;;;7092:62;-1:-1:-1;;;7170:18:1;;;7163:35;7215:19;;10728:85:0;6839:401:1;10728:85:0;10824:67;679:10;10847:7;10856:34;10875:15;10856:16;:34;:::i;10824:67::-;-1:-1:-1;10911:4:0;;10546:377;-1:-1:-1;;;10546:377:0:o;7810:175::-;7896:4;7913:42;679:10;7937:9;7948:6;7913:9;:42::i;16912:244::-;16031:6;;-1:-1:-1;;;;;16031:6:0;679:10;16178:23;16170:68;;;;-1:-1:-1;;;16170:68:0;;5062:2:1;16170:68:0;;;5044:21:1;;;5081:18;;;5074:30;5140:34;5120:18;;;5113:62;5192:18;;16170:68:0;4860:356:1;16170:68:0;-1:-1:-1;;;;;17001:22:0;::::1;16993:73;;;::::0;-1:-1:-1;;;16993:73:0;;3436:2:1;16993:73:0::1;::::0;::::1;3418:21:1::0;3475:2;3455:18;;;3448:30;3514:34;3494:18;;;3487:62;-1:-1:-1;;;3565:18:1;;;3558:36;3611:19;;16993:73:0::1;3234:402:1::0;16993:73:0::1;17103:6;::::0;17082:38:::1;::::0;-1:-1:-1;;;;;17082:38:0;;::::1;::::0;17103:6:::1;::::0;17082:38:::1;::::0;17103:6:::1;::::0;17082:38:::1;17131:6;:17:::0;;-1:-1:-1;;;;;;17131:17:0::1;-1:-1:-1::0;;;;;17131:17:0;;;::::1;::::0;;;::::1;::::0;;16912:244::o;13902:346::-;-1:-1:-1;;;;;14004:19:0;;13996:68;;;;-1:-1:-1;;;13996:68:0;;6636:2:1;13996:68:0;;;6618:21:1;6675:2;6655:18;;;6648:30;6714:34;6694:18;;;6687:62;-1:-1:-1;;;6765:18:1;;;6758:34;6809:19;;13996:68:0;6434:400:1;13996:68:0;-1:-1:-1;;;;;14083:21:0;;14075:68;;;;-1:-1:-1;;;14075:68:0;;3843:2:1;14075:68:0;;;3825:21:1;3882:2;3862:18;;;3855:30;3921:34;3901:18;;;3894:62;-1:-1:-1;;;3972:18:1;;;3965:32;4014:19;;14075:68:0;3641:398:1;14075:68:0;-1:-1:-1;;;;;14156:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14208:32;;7391:25:1;;;14208:32:0;;7364:18:1;14208:32:0;;;;;;;;13902:346;;;:::o;11413:604::-;-1:-1:-1;;;;;11519:20:0;;11511:70;;;;-1:-1:-1;;;11511:70:0;;6230:2:1;11511:70:0;;;6212:21:1;6269:2;6249:18;;;6242:30;6308:34;6288:18;;;6281:62;-1:-1:-1;;;6359:18:1;;;6352:35;6404:19;;11511:70:0;6028:401:1;11511:70:0;-1:-1:-1;;;;;11600:23:0;;11592:71;;;;-1:-1:-1;;;11592:71:0;;2629:2:1;11592:71:0;;;2611:21:1;2668:2;2648:18;;;2641:30;2707:34;2687:18;;;2680:62;-1:-1:-1;;;2758:18:1;;;2751:33;2801:19;;11592:71:0;2427:399:1;11592:71:0;-1:-1:-1;;;;;11760:17:0;;11736:21;11760:17;;;;;;;;;;;11796:23;;;;11788:74;;;;-1:-1:-1;;;11788:74:0;;4246:2:1;11788:74:0;;;4228:21:1;4285:2;4265:18;;;4258:30;4324:34;4304:18;;;4297:62;-1:-1:-1;;;4375:18:1;;;4368:36;4421:19;;11788:74:0;4044:402:1;11788:74:0;11893:22;11909:6;11893:13;:22;:::i;:::-;-1:-1:-1;;;;;11873:17:0;;;:9;:17;;;;;;;;;;;:42;;;;11926:20;;;;;;;;:30;;11950:6;;11873:9;11926:30;;11950:6;;11926:30;:::i;:::-;;;;;;;;11991:9;-1:-1:-1;;;;;11974:35:0;11983:6;-1:-1:-1;;;;;11974:35:0;;12002:6;11974:35;;;;7391:25:1;;7379:2;7364:18;;7245:177;11974:35:0;;;;;;;;11500:517;11413:604;;;:::o;12970:494::-;-1:-1:-1;;;;;13054:21:0;;13046:67;;;;-1:-1:-1;;;13046:67:0;;5828:2:1;13046:67:0;;;5810:21:1;5867:2;5847:18;;;5840:30;5906:34;5886:18;;;5879:62;-1:-1:-1;;;5957:18:1;;;5950:31;5998:19;;13046:67:0;5626:397:1;13046:67:0;-1:-1:-1;;;;;13213:18:0;;13188:22;13213:18;;;;;;;;;;;13250:24;;;;13242:71;;;;-1:-1:-1;;;13242:71:0;;3033:2:1;13242:71:0;;;3015:21:1;3072:2;3052:18;;;3045:30;3111:34;3091:18;;;3084:62;-1:-1:-1;;;3162:18:1;;;3155:32;3204:19;;13242:71:0;2831:398:1;13242:71:0;13345:23;13362:6;13345:14;:23;:::i;:::-;-1:-1:-1;;;;;13324:18:0;;:9;:18;;;;;;;;;;:44;;;;13379:12;:22;;13395:6;;13324:9;13379:22;;13395:6;;13379:22;:::i;:::-;;;;-1:-1:-1;;13419:37:0;;7391:25:1;;;13445:1:0;;-1:-1:-1;;;;;13419:37:0;;;;;7379:2:1;7364:18;13419:37:0;7245:177: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:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1825:597::-;1937:4;1966:2;1995;1984:9;1977:21;2027:6;2021:13;2070:6;2065:2;2054:9;2050:18;2043:34;2095:1;2105:140;2119:6;2116:1;2113:13;2105:140;;;2214:14;;;2210:23;;2204:30;2180:17;;;2199:2;2176:26;2169:66;2134:10;;2105:140;;;2263:6;2260:1;2257:13;2254:91;;;2333:1;2328:2;2319:6;2308:9;2304:22;2300:31;2293:42;2254:91;-1:-1:-1;2406:2:1;2385:15;-1:-1:-1;;2381:29:1;2366:45;;;;2413:2;2362:54;;1825:597;-1:-1:-1;;;1825:597:1:o;7616:128::-;7656:3;7687:1;7683:6;7680:1;7677:13;7674:39;;;7693:18;;:::i;:::-;-1:-1:-1;7729:9:1;;7616:128::o;7749:125::-;7789:4;7817:1;7814;7811:8;7808:34;;;7822:18;;:::i;:::-;-1:-1:-1;7859:9:1;;7749:125::o;7879:380::-;7958:1;7954:12;;;;8001;;;8022:61;;8076:4;8068:6;8064:17;8054:27;;8022:61;8129:2;8121:6;8118:14;8098:18;8095:38;8092:161;;;8175:10;8170:3;8166:20;8163:1;8156:31;8210:4;8207:1;8200:15;8238:4;8235:1;8228:15;8092:161;;7879:380;;;:::o;8264:127::-;8325:10;8320:3;8316:20;8313:1;8306:31;8356:4;8353:1;8346:15;8380:4;8377:1;8370:15
Swarm Source
ipfs://ea1d008e7a943db940cafecd3ff5d18c2b3e91be2785e9a2e625ceb06607b3c5
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.