Contract Overview
Balance:
0 BNB
BNB Value:
$0.00
[ Download CSV Export ]
Contract Name:
OneNetwork
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-01-06 */ /* * @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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { 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 Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [// importANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * // importANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 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 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // import "@openzeppelin/contracts/GSN/Context.sol"; /** * @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. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; contract OneNetwork is ERC20("One Network", "1NET"), ERC20Burnable, Ownable { using SafeERC20 for ERC20; constructor() public { _mint(_msgSender(), 1000000 ether); } function getOwner() public view returns (address) { return owner(); } }
[{"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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4f6e65204e6574776f726b0000000000000000000000000000000000000000008152506040518060400160405280600481526020017f314e455400000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620003c4565b508060049080519060200190620000af929190620003c4565b506012600560006101000a81548160ff021916908360ff16021790555050506000620000e0620001b060201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001aa62000193620001b060201b60201c565b69d3c21bcecceda1000000620001b860201b60201c565b6200057b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200022b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002229062000521565b60405180910390fd5b6200023f600083836200036760201b60201c565b6200025b816002546200036c60201b62000c091790919060201c565b600281905550620002b9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200036c60201b62000c091790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035b919062000543565b60405180910390a35050565b505050565b600080828401905083811015620003ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b190620004ff565b60405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200040757805160ff191683800117855562000438565b8280016001018555821562000438579182015b82811115620004375782518255916020019190600101906200041a565b5b5090506200044791906200044b565b5090565b5b80821115620004665760008160009055506001016200044c565b5090565b600062000479601b8362000560565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000620004bb601f8362000560565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620004f98162000571565b82525050565b600060208201905081810360008301526200051a816200046a565b9050919050565b600060208201905081810360008301526200053c81620004ac565b9050919050565b60006020820190506200055a6000830184620004ee565b92915050565b600082825260208201905092915050565b6000819050919050565b611b1a806200058b6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063f2fde38b146103565761010b565b8063715018a61461024657806379cc679014610250578063893d20e81461026c5780638da5cb5b1461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610372565b60405161012591906117f0565b60405180910390f35b610148600480360381019061014391906113fc565b610414565b60405161015591906117d5565b60405180910390f35b610166610432565b6040516101739190611912565b60405180910390f35b610196600480360381019061019191906113ad565b61043c565b6040516101a391906117d5565b60405180910390f35b6101b4610515565b6040516101c1919061192d565b60405180910390f35b6101e460048036038101906101df91906113fc565b61052c565b6040516101f191906117d5565b60405180910390f35b610214600480360381019061020f9190611438565b6105df565b005b610230600480360381019061022b9190611348565b6105f3565b60405161023d9190611912565b60405180910390f35b61024e61063b565b005b61026a600480360381019061026591906113fc565b610793565b005b6102746107f5565b60405161028191906117ba565b60405180910390f35b610292610804565b60405161029f91906117ba565b60405180910390f35b6102b061082e565b6040516102bd91906117f0565b60405180910390f35b6102e060048036038101906102db91906113fc565b6108d0565b6040516102ed91906117d5565b60405180910390f35b610310600480360381019061030b91906113fc565b61099d565b60405161031d91906117d5565b60405180910390f35b610340600480360381019061033b9190611371565b6109bb565b60405161034d9190611912565b60405180910390f35b610370600480360381019061036b9190611348565b610a42565b005b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561040a5780601f106103df5761010080835404028352916020019161040a565b820191906000526020600020905b8154815290600101906020018083116103ed57829003601f168201915b5050505050905090565b6000610428610421610c5e565b8484610c66565b6001905092915050565b6000600254905090565b6000610449848484610e31565b61050a84610455610c5e565b61050585604051806060016040528060288152602001611a7460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104bb610c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c69092919063ffffffff16565b610c66565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105d5610539610c5e565b846105d0856001600061054a610c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c0990919063ffffffff16565b610c66565b6001905092915050565b6105f06105ea610c5e565b82611121565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610643610c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c990611892565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006107d282604051806060016040528060248152602001611a9c602491396107c3866107be610c5e565b6109bb565b6110c69092919063ffffffff16565b90506107e6836107e0610c5e565b83610c66565b6107f08383611121565b505050565b60006107ff610804565b905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b5050505050905090565b60006109936108dd610c5e565b8461098e85604051806060016040528060258152602001611ac06025913960016000610907610c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c69092919063ffffffff16565b610c66565b6001905092915050565b60006109b16109aa610c5e565b8484610e31565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a4a610c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090611892565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611832565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080828401905083811015610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90611872565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd906118f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90611852565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e249190611912565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e98906118d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890611812565b60405180910390fd5b610f1c8383836112cf565b610f8781604051806060016040528060268152602001611a4e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061101a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c0990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110b99190611912565b60405180910390a3505050565b600083831115829061110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110591906117f0565b60405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906118b2565b60405180910390fd5b61119d826000836112cf565b61120881604051806060016040528060228152602001611a2c602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c69092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061125f816002546112d490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c39190611912565b60405180910390a35050565b505050565b600061131683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110c6565b905092915050565b60008135905061132d816119fd565b92915050565b60008135905061134281611a14565b92915050565b60006020828403121561135a57600080fd5b60006113688482850161131e565b91505092915050565b6000806040838503121561138457600080fd5b60006113928582860161131e565b92505060206113a38582860161131e565b9150509250929050565b6000806000606084860312156113c257600080fd5b60006113d08682870161131e565b93505060206113e18682870161131e565b92505060406113f286828701611333565b9150509250925092565b6000806040838503121561140f57600080fd5b600061141d8582860161131e565b925050602061142e85828601611333565b9150509250929050565b60006020828403121561144a57600080fd5b600061145884828501611333565b91505092915050565b61146a81611964565b82525050565b61147981611976565b82525050565b600061148a82611948565b6114948185611953565b93506114a48185602086016119b9565b6114ad816119ec565b840191505092915050565b60006114c5602383611953565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061152b602683611953565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611591602283611953565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115f7601b83611953565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611637602083611953565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611677602183611953565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116dd602583611953565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611743602483611953565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6117a5816119a2565b82525050565b6117b4816119ac565b82525050565b60006020820190506117cf6000830184611461565b92915050565b60006020820190506117ea6000830184611470565b92915050565b6000602082019050818103600083015261180a818461147f565b905092915050565b6000602082019050818103600083015261182b816114b8565b9050919050565b6000602082019050818103600083015261184b8161151e565b9050919050565b6000602082019050818103600083015261186b81611584565b9050919050565b6000602082019050818103600083015261188b816115ea565b9050919050565b600060208201905081810360008301526118ab8161162a565b9050919050565b600060208201905081810360008301526118cb8161166a565b9050919050565b600060208201905081810360008301526118eb816116d0565b9050919050565b6000602082019050818103600083015261190b81611736565b9050919050565b6000602082019050611927600083018461179c565b92915050565b600060208201905061194260008301846117ab565b92915050565b600081519050919050565b600082825260208201905092915050565b600061196f82611982565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119d75780820151818401526020810190506119bc565b838111156119e6576000848401525b50505050565b6000601f19601f8301169050919050565b611a0681611964565b8114611a1157600080fd5b50565b611a1d816119a2565b8114611a2857600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a1e72716d85d9a42db61a2916845d6c49888e0965218d36d434904c7eff151db64736f6c634300060c0033
Deployed ByteCode Sourcemap
33804:285:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17171:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19277:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18246:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19920:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18098:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20650:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26367:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18409:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32415:148;;;:::i;:::-;;26777:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34003:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31773:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17373:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21371:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18741:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18979:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32718:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17171:83;17208:13;17241:5;17234:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17171:83;:::o;19277:169::-;19360:4;19377:39;19386:12;:10;:12::i;:::-;19400:7;19409:6;19377:8;:39::i;:::-;19434:4;19427:11;;19277:169;;;;:::o;18246:100::-;18299:7;18326:12;;18319:19;;18246:100;:::o;19920:321::-;20026:4;20043:36;20053:6;20061:9;20072:6;20043:9;:36::i;:::-;20090:121;20099:6;20107:12;:10;:12::i;:::-;20121:89;20159:6;20121:89;;;;;;;;;;;;;;;;;:11;:19;20133:6;20121:19;;;;;;;;;;;;;;;:33;20141:12;:10;:12::i;:::-;20121:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;20090:8;:121::i;:::-;20229:4;20222:11;;19920:321;;;;;:::o;18098:83::-;18139:5;18164:9;;;;;;;;;;;18157:16;;18098:83;:::o;20650:218::-;20738:4;20755:83;20764:12;:10;:12::i;:::-;20778:7;20787:50;20826:10;20787:11;:25;20799:12;:10;:12::i;:::-;20787:25;;;;;;;;;;;;;;;:34;20813:7;20787:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;20755:8;:83::i;:::-;20856:4;20849:11;;20650:218;;;;:::o;26367:91::-;26423:27;26429:12;:10;:12::i;:::-;26443:6;26423:5;:27::i;:::-;26367:91;:::o;18409:119::-;18475:7;18502:9;:18;18512:7;18502:18;;;;;;;;;;;;;;;;18495:25;;18409:119;;;:::o;32415:148::-;31995:12;:10;:12::i;:::-;31985:22;;:6;;;;;;;;;;;:22;;;31977:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32522:1:::1;32485:40;;32506:6;;;;;;;;;;;32485:40;;;;;;;;;;;;32553:1;32536:6;;:19;;;;;;;;;;;;;;;;;;32415:148::o:0;26777:295::-;26854:26;26883:84;26920:6;26883:84;;;;;;;;;;;;;;;;;:32;26893:7;26902:12;:10;:12::i;:::-;26883:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;26854:113;;26980:51;26989:7;26998:12;:10;:12::i;:::-;27012:18;26980:8;:51::i;:::-;27042:22;27048:7;27057:6;27042:5;:22::i;:::-;26777:295;;;:::o;34003:83::-;34044:7;34071;:5;:7::i;:::-;34064:14;;34003:83;:::o;31773:79::-;31811:7;31838:6;;;;;;;;;;;31831:13;;31773:79;:::o;17373:87::-;17412:13;17445:7;17438:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17373:87;:::o;21371:269::-;21464:4;21481:129;21490:12;:10;:12::i;:::-;21504:7;21513:96;21552:15;21513:96;;;;;;;;;;;;;;;;;:11;:25;21525:12;:10;:12::i;:::-;21513:25;;;;;;;;;;;;;;;:34;21539:7;21513:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;21481:8;:129::i;:::-;21628:4;21621:11;;21371:269;;;;:::o;18741:175::-;18827:4;18844:42;18854:12;:10;:12::i;:::-;18868:9;18879:6;18844:9;:42::i;:::-;18904:4;18897:11;;18741:175;;;;:::o;18979:151::-;19068:7;19095:11;:18;19107:5;19095:18;;;;;;;;;;;;;;;:27;19114:7;19095:27;;;;;;;;;;;;;;;;19088:34;;18979:151;;;;:::o;32718:244::-;31995:12;:10;:12::i;:::-;31985:22;;:6;;;;;;;;;;;:22;;;31977:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32827:1:::1;32807:22;;:8;:22;;;;32799:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32917:8;32888:38;;32909:6;;;;;;;;;;;32888:38;;;;;;;;;;;;32946:8;32937:6;;:17;;;;;;;;;;;;;;;;;;32718:244:::0;:::o;4453:181::-;4511:7;4531:9;4547:1;4543;:5;4531:17;;4572:1;4567;:6;;4559:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4625:1;4618:8;;;4453:181;;;;:::o;543:106::-;596:15;631:10;624:17;;543:106;:::o;24518:346::-;24637:1;24620:19;;:5;:19;;;;24612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24718:1;24699:21;;:7;:21;;;;24691:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24802:6;24772:11;:18;24784:5;24772:18;;;;;;;;;;;;;;;:27;24791:7;24772:27;;;;;;;;;;;;;;;:36;;;;24840:7;24824:32;;24833:5;24824:32;;;24849:6;24824:32;;;;;;:::i;:::-;;;;;;;;24518:346;;;:::o;22130:539::-;22254:1;22236:20;;:6;:20;;;;22228:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;22338:1;22317:23;;:9;:23;;;;22309:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22393:47;22414:6;22422:9;22433:6;22393:20;:47::i;:::-;22473:71;22495:6;22473:71;;;;;;;;;;;;;;;;;:9;:17;22483:6;22473:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;22453:9;:17;22463:6;22453:17;;;;;;;;;;;;;;;:91;;;;22578:32;22603:6;22578:9;:20;22588:9;22578:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;22555:9;:20;22565:9;22555:20;;;;;;;;;;;;;;;:55;;;;22643:9;22626:35;;22635:6;22626:35;;;22654:6;22626:35;;;;;;:::i;:::-;;;;;;;;22130:539;;;:::o;5356:192::-;5442:7;5475:1;5470;:6;;5478:12;5462:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5502:9;5518:1;5514;:5;5502:17;;5539:1;5532:8;;;5356:192;;;;;:::o;23660:418::-;23763:1;23744:21;;:7;:21;;;;23736:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23816:49;23837:7;23854:1;23858:6;23816:20;:49::i;:::-;23899:68;23922:6;23899:68;;;;;;;;;;;;;;;;;:9;:18;23909:7;23899:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;23878:9;:18;23888:7;23878:18;;;;;;;;;;;;;;;:89;;;;23993:24;24010:6;23993:12;;:16;;:24;;;;:::i;:::-;23978:12;:39;;;;24059:1;24033:37;;24042:7;24033:37;;;24063:6;24033:37;;;;;;:::i;:::-;;;;;;;;23660:418;;:::o;25889:92::-;;;;:::o;4917:136::-;4975:7;5002:43;5006:1;5009;5002:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4995:50;;4917:136;;;;:::o;5:130:-1:-;;85:6;72:20;63:29;;97:33;124:5;97:33;:::i;:::-;57:78;;;;:::o;142:130::-;;222:6;209:20;200:29;;234:33;261:5;234:33;:::i;:::-;194:78;;;;:::o;279:241::-;;383:2;371:9;362:7;358:23;354:32;351:2;;;399:1;396;389:12;351:2;434:1;451:53;496:7;487:6;476:9;472:22;451:53;:::i;:::-;441:63;;413:97;345:175;;;;:::o;527:366::-;;;648:2;636:9;627:7;623:23;619:32;616:2;;;664:1;661;654:12;616:2;699:1;716:53;761:7;752:6;741:9;737:22;716:53;:::i;:::-;706:63;;678:97;806:2;824:53;869:7;860:6;849:9;845:22;824:53;:::i;:::-;814:63;;785:98;610:283;;;;;:::o;900:491::-;;;;1038:2;1026:9;1017:7;1013:23;1009:32;1006:2;;;1054:1;1051;1044:12;1006:2;1089:1;1106:53;1151:7;1142:6;1131:9;1127:22;1106:53;:::i;:::-;1096:63;;1068:97;1196:2;1214:53;1259:7;1250:6;1239:9;1235:22;1214:53;:::i;:::-;1204:63;;1175:98;1304:2;1322:53;1367:7;1358:6;1347:9;1343:22;1322:53;:::i;:::-;1312:63;;1283:98;1000:391;;;;;:::o;1398:366::-;;;1519:2;1507:9;1498:7;1494:23;1490:32;1487:2;;;1535:1;1532;1525:12;1487:2;1570:1;1587:53;1632:7;1623:6;1612:9;1608:22;1587:53;:::i;:::-;1577:63;;1549:97;1677:2;1695:53;1740:7;1731:6;1720:9;1716:22;1695:53;:::i;:::-;1685:63;;1656:98;1481:283;;;;;:::o;1771:241::-;;1875:2;1863:9;1854:7;1850:23;1846:32;1843:2;;;1891:1;1888;1881:12;1843:2;1926:1;1943:53;1988:7;1979:6;1968:9;1964:22;1943:53;:::i;:::-;1933:63;;1905:97;1837:175;;;;:::o;2019:113::-;2102:24;2120:5;2102:24;:::i;:::-;2097:3;2090:37;2084:48;;:::o;2139:104::-;2216:21;2231:5;2216:21;:::i;:::-;2211:3;2204:34;2198:45;;:::o;2250:347::-;;2362:39;2395:5;2362:39;:::i;:::-;2413:71;2477:6;2472:3;2413:71;:::i;:::-;2406:78;;2489:52;2534:6;2529:3;2522:4;2515:5;2511:16;2489:52;:::i;:::-;2562:29;2584:6;2562:29;:::i;:::-;2557:3;2553:39;2546:46;;2342:255;;;;;:::o;2605:372::-;;2765:67;2829:2;2824:3;2765:67;:::i;:::-;2758:74;;2865:34;2861:1;2856:3;2852:11;2845:55;2934:5;2929:2;2924:3;2920:12;2913:27;2968:2;2963:3;2959:12;2952:19;;2751:226;;;:::o;2986:375::-;;3146:67;3210:2;3205:3;3146:67;:::i;:::-;3139:74;;3246:34;3242:1;3237:3;3233:11;3226:55;3315:8;3310:2;3305:3;3301:12;3294:30;3352:2;3347:3;3343:12;3336:19;;3132:229;;;:::o;3370:371::-;;3530:67;3594:2;3589:3;3530:67;:::i;:::-;3523:74;;3630:34;3626:1;3621:3;3617:11;3610:55;3699:4;3694:2;3689:3;3685:12;3678:26;3732:2;3727:3;3723:12;3716:19;;3516:225;;;:::o;3750:327::-;;3910:67;3974:2;3969:3;3910:67;:::i;:::-;3903:74;;4010:29;4006:1;4001:3;3997:11;3990:50;4068:2;4063:3;4059:12;4052:19;;3896:181;;;:::o;4086:332::-;;4246:67;4310:2;4305:3;4246:67;:::i;:::-;4239:74;;4346:34;4342:1;4337:3;4333:11;4326:55;4409:2;4404:3;4400:12;4393:19;;4232:186;;;:::o;4427:370::-;;4587:67;4651:2;4646:3;4587:67;:::i;:::-;4580:74;;4687:34;4683:1;4678:3;4674:11;4667:55;4756:3;4751:2;4746:3;4742:12;4735:25;4788:2;4783:3;4779:12;4772:19;;4573:224;;;:::o;4806:374::-;;4966:67;5030:2;5025:3;4966:67;:::i;:::-;4959:74;;5066:34;5062:1;5057:3;5053:11;5046:55;5135:7;5130:2;5125:3;5121:12;5114:29;5171:2;5166:3;5162:12;5155:19;;4952:228;;;:::o;5189:373::-;;5349:67;5413:2;5408:3;5349:67;:::i;:::-;5342:74;;5449:34;5445:1;5440:3;5436:11;5429:55;5518:6;5513:2;5508:3;5504:12;5497:28;5553:2;5548:3;5544:12;5537:19;;5335:227;;;:::o;5570:113::-;5653:24;5671:5;5653:24;:::i;:::-;5648:3;5641:37;5635:48;;:::o;5690:107::-;5769:22;5785:5;5769:22;:::i;:::-;5764:3;5757:35;5751:46;;:::o;5804:222::-;;5931:2;5920:9;5916:18;5908:26;;5945:71;6013:1;6002:9;5998:17;5989:6;5945:71;:::i;:::-;5902:124;;;;:::o;6033:210::-;;6154:2;6143:9;6139:18;6131:26;;6168:65;6230:1;6219:9;6215:17;6206:6;6168:65;:::i;:::-;6125:118;;;;:::o;6250:310::-;;6397:2;6386:9;6382:18;6374:26;;6447:9;6441:4;6437:20;6433:1;6422:9;6418:17;6411:47;6472:78;6545:4;6536:6;6472:78;:::i;:::-;6464:86;;6368:192;;;;:::o;6567:416::-;;6767:2;6756:9;6752:18;6744:26;;6817:9;6811:4;6807:20;6803:1;6792:9;6788:17;6781:47;6842:131;6968:4;6842:131;:::i;:::-;6834:139;;6738:245;;;:::o;6990:416::-;;7190:2;7179:9;7175:18;7167:26;;7240:9;7234:4;7230:20;7226:1;7215:9;7211:17;7204:47;7265:131;7391:4;7265:131;:::i;:::-;7257:139;;7161:245;;;:::o;7413:416::-;;7613:2;7602:9;7598:18;7590:26;;7663:9;7657:4;7653:20;7649:1;7638:9;7634:17;7627:47;7688:131;7814:4;7688:131;:::i;:::-;7680:139;;7584:245;;;:::o;7836:416::-;;8036:2;8025:9;8021:18;8013:26;;8086:9;8080:4;8076:20;8072:1;8061:9;8057:17;8050:47;8111:131;8237:4;8111:131;:::i;:::-;8103:139;;8007:245;;;:::o;8259:416::-;;8459:2;8448:9;8444:18;8436:26;;8509:9;8503:4;8499:20;8495:1;8484:9;8480:17;8473:47;8534:131;8660:4;8534:131;:::i;:::-;8526:139;;8430:245;;;:::o;8682:416::-;;8882:2;8871:9;8867:18;8859:26;;8932:9;8926:4;8922:20;8918:1;8907:9;8903:17;8896:47;8957:131;9083:4;8957:131;:::i;:::-;8949:139;;8853:245;;;:::o;9105:416::-;;9305:2;9294:9;9290:18;9282:26;;9355:9;9349:4;9345:20;9341:1;9330:9;9326:17;9319:47;9380:131;9506:4;9380:131;:::i;:::-;9372:139;;9276:245;;;:::o;9528:416::-;;9728:2;9717:9;9713:18;9705:26;;9778:9;9772:4;9768:20;9764:1;9753:9;9749:17;9742:47;9803:131;9929:4;9803:131;:::i;:::-;9795:139;;9699:245;;;:::o;9951:222::-;;10078:2;10067:9;10063:18;10055:26;;10092:71;10160:1;10149:9;10145:17;10136:6;10092:71;:::i;:::-;10049:124;;;;:::o;10180:214::-;;10303:2;10292:9;10288:18;10280:26;;10317:67;10381:1;10370:9;10366:17;10357:6;10317:67;:::i;:::-;10274:120;;;;:::o;10401:122::-;;10495:5;10489:12;10479:22;;10460:63;;;:::o;10531:163::-;;10646:6;10641:3;10634:19;10683:4;10678:3;10674:14;10659:29;;10627:67;;;;:::o;10702:91::-;;10764:24;10782:5;10764:24;:::i;:::-;10753:35;;10747:46;;;:::o;10800:85::-;;10873:5;10866:13;10859:21;10848:32;;10842:43;;;:::o;10892:121::-;;10965:42;10958:5;10954:54;10943:65;;10937:76;;;:::o;11020:72::-;;11082:5;11071:16;;11065:27;;;:::o;11099:81::-;;11170:4;11163:5;11159:16;11148:27;;11142:38;;;:::o;11188:268::-;11253:1;11260:101;11274:6;11271:1;11268:13;11260:101;;;11350:1;11345:3;11341:11;11335:18;11331:1;11326:3;11322:11;11315:39;11296:2;11293:1;11289:10;11284:15;;11260:101;;;11376:6;11373:1;11370:13;11367:2;;;11441:1;11432:6;11427:3;11423:16;11416:27;11367:2;11237:219;;;;:::o;11464:97::-;;11552:2;11548:7;11543:2;11536:5;11532:14;11528:28;11518:38;;11512:49;;;:::o;11569:117::-;11638:24;11656:5;11638:24;:::i;:::-;11631:5;11628:35;11618:2;;11677:1;11674;11667:12;11618:2;11612:74;:::o;11693:117::-;11762:24;11780:5;11762:24;:::i;:::-;11755:5;11752:35;11742:2;;11801:1;11798;11791:12;11742:2;11736:74;:::o
Swarm Source
ipfs://a1e72716d85d9a42db61a2916845d6c49888e0965218d36d434904c7eff151db
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.