Polygon Sponsored slots available. Book your slot here!
Contract Overview
[ Download CSV Export ]
Contract Name:
VMC
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-11-22 */ // Sources flattened with hardhat v2.6.8 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT 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] 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/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/token/ERC20/[email protected] 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 {} } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } // File contracts/VMC.sol // OpenZeppelin Contracts v4.3.2 (token/ERC20/presets/ERC20PresetFixedSupply.sol) pragma solidity ^0.8.0; /** * @dev {ERC20} token, including: * * - Preminted initial supply * - Ability for holders to burn (destroy) their tokens * - No access control mechanism (for minting/pausing) and hence no governance * * This contract uses {ERC20Burnable} to include burn capabilities - head to * its documentation for details. * * _Available since v3.4._ */ contract VMC is ERC20Burnable,ERC20Pausable { /** * @dev Mints `initialSupply` amount of token and transfers them to `owner`. * * See {ERC20-constructor}. */ constructor() ERC20("VMart Token", "VMC") { _mint(msg.sender, 20000000000 * (10 ** uint256(decimals())) ); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override(ERC20, ERC20Pausable) { super._beforeTokenTransfer(from, to, 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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600b81526020016a2b26b0b93a102a37b5b2b760a91b81525060405180604001604052806003815260200162564d4360e81b81525081600390805190602001906200006a92919062000218565b5080516200008090600490602084019062000218565b50506005805460ff1916905550620000c3336200009c620000c9565b620000ac9060ff16600a620003b0565b620000bd906404a817c800620004a5565b620000ce565b6200051a565b601290565b6001600160a01b038216620001005760405162461bcd60e51b8152600401620000f790620002be565b60405180910390fd5b6200010e60008383620001b0565b806002600082825462000122919062000348565b90915550506001600160a01b038216600090815260208190526040812080548392906200015190849062000348565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001969085906200033f565b60405180910390a3620001ac60008383620001c8565b5050565b620001c8838383620001cd60201b620004fe1760201c565b505050565b620001e5838383620001c860201b620004321760201c565b620001ef6200020f565b15620001c85760405162461bcd60e51b8152600401620000f790620002f5565b60055460ff1690565b8280546200022690620004c7565b90600052602060002090601f0160209004810192826200024a576000855562000295565b82601f106200026557805160ff191683800117855562000295565b8280016001018555821562000295579182015b828111156200029557825182559160200191906001019062000278565b50620002a3929150620002a7565b5090565b5b80821115620002a35760008155600101620002a8565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686040820152691a5b19481c185d5cd95960b21b606082015260800190565b90815260200190565b600082198211156200035e576200035e62000504565b500190565b80825b6001808611620003775750620003a7565b8187048211156200038c576200038c62000504565b808616156200039a57918102915b9490941c93800262000366565b94509492505050565b6000620003c16000198484620003c8565b9392505050565b600082620003d957506001620003c1565b81620003e857506000620003c1565b81600181146200040157600281146200040c5762000440565b6001915050620003c1565b60ff84111562000420576200042062000504565b6001841b91508482111562000439576200043962000504565b50620003c1565b5060208310610133831016604e8410600b841016171562000478575081810a8381111562000472576200047262000504565b620003c1565b62000487848484600162000363565b8086048211156200049c576200049c62000504565b02949350505050565b6000816000190483118215151615620004c257620004c262000504565b500290565b600281046001821680620004dc57607f821691505b60208210811415620004fe57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610d0f806200052a6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80635c975abb1161008c57806395d89b411161006657806395d89b41146101c0578063a457c2d7146101c8578063a9059cbb146101db578063dd62ed3e146101ee576100ea565b80635c975abb1461019257806370a082311461019a57806379cc6790146101ad576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806342966c681461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610201565b60405161010491906108fd565b60405180910390f35b61012061011b3660046108b1565b610293565b60405161010491906108f2565b6101356102b0565b6040516101049190610c42565b610120610150366004610876565b6102b6565b61015d61034f565b6040516101049190610c4b565b6101206101783660046108b1565b610354565b61019061018b3660046108da565b6103a8565b005b6101206103bc565b6101356101a8366004610823565b6103c5565b6101906101bb3660046108b1565b6103e4565b6100f7610437565b6101206101d63660046108b1565b610446565b6101206101e93660046108b1565b6104bf565b6101356101fc366004610844565b6104d3565b60606003805461021090610c88565b80601f016020809104026020016040519081016040528092919081815260200182805461023c90610c88565b80156102895780601f1061025e57610100808354040283529160200191610289565b820191906000526020600020905b81548152906001019060200180831161026c57829003601f168201915b5050505050905090565b60006102a76102a061052e565b8484610532565b50600192915050565b60025490565b60006102c38484846105e6565b6001600160a01b0384166000908152600160205260408120816102e461052e565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103305760405162461bcd60e51b815260040161032790610a5d565b60405180910390fd5b6103448561033c61052e565b858403610532565b506001949350505050565b601290565b60006102a761036161052e565b84846001600061036f61052e565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103a39190610c59565b610532565b6103b96103b361052e565b82610710565b50565b60055460ff1690565b6001600160a01b0381166000908152602081905260409020545b919050565b60006103f2836101fc61052e565b9050818110156104145760405162461bcd60e51b815260040161032790610aa5565b6104288361042061052e565b848403610532565b6104328383610710565b505050565b60606004805461021090610c88565b6000806001600061045561052e565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104a15760405162461bcd60e51b815260040161032790610bb3565b6104b56104ac61052e565b85858403610532565b5060019392505050565b60006102a76104cc61052e565b84846105e6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610509838383610432565b6105116103bc565b156104325760405162461bcd60e51b815260040161032790610bf8565b3390565b6001600160a01b0383166105585760405162461bcd60e51b815260040161032790610b6f565b6001600160a01b03821661057e5760405162461bcd60e51b8152600401610327906109d5565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105d9908590610c42565b60405180910390a3505050565b6001600160a01b03831661060c5760405162461bcd60e51b815260040161032790610b2a565b6001600160a01b0382166106325760405162461bcd60e51b815260040161032790610950565b61063d838383610801565b6001600160a01b038316600090815260208190526040902054818110156106765760405162461bcd60e51b815260040161032790610a17565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906106ad908490610c59565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f79190610c42565b60405180910390a361070a848484610432565b50505050565b6001600160a01b0382166107365760405162461bcd60e51b815260040161032790610ae9565b61074282600083610801565b6001600160a01b0382166000908152602081905260409020548181101561077b5760405162461bcd60e51b815260040161032790610993565b6001600160a01b03831660009081526020819052604081208383039055600280548492906107aa908490610c71565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107ed908690610c42565b60405180910390a361043283600084610432565b6104328383836104fe565b80356001600160a01b03811681146103df57600080fd5b600060208284031215610834578081fd5b61083d8261080c565b9392505050565b60008060408385031215610856578081fd5b61085f8361080c565b915061086d6020840161080c565b90509250929050565b60008060006060848603121561088a578081fd5b6108938461080c565b92506108a16020850161080c565b9150604084013590509250925092565b600080604083850312156108c3578182fd5b6108cc8361080c565b946020939093013593505050565b6000602082840312156108eb578081fd5b5035919050565b901515815260200190565b6000602080835283518082850152825b818110156109295785810183015185820160400152820161090d565b8181111561093a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686040820152691a5b19481c185d5cd95960b21b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c6c57610c6c610cc3565b500190565b600082821015610c8357610c83610cc3565b500390565b600281046001821680610c9c57607f821691505b60208210811415610cbd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122038b8e6f002aef928e5e5b79dab3c5eeda34d043d4ea24178d31f9faa2615358164736f6c63430008000033
Deployed ByteCode Sourcemap
21428:542:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6527:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8694:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7647:108::-;;;:::i;:::-;;;;;;;:::i;9345:492::-;;;;;;:::i;:::-;;:::i;7489:93::-;;;:::i;:::-;;;;;;;:::i;10246:215::-;;;;;;:::i;:::-;;:::i;20129:91::-;;;;;;:::i;:::-;;:::i;:::-;;17568:86;;;:::i;7818:127::-;;;;;;:::i;:::-;;:::i;20539:368::-;;;;;;:::i;:::-;;:::i;6746:104::-;;;:::i;10964:413::-;;;;;;:::i;:::-;;:::i;8158:175::-;;;;;;:::i;:::-;;:::i;8396:151::-;;;;;;:::i;:::-;;:::i;6527:100::-;6581:13;6614:5;6607:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6527:100;:::o;8694:169::-;8777:4;8794:39;8803:12;:10;:12::i;:::-;8817:7;8826:6;8794:8;:39::i;:::-;-1:-1:-1;8851:4:0;8694:169;;;;:::o;7647:108::-;7735:12;;7647:108;:::o;9345:492::-;9485:4;9502:36;9512:6;9520:9;9531:6;9502:9;:36::i;:::-;-1:-1:-1;;;;;9578:19:0;;9551:24;9578:19;;;:11;:19;;;;;9551:24;9598:12;:10;:12::i;:::-;-1:-1:-1;;;;;9578:33:0;-1:-1:-1;;;;;9578:33:0;;;;;;;;;;;;;9551:60;;9650:6;9630:16;:26;;9622:79;;;;-1:-1:-1;;;9622:79:0;;;;;;;:::i;:::-;;;;;;;;;9737:57;9746:6;9754:12;:10;:12::i;:::-;9787:6;9768:16;:25;9737:8;:57::i;:::-;-1:-1:-1;9825:4:0;;9345:492;-1:-1:-1;;;;9345:492:0:o;7489:93::-;7572:2;7489:93;:::o;10246:215::-;10334:4;10351:80;10360:12;:10;:12::i;:::-;10374:7;10420:10;10383:11;:25;10395:12;:10;:12::i;:::-;-1:-1:-1;;;;;10383:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10383:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;10351:8;:80::i;20129:91::-;20185:27;20191:12;:10;:12::i;:::-;20205:6;20185:5;:27::i;:::-;20129:91;:::o;17568:86::-;17639:7;;;;17568:86;:::o;7818:127::-;-1:-1:-1;;;;;7919:18:0;;7892:7;7919:18;;;;;;;;;;;7818:127;;;;:::o;20539:368::-;20616:24;20643:32;20653:7;20662:12;:10;:12::i;20643:32::-;20616:59;;20714:6;20694:16;:26;;20686:75;;;;-1:-1:-1;;;20686:75:0;;;;;;;:::i;:::-;20797:58;20806:7;20815:12;:10;:12::i;:::-;20848:6;20829:16;:25;20797:8;:58::i;:::-;20877:22;20883:7;20892:6;20877:5;:22::i;:::-;20539:368;;;:::o;6746:104::-;6802:13;6835:7;6828:14;;;;;:::i;10964:413::-;11057:4;11074:24;11101:11;:25;11113:12;:10;:12::i;:::-;-1:-1:-1;;;;;11101:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11101:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11154:35:0;;;;11146:85;;;;-1:-1:-1;;;11146:85:0;;;;;;;:::i;:::-;11267:67;11276:12;:10;:12::i;:::-;11290:7;11318:15;11299:16;:34;11267:8;:67::i;:::-;-1:-1:-1;11365:4:0;;10964:413;-1:-1:-1;;;10964:413:0:o;8158:175::-;8244:4;8261:42;8271:12;:10;:12::i;:::-;8285:9;8296:6;8261:9;:42::i;8396:151::-;-1:-1:-1;;;;;8512:18:0;;;8485:7;8512:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8396:151::o;19353:272::-;19496:44;19523:4;19529:2;19533:6;19496:26;:44::i;:::-;19562:8;:6;:8::i;:::-;19561:9;19553:64;;;;-1:-1:-1;;;19553:64:0;;;;;;;:::i;4234:98::-;4314:10;4234:98;:::o;14648:380::-;-1:-1:-1;;;;;14784:19:0;;14776:68;;;;-1:-1:-1;;;14776:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14863:21:0;;14855:68;;;;-1:-1:-1;;;14855:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14936:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14988:32;;;;;14966:6;;14988:32;:::i;:::-;;;;;;;;14648:380;;;:::o;11867:733::-;-1:-1:-1;;;;;12007:20:0;;11999:70;;;;-1:-1:-1;;;11999:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12088:23:0;;12080:71;;;;-1:-1:-1;;;12080:71:0;;;;;;;:::i;:::-;12164:47;12185:6;12193:9;12204:6;12164:20;:47::i;:::-;-1:-1:-1;;;;;12248:17:0;;12224:21;12248:17;;;;;;;;;;;12284:23;;;;12276:74;;;;-1:-1:-1;;;12276:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12386:17:0;;;:9;:17;;;;;;;;;;;12406:22;;;12386:42;;12450:20;;;;;;;;:30;;12422:6;;12386:9;12450:30;;12422:6;;12450:30;:::i;:::-;;;;;;;;12515:9;-1:-1:-1;;;;;12498:35:0;12507:6;-1:-1:-1;;;;;12498:35:0;;12526:6;12498:35;;;;;;:::i;:::-;;;;;;;;12546:46;12566:6;12574:9;12585:6;12546:19;:46::i;:::-;11867:733;;;;:::o;13619:591::-;-1:-1:-1;;;;;13703:21:0;;13695:67;;;;-1:-1:-1;;;13695:67:0;;;;;;;:::i;:::-;13775:49;13796:7;13813:1;13817:6;13775:20;:49::i;:::-;-1:-1:-1;;;;;13862:18:0;;13837:22;13862:18;;;;;;;;;;;13899:24;;;;13891:71;;;;-1:-1:-1;;;13891:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13998:18:0;;:9;:18;;;;;;;;;;14019:23;;;13998:44;;14064:12;:22;;14036:6;;13998:9;14064:22;;14036:6;;14064:22;:::i;:::-;;;;-1:-1:-1;;14104:37:0;;14130:1;;-1:-1:-1;;;;;14104:37:0;;;;;;;14134:6;;14104:37;:::i;:::-;;;;;;;;14154:48;14174:7;14191:1;14195:6;14154:19;:48::i;21750:217::-;21915:44;21942:4;21948:2;21952:6;21915:26;:44::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:187::-;1654:14;;1647:22;1629:41;;1617:2;1602:18;;1584:92::o;1681:603::-;;1822:2;1851;1840:9;1833:21;1883:6;1877:13;1926:6;1921:2;1910:9;1906:18;1899:34;1951:4;1964:140;1978:6;1975:1;1972:13;1964:140;;;2073:14;;;2069:23;;2063:30;2039:17;;;2058:2;2035:26;2028:66;1993:10;;1964:140;;;2122:6;2119:1;2116:13;2113:2;;;2192:4;2187:2;2178:6;2167:9;2163:22;2159:31;2152:45;2113:2;-1:-1:-1;2268:2:1;2247:15;-1:-1:-1;;2243:29:1;2228:45;;;;2275:2;2224:54;;1802:482;-1:-1:-1;;;1802:482:1:o;2289:399::-;2491:2;2473:21;;;2530:2;2510:18;;;2503:30;2569:34;2564:2;2549:18;;2542:62;-1:-1:-1;;;2635:2:1;2620:18;;2613:33;2678:3;2663:19;;2463:225::o;2693:398::-;2895:2;2877:21;;;2934:2;2914:18;;;2907:30;2973:34;2968:2;2953:18;;2946:62;-1:-1:-1;;;3039:2:1;3024:18;;3017:32;3081:3;3066:19;;2867:224::o;3096:398::-;3298:2;3280:21;;;3337:2;3317:18;;;3310:30;3376:34;3371:2;3356:18;;3349:62;-1:-1:-1;;;3442:2:1;3427:18;;3420:32;3484:3;3469:19;;3270:224::o;3499:402::-;3701:2;3683:21;;;3740:2;3720:18;;;3713:30;3779:34;3774:2;3759:18;;3752:62;-1:-1:-1;;;3845:2:1;3830:18;;3823:36;3891:3;3876:19;;3673:228::o;3906:404::-;4108:2;4090:21;;;4147:2;4127:18;;;4120:30;4186:34;4181:2;4166:18;;4159:62;-1:-1:-1;;;4252:2:1;4237:18;;4230:38;4300:3;4285:19;;4080:230::o;4315:400::-;4517:2;4499:21;;;4556:2;4536:18;;;4529:30;4595:34;4590:2;4575:18;;4568:62;-1:-1:-1;;;4661:2:1;4646:18;;4639:34;4705:3;4690:19;;4489:226::o;4720:397::-;4922:2;4904:21;;;4961:2;4941:18;;;4934:30;5000:34;4995:2;4980:18;;4973:62;-1:-1:-1;;;5066:2:1;5051:18;;5044:31;5107:3;5092:19;;4894:223::o;5122:401::-;5324:2;5306:21;;;5363:2;5343:18;;;5336:30;5402:34;5397:2;5382:18;;5375:62;-1:-1:-1;;;5468:2:1;5453:18;;5446:35;5513:3;5498:19;;5296:227::o;5528:400::-;5730:2;5712:21;;;5769:2;5749:18;;;5742:30;5808:34;5803:2;5788:18;;5781:62;-1:-1:-1;;;5874:2:1;5859:18;;5852:34;5918:3;5903:19;;5702:226::o;5933:401::-;6135:2;6117:21;;;6174:2;6154:18;;;6147:30;6213:34;6208:2;6193:18;;6186:62;-1:-1:-1;;;6279:2:1;6264:18;;6257:35;6324:3;6309:19;;6107:227::o;6339:406::-;6541:2;6523:21;;;6580:2;6560:18;;;6553:30;6619:34;6614:2;6599:18;;6592:62;-1:-1:-1;;;6685:2:1;6670:18;;6663:40;6735:3;6720:19;;6513:232::o;6750:177::-;6896:25;;;6884:2;6869:18;;6851:76::o;6932:184::-;7104:4;7092:17;;;;7074:36;;7062:2;7047:18;;7029:87::o;7121:128::-;;7192:1;7188:6;7185:1;7182:13;7179:2;;;7198:18;;:::i;:::-;-1:-1:-1;7234:9:1;;7169:80::o;7254:125::-;;7322:1;7319;7316:8;7313:2;;;7327:18;;:::i;:::-;-1:-1:-1;7364:9:1;;7303:76::o;7384:380::-;7469:1;7459:12;;7516:1;7506:12;;;7527:2;;7581:4;7573:6;7569:17;7559:27;;7527:2;7634;7626:6;7623:14;7603:18;7600:38;7597:2;;;7680:10;7675:3;7671:20;7668:1;7661:31;7715:4;7712:1;7705:15;7743:4;7740:1;7733:15;7597:2;;7439:325;;;:::o;7769:127::-;7830:10;7825:3;7821:20;7818:1;7811:31;7861:4;7858:1;7851:15;7885:4;7882:1;7875:15
Swarm Source
ipfs://38b8e6f002aef928e5e5b79dab3c5eeda34d043d4ea24178d31f9faa26153581
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.