Contract Overview
[ Download CSV Export ]
Contract Name:
AutoSingleToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-08-28 */ // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/math/[email protected] pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts/token/ERC20/[email protected] 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/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 contracts/AutoSingle/AutoSingleToken.sol /** _____ _ __ _______ / ___/(_)___ ____ _/ /__ / ____(_)___ ____ _____ ________ \__ \/ / __ \/ __ `/ / _ \/ /_ / / __ \/ __ `/ __ \/ ___/ _ \ ___/ / / / / / /_/ / / __/ __/ / / / / / /_/ / / / / /__/ __/ /____/_/_/ /_/\__, /_/\___/_/ /_/_/ /_/\__,_/_/ /_/\___/\___/ /____/ */ pragma solidity ^0.8.4; contract AutoSingleToken is ERC20("AutoSingle Token", "AutoS"), Ownable { using SafeMath for uint256; uint256 public constant CAP = 100_000_000e18; uint256 public constant TGE_VESTING_AMT = 18_500_000e18; uint256 public constant ECOSYS_LIQ_VESTING_AMT = 25_000_000e18; uint256 public constant ECOSYS_LIQ_VESTING_PERIOD = 365 days * 3; uint256 public constant DEV_VESTING_AMT = 15_500_000e18; uint256 public constant DEV_VESTING_PERIOD = 365 days * 3; uint256 public constant PARTNERSHIP_VESTING_AMT = 16_000_000e18; uint256 public constant PARTNERSHIP_VESTING_PERIOD = 365 days * 3; uint256 public constant COMMUNITY_VESTING_AMT = 25_000_000e18; uint256 public constant COMMUNITY_VESTING_PERIOD = 365 days * 3; uint256 public startMiningTimestamp; uint public tgeMinted = 0; uint public ecoSysLiqMinted = 0; uint public devMinted = 0; uint public partnershipMinted = 0; uint public communityMinted = 0; constructor( uint256 _startMiningTimestamp ) { require( TGE_VESTING_AMT + ECOSYS_LIQ_VESTING_AMT + DEV_VESTING_AMT + PARTNERSHIP_VESTING_AMT + COMMUNITY_VESTING_AMT == CAP, "Total vesting amount is not equal to total supply" ); if(_startMiningTimestamp == 0){ _startMiningTimestamp = block.timestamp; } require(block.timestamp <= _startMiningTimestamp, "cannot set past block number"); startMiningTimestamp = _startMiningTimestamp; } function mint(address _to, uint256 _amount) internal onlyOwner { require(totalSupply().add(_amount) <= CAP, "cap exceeded"); _mint(_to, _amount); } function mintForTGE(address _to, uint256 _amount) public onlyOwner { require(tgeMinted.add(_amount) <= TGE_VESTING_AMT, "mint limit exceeded"); tgeMinted = tgeMinted.add(_amount); mint(_to, _amount); } function mintForEcosystemAndLiquidity(address _to, uint256 _amount) public onlyOwner { require(ecoSysLiqMinted.add(_amount) <= ECOSYS_LIQ_VESTING_AMT, "mint limit exceeded"); require(_amount <= pendingEcosystemLiquidityTokens(), "available limit exceeded"); ecoSysLiqMinted = ecoSysLiqMinted.add(_amount); mint(_to, _amount); } function mintForDevTeam(address _to, uint256 _amount) public onlyOwner { require(devMinted.add(_amount) <= DEV_VESTING_AMT, "mint limit exceeded"); require(_amount <= pendingDevTokens(), "available limit exceeded"); devMinted = devMinted.add(_amount); mint(_to, _amount); } function mintForPartnership(address _to, uint256 _amount) public onlyOwner { require(partnershipMinted.add(_amount) <= PARTNERSHIP_VESTING_AMT, "mint limit exceeded"); require(_amount <= pendingPartnershipTokens(), "available limit exceeded"); partnershipMinted = partnershipMinted.add(_amount); mint(_to, _amount); } function mintForCommunity(address _to, uint256 _amount) public onlyOwner { require(communityMinted.add(_amount) <= COMMUNITY_VESTING_AMT, "mint limit exceeded"); require(_amount <= pendingCommunityTokens(), "available limit exceeded"); communityMinted = communityMinted.add(_amount); mint(_to, _amount); } function burn(address _account, uint256 _amount) external onlyOwner { _burn(_account, _amount); } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { require(recipient != address(this), "ERC20: transfer to the token contract"); _transfer(_msgSender(), recipient, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { require(recipient != address(this), "ERC20: transfer to the token contract"); _transfer(sender, recipient, amount); _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function pendingEcosystemLiquidityTokens() public view returns (uint256) { return _pendingTokens(ECOSYS_LIQ_VESTING_AMT, ECOSYS_LIQ_VESTING_PERIOD, ecoSysLiqMinted); } function pendingDevTokens() public view returns (uint256) { return _pendingTokens(DEV_VESTING_AMT, DEV_VESTING_PERIOD, devMinted); } function pendingPartnershipTokens() public view returns (uint256) { return _pendingTokens(PARTNERSHIP_VESTING_AMT, PARTNERSHIP_VESTING_PERIOD, partnershipMinted); } function pendingCommunityTokens() public view returns (uint256) { return _pendingTokens(COMMUNITY_VESTING_AMT, COMMUNITY_VESTING_PERIOD, communityMinted); } function _pendingTokens(uint vestingAmt, uint vestingPeriod, uint mintedAmt) internal view returns (uint256) { if(block.timestamp < startMiningTimestamp){ return 0; } uint256 autoSinglePerSec = vestingAmt.div(vestingPeriod); uint256 timePast = uint256(block.timestamp).sub(startMiningTimestamp); if(timePast >= vestingPeriod) { return vestingAmt.sub(mintedAmt); } return timePast.mul(autoSinglePerSec).sub(mintedAmt); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_startMiningTimestamp","type":"uint256"}],"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":[],"name":"CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COMMUNITY_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COMMUNITY_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ECOSYS_LIQ_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ECOSYS_LIQ_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PARTNERSHIP_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PARTNERSHIP_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TGE_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ecoSysLiqMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForDevTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForEcosystemAndLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForPartnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForTGE","outputs":[],"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":"partnershipMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingCommunityTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingDevTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingEcosystemLiquidityTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingPartnershipTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMiningTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tgeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
60806040526000600755600060085560006009556000600a556000600b553480156200002a57600080fd5b506040516200190d3803806200190d8339810160408190526200004d916200030d565b604080518082018252601081526f20baba37a9b4b733b632902a37b5b2b760811b6020808301918252835180850190945260058452644175746f5360d81b908401528151919291620000a29160039162000267565b508051620000b890600490602084019062000267565b505050620000d5620000cf6200021160201b60201c565b62000215565b6a52b7d2dcc80cd2e40000006a14adf4b7320334b90000006a0d3c21bcecceda100000006a0cd240af0568633f8000006200011c836a0f4d870271cf2c2280000062000326565b62000128919062000326565b62000134919062000326565b62000140919062000326565b14620001ad5760405162461bcd60e51b815260206004820152603160248201527f546f74616c2076657374696e6720616d6f756e74206973206e6f7420657175616044820152706c20746f20746f74616c20737570706c7960781b60648201526084015b60405180910390fd5b80620001b65750425b80421115620002085760405162461bcd60e51b815260206004820152601c60248201527f63616e6e6f7420736574207061737420626c6f636b206e756d626572000000006044820152606401620001a4565b60065562000388565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000275906200034b565b90600052602060002090601f016020900481019282620002995760008555620002e4565b82601f10620002b457805160ff1916838001178555620002e4565b82800160010185558215620002e4579182015b82811115620002e4578251825591602001919060010190620002c7565b50620002f2929150620002f6565b5090565b5b80821115620002f25760008155600101620002f7565b6000602082840312156200031f578081fd5b5051919050565b600082198211156200034657634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200036057607f821691505b602082108114156200038257634e487b7160e01b600052602260045260246000fd5b50919050565b61157580620003986000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80638da5cb5b1161013b578063bb58bd26116100b8578063d9c5b0d31161007c578063d9c5b0d314610454578063dd62ed3e1461045d578063ec81b48314610496578063f0317ddd146104a8578063f2fde38b146104bb57600080fd5b8063bb58bd26146102dd578063c198587714610427578063c2f5b5d014610430578063cee2784a14610439578063d61e10921461044157600080fd5b8063a457c2d7116100ff578063a457c2d7146103f0578063a9059cbb14610403578063adf2131b14610416578063b6e7e624146102dd578063ba00e0571461041f57600080fd5b80638da5cb5b146103a757806395d89b41146103c25780639661460c146103ca57806397ed356a146102ae5780639dc29fac146103dd57600080fd5b8063313ce567116101c957806370a082311161018d57806370a082311461035c578063715018a614610385578063731e1b0b1461038d57806377641b6a146103965780637d6258d01461039f57600080fd5b8063313ce5671461030d578063395093511461031c5780634e114e191461032f5780634e9e425d14610342578063608b4f541461035457600080fd5b806318160ddd1161021057806318160ddd146102d557806323563e98146102dd57806323b872dd146102e85780632ad93bc6146102dd5780632afb46bb146102fb57600080fd5b806306fdde031461024d578063095ea7b31461026b5780630e7fd8d21461028e578063146d4e2e146102ae5780631805864c146102c0575b600080fd5b6102556104ce565b6040516102629190611327565b60405180910390f35b61027e6102793660046112fe565b610560565b6040519015158152602001610262565b6102a06a0d3c21bcecceda1000000081565b604051908152602001610262565b6102a06a14adf4b7320334b900000081565b6102d36102ce3660046112fe565b610576565b005b6002546102a0565b6102a06305a39a8081565b61027e6102f63660046112c3565b610626565b6102a06a0cd240af0568633f80000081565b60405160128152602001610262565b61027e61032a3660046112fe565b61069f565b6102d361033d3660046112fe565b6106d6565b6102a06a0f4d870271cf2c2280000081565b6102a0610779565b6102a061036a366004611277565b6001600160a01b031660009081526020819052604090205490565b6102d361079c565b6102a0600a5481565b6102a060065481565b6102a06107d2565b6005546040516001600160a01b039091168152602001610262565b6102556107f0565b6102d36103d83660046112fe565b6107ff565b6102d36103eb3660046112fe565b6108a2565b61027e6103fe3660046112fe565b6108d6565b61027e6104113660046112fe565b610965565b6102a060095481565b6102a061099b565b6102a060085481565b6102a060075481565b6102a06109b9565b6102d361044f3660046112fe565b6109d7565b6102a0600b5481565b6102a061046b366004611291565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102a06a52b7d2dcc80cd2e400000081565b6102d36104b63660046112fe565b610a53565b6102d36104c9366004611277565b610af6565b6060600380546104dd906114c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610509906114c6565b80156105565780601f1061052b57610100808354040283529160200191610556565b820191906000526020600020905b81548152906001019060200180831161053957829003601f168201915b5050505050905090565b600061056d338484610b91565b50600192915050565b6005546001600160a01b031633146105a95760405162461bcd60e51b81526004016105a0906113bf565b60405180910390fd5b6009546a0cd240af0568633f800000906105c39083610cb6565b11156105e15760405162461bcd60e51b81526004016105a09061142b565b6105e96109b9565b8111156106085760405162461bcd60e51b81526004016105a0906113f4565b6009546106159082610cb6565b6009556106228282610cc2565b5050565b60006001600160a01b0383163014156106515760405162461bcd60e51b81526004016105a09061137a565b61065c848484610d52565b610694843361068f85604051806060016040528060288152602001611518602891396106888a3361046b565b9190610f21565b610b91565b5060015b9392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161056d91859061068f908690611458565b6005546001600160a01b031633146107005760405162461bcd60e51b81526004016105a0906113bf565b600b546a14adf4b7320334b90000009061071a9083610cb6565b11156107385760405162461bcd60e51b81526004016105a09061142b565b61074061099b565b81111561075f5760405162461bcd60e51b81526004016105a0906113f4565b600b5461076c9082610cb6565b600b556106228282610cc2565b60006107976a14adf4b7320334b90000006305a39a80600854610f4d565b905090565b6005546001600160a01b031633146107c65760405162461bcd60e51b81526004016105a0906113bf565b6107d06000610fc0565b565b60006107976a0d3c21bcecceda100000006305a39a80600a54610f4d565b6060600480546104dd906114c6565b6005546001600160a01b031633146108295760405162461bcd60e51b81526004016105a0906113bf565b6008546a14adf4b7320334b9000000906108439083610cb6565b11156108615760405162461bcd60e51b81526004016105a09061142b565b610869610779565b8111156108885760405162461bcd60e51b81526004016105a0906113f4565b6008546108959082610cb6565b6008556106228282610cc2565b6005546001600160a01b031633146108cc5760405162461bcd60e51b81526004016105a0906113bf565b6106228282611012565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109585760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105a0565b6106943385858403610b91565b60006001600160a01b0383163014156109905760405162461bcd60e51b81526004016105a09061137a565b61056d338484610d52565b60006107976a14adf4b7320334b90000006305a39a80600b54610f4d565b60006107976a0cd240af0568633f8000006305a39a80600954610f4d565b6005546001600160a01b03163314610a015760405162461bcd60e51b81526004016105a0906113bf565b6007546a0f4d870271cf2c2280000090610a1b9083610cb6565b1115610a395760405162461bcd60e51b81526004016105a09061142b565b600754610a469082610cb6565b6007556106228282610cc2565b6005546001600160a01b03163314610a7d5760405162461bcd60e51b81526004016105a0906113bf565b600a546a0d3c21bcecceda1000000090610a979083610cb6565b1115610ab55760405162461bcd60e51b81526004016105a09061142b565b610abd6107d2565b811115610adc5760405162461bcd60e51b81526004016105a0906113f4565b600a54610ae99082610cb6565b600a556106228282610cc2565b6005546001600160a01b03163314610b205760405162461bcd60e51b81526004016105a0906113bf565b6001600160a01b038116610b855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a0565b610b8e81610fc0565b50565b6001600160a01b038316610bf35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105a0565b6001600160a01b038216610c545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105a0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106988284611458565b6005546001600160a01b03163314610cec5760405162461bcd60e51b81526004016105a0906113bf565b6a52b7d2dcc80cd2e4000000610d0b82610d0560025490565b90610cb6565b1115610d485760405162461bcd60e51b815260206004820152600c60248201526b18d85c08195e18d95959195960a21b60448201526064016105a0565b6106228282611158565b6001600160a01b038316610db65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105a0565b6001600160a01b038216610e185760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105a0565b6001600160a01b03831660009081526020819052604090205481811015610e905760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105a0565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ec7908490611458565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f1391815260200190565b60405180910390a350505050565b60008184841115610f455760405162461bcd60e51b81526004016105a09190611327565b505050900390565b6000600654421015610f6157506000610698565b6000610f6d8585611237565b90506000610f866006544261124390919063ffffffff16565b9050848110610fa257610f998685611243565b92505050610698565b610fb684610fb0838561124f565b90611243565b9695505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166110725760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105a0565b6001600160a01b038216600090815260208190526040902054818110156110e65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105a0565b6001600160a01b03831660009081526020819052604081208383039055600280548492906111159084906114af565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610ca9565b6001600160a01b0382166111ae5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105a0565b80600260008282546111c09190611458565b90915550506001600160a01b038216600090815260208190526040812080548392906111ed908490611458565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006106988284611470565b600061069882846114af565b60006106988284611490565b80356001600160a01b038116811461127257600080fd5b919050565b600060208284031215611288578081fd5b6106988261125b565b600080604083850312156112a3578081fd5b6112ac8361125b565b91506112ba6020840161125b565b90509250929050565b6000806000606084860312156112d7578081fd5b6112e08461125b565b92506112ee6020850161125b565b9150604084013590509250925092565b60008060408385031215611310578182fd5b6113198361125b565b946020939093013593505050565b6000602080835283518082850152825b8181101561135357858101830151858201604001528201611337565b818111156113645783604083870101525b50601f01601f1916929092016040019392505050565b60208082526025908201527f45524332303a207472616e7366657220746f2074686520746f6b656e20636f6e6040820152641d1c9858dd60da1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526018908201527f617661696c61626c65206c696d69742065786365656465640000000000000000604082015260600190565b6020808252601390820152721b5a5b9d081b1a5b5a5d08195e18d959591959606a1b604082015260600190565b6000821982111561146b5761146b611501565b500190565b60008261148b57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156114aa576114aa611501565b500290565b6000828210156114c1576114c1611501565b500390565b600181811c908216806114da57607f821691505b602082108114156114fb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122005ca1d25565f67609eed038a725a7a6e8922f306eb68c5145f3496ff5fbc9c1264736f6c634300080400330000000000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _startMiningTimestamp (uint256): 0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
26193:5279:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15712:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17879:169;;;;;;:::i;:::-;;:::i;:::-;;;1653:14:1;;1646:22;1628:41;;1616:2;1601:18;17879:169:0;1583:92:1;26743:67:0;;26797:13;26743:67;;;;;8246:25:1;;;8234:2;8219:18;26743:67:0;8201:76:1;26889:67:0;;26943:13;26889:67;;28571:296;;;;;;:::i;:::-;;:::i;:::-;;16832:108;16920:12;;16832:108;;26961:67;;27016:12;26961:67;;29918:388;;;;;;:::i;:::-;;:::i;26597:67::-;;26651:13;26597:67;;16674:93;;;16757:2;8424:36:1;;8412:2;8397:18;16674:93:0;8379:87:1;19431:215:0;;;;;;:::i;:::-;;:::i;29219:328::-;;;;;;:::i;:::-;;:::i;26377:67::-;;26431:13;26377:67;;30312:175;;;:::i;17003:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17104:18:0;17077:7;17104:18;;;;;;;;;;;;17003:127;2531:94;;;:::i;27190:33::-;;;;;;27035:35;;;;;;30639:172;;;:::i;1880:87::-;1953:6;;1880:87;;-1:-1:-1;;;;;1953:6:0;;;1426:51:1;;1414:2;1399:18;1880:87:0;1381:102:1;15931:104:0;;;:::i;28215:350::-;;;;;;:::i;:::-;;:::i;29553:105::-;;;;;;:::i;:::-;;:::i;20149:413::-;;;;;;:::i;:::-;;:::i;29664:248::-;;;;;;:::i;:::-;;:::i;27152:33::-;;;;;;30817:164;;;:::i;27114:33::-;;;;;;27077:32;;;;;;30493:140;;;:::i;27990:219::-;;;;;;:::i;:::-;;:::i;27228:33::-;;;;;;17581:151;;;;;;:::i;:::-;-1:-1:-1;;;;;17697:18:0;;;17670:7;17697:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17581:151;26303:67;;26356:14;26303:67;;28873:340;;;;;;:::i;:::-;;:::i;2780:192::-;;;;;;:::i;:::-;;:::i;15712:100::-;15766:13;15799:5;15792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15712:100;:::o;17879:169::-;17962:4;17979:39;742:10;18002:7;18011:6;17979:8;:39::i;:::-;-1:-1:-1;18036:4:0;17879:169;;;;:::o;28571:296::-;1953:6;;-1:-1:-1;;;;;1953:6:0;742:10;2100:23;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;;;;;;;;;28657:9:::1;::::0;26651:13:::1;::::0;28657:22:::1;::::0;28671:7;28657:13:::1;:22::i;:::-;:41;;28649:73;;;;-1:-1:-1::0;;;28649:73:0::1;;;;;;;:::i;:::-;28748:18;:16;:18::i;:::-;28737:7;:29;;28729:66;;;;-1:-1:-1::0;;;28729:66:0::1;;;;;;;:::i;:::-;28814:9;::::0;:22:::1;::::0;28828:7;28814:13:::1;:22::i;:::-;28802:9;:34:::0;28843:18:::1;28848:3:::0;28853:7;28843:4:::1;:18::i;:::-;28571:296:::0;;:::o;29918:388::-;30024:4;-1:-1:-1;;;;;30045:26:0;;30066:4;30045:26;;30037:76;;;;-1:-1:-1;;;30037:76:0;;;;;;;:::i;:::-;30120:36;30130:6;30138:9;30149:6;30120:9;:36::i;:::-;30163:119;30172:6;742:10;30194:87;30230:6;30194:87;;;;;;;;;;;;;;;;;:31;30204:6;742:10;17581:151;:::i;30194:31::-;:35;:87;:35;:87::i;:::-;30163:8;:119::i;:::-;-1:-1:-1;30296:4:0;29918:388;;;;;;:::o;19431:215::-;742:10;19519:4;19568:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19568:34:0;;;;;;;;;;19519:4;;19536:80;;19559:7;;19568:47;;19605:10;;19568:47;:::i;29219:328::-;1953:6;;-1:-1:-1;;;;;1953:6:0;742:10;2100:23;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;29307:15:::1;::::0;26943:13:::1;::::0;29307:28:::1;::::0;29327:7;29307:19:::1;:28::i;:::-;:53;;29299:85;;;;-1:-1:-1::0;;;29299:85:0::1;;;;;;;:::i;:::-;29410:24;:22;:24::i;:::-;29399:7;:35;;29391:72;;;;-1:-1:-1::0;;;29391:72:0::1;;;;;;;:::i;:::-;29488:15;::::0;:28:::1;::::0;29508:7;29488:19:::1;:28::i;:::-;29470:15;:46:::0;29523:18:::1;29528:3:::0;29533:7;29523:4:::1;:18::i;30312:175::-:0;30376:7;30399:82;26505:13;26578:12;30465:15;;30399:14;:82::i;:::-;30392:89;;30312:175;:::o;2531:94::-;1953:6;;-1:-1:-1;;;;;1953:6:0;742:10;2100:23;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;2596:21:::1;2614:1;2596:9;:21::i;:::-;2531:94::o:0;30639:172::-;30696:7;30719:86;26797:13;26870:12;30787:17;;30719:14;:86::i;15931:104::-;15987:13;16020:7;16013:14;;;;;:::i;28215:350::-;1953:6;;-1:-1:-1;;;;;1953:6:0;742:10;2100:23;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;28315:15:::1;::::0;26505:13:::1;::::0;28315:28:::1;::::0;28335:7;28315:19:::1;:28::i;:::-;:54;;28307:86;;;;-1:-1:-1::0;;;28307:86:0::1;;;;;;;:::i;:::-;28419:33;:31;:33::i;:::-;28408:7;:44;;28400:81;;;;-1:-1:-1::0;;;28400:81:0::1;;;;;;;:::i;:::-;28506:15;::::0;:28:::1;::::0;28526:7;28506:19:::1;:28::i;:::-;28488:15;:46:::0;28541:18:::1;28546:3:::0;28551:7;28541:4:::1;:18::i;29553:105::-:0;1953:6;;-1:-1:-1;;;;;1953:6:0;742:10;2100:23;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;29628:24:::1;29634:8;29644:7;29628:5;:24::i;20149:413::-:0;742:10;20242:4;20286:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20286:34:0;;;;;;;;;;20339:35;;;;20331:85;;;;-1:-1:-1;;;20331:85:0;;7536:2:1;20331:85:0;;;7518:21:1;7575:2;7555:18;;;7548:30;7614:34;7594:18;;;7587:62;-1:-1:-1;;;7665:18:1;;;7658:35;7710:19;;20331:85:0;7508:227:1;20331:85:0;20452:67;742:10;20475:7;20503:15;20484:16;:34;20452:8;:67::i;29664:248::-;29750:4;-1:-1:-1;;;;;29771:26:0;;29792:4;29771:26;;29763:76;;;;-1:-1:-1;;;29763:76:0;;;;;;;:::i;:::-;29846:42;742:10;29870:9;29881:6;29846:9;:42::i;30817:164::-;30872:7;30895:80;26943:13;27016:12;30959:15;;30895:14;:80::i;30493:140::-;30542:7;30565:62;26651:13;26724:12;30617:9;;30565:14;:62::i;27990:219::-;1953:6;;-1:-1:-1;;;;;1953:6:0;742:10;2100:23;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;28072:9:::1;::::0;26431:13:::1;::::0;28072:22:::1;::::0;28086:7;28072:13:::1;:22::i;:::-;:41;;28064:73;;;;-1:-1:-1::0;;;28064:73:0::1;;;;;;;:::i;:::-;28156:9;::::0;:22:::1;::::0;28170:7;28156:13:::1;:22::i;:::-;28144:9;:34:::0;28185:18:::1;28190:3:::0;28195:7;28185:4:::1;:18::i;28873:340::-:0;1953:6;;-1:-1:-1;;;;;1953:6:0;742:10;2100:23;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;28963:17:::1;::::0;26797:13:::1;::::0;28963:30:::1;::::0;28985:7;28963:21:::1;:30::i;:::-;:57;;28955:89;;;;-1:-1:-1::0;;;28955:89:0::1;;;;;;;:::i;:::-;29070:26;:24;:26::i;:::-;29059:7;:37;;29051:74;;;;-1:-1:-1::0;;;29051:74:0::1;;;;;;;:::i;:::-;29152:17;::::0;:30:::1;::::0;29174:7;29152:21:::1;:30::i;:::-;29132:17;:50:::0;29189:18:::1;29194:3:::0;29199:7;29189:4:::1;:18::i;2780:192::-:0;1953:6;;-1:-1:-1;;;;;1953:6:0;742:10;2100:23;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2869:22:0;::::1;2861:73;;;::::0;-1:-1:-1;;;2861:73:0;;3703:2:1;2861:73:0::1;::::0;::::1;3685:21:1::0;3742:2;3722:18;;;3715:30;3781:34;3761:18;;;3754:62;-1:-1:-1;;;3832:18:1;;;3825:36;3878:19;;2861:73:0::1;3675:228:1::0;2861:73:0::1;2945:19;2955:8;2945:9;:19::i;:::-;2780:192:::0;:::o;23833:380::-;-1:-1:-1;;;;;23969:19:0;;23961:68;;;;-1:-1:-1;;;23961:68:0;;6783:2:1;23961:68:0;;;6765:21:1;6822:2;6802:18;;;6795:30;6861:34;6841:18;;;6834:62;-1:-1:-1;;;6912:18:1;;;6905:34;6956:19;;23961:68:0;6755:226:1;23961:68:0;-1:-1:-1;;;;;24048:21:0;;24040:68;;;;-1:-1:-1;;;24040:68:0;;4110:2:1;24040:68:0;;;4092:21:1;4149:2;4129:18;;;4122:30;4188:34;4168:18;;;4161:62;-1:-1:-1;;;4239:18:1;;;4232:32;4281:19;;24040:68:0;4082:224:1;24040:68:0;-1:-1:-1;;;;;24121:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24173:32;;8246:25:1;;;24173:32:0;;8219:18:1;24173:32:0;;;;;;;;23833:380;;;:::o;5960:98::-;6018:7;6045:5;6049:1;6045;:5;:::i;27824:160::-;1953:6;;-1:-1:-1;;;;;1953:6:0;742:10;2100:23;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;26356:14:::1;27902:26;27920:7;27902:13;16920:12:::0;;;16832:108;27902:13:::1;:17:::0;::::1;:26::i;:::-;:33;;27894:58;;;::::0;-1:-1:-1;;;27894:58:0;;4513:2:1;27894:58:0::1;::::0;::::1;4495:21:1::0;4552:2;4532:18;;;4525:30;-1:-1:-1;;;4571:18:1;;;4564:42;4623:18;;27894:58:0::1;4485:162:1::0;27894:58:0::1;27959:19;27965:3;27970:7;27959:5;:19::i;21052:733::-:0;-1:-1:-1;;;;;21192:20:0;;21184:70;;;;-1:-1:-1;;;21184:70:0;;6377:2:1;21184:70:0;;;6359:21:1;6416:2;6396:18;;;6389:30;6455:34;6435:18;;;6428:62;-1:-1:-1;;;6506:18:1;;;6499:35;6551:19;;21184:70:0;6349:227:1;21184:70:0;-1:-1:-1;;;;;21273:23:0;;21265:71;;;;-1:-1:-1;;;21265:71:0;;2490:2:1;21265:71:0;;;2472:21:1;2529:2;2509:18;;;2502:30;2568:34;2548:18;;;2541:62;-1:-1:-1;;;2619:18:1;;;2612:33;2662:19;;21265:71:0;2462:225:1;21265:71:0;-1:-1:-1;;;;;21433:17:0;;21409:21;21433:17;;;;;;;;;;;21469:23;;;;21461:74;;;;-1:-1:-1;;;21461:74:0;;4854:2:1;21461:74:0;;;4836:21:1;4893:2;4873:18;;;4866:30;4932:34;4912:18;;;4905:62;-1:-1:-1;;;4983:18:1;;;4976:36;5029:19;;21461:74:0;4826:228:1;21461:74:0;-1:-1:-1;;;;;21571:17:0;;;:9;:17;;;;;;;;;;;21591:22;;;21571:42;;21635:20;;;;;;;;:30;;21607:6;;21571:9;21635:30;;21607:6;;21635:30;:::i;:::-;;;;;;;;21700:9;-1:-1:-1;;;;;21683:35:0;21692:6;-1:-1:-1;;;;;21683:35:0;;21711:6;21683:35;;;;8246:25:1;;8234:2;8219:18;;8201:76;21683:35:0;;;;;;;;21052:733;;;;:::o;8239:240::-;8359:7;8420:12;8412:6;;;;8404:29;;;;-1:-1:-1;;;8404:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;8455:5:0;;;8239:240::o;30987:480::-;31087:7;31127:20;;31109:15;:38;31106:67;;;-1:-1:-1;31164:1:0;31157:8;;31106:67;31181:24;31208:29;:10;31223:13;31208:14;:29::i;:::-;31181:56;;31244:16;31263:50;31292:20;;31271:15;31263:28;;:50;;;;:::i;:::-;31244:69;;31337:13;31325:8;:25;31322:79;;31368:25;:10;31383:9;31368:14;:25::i;:::-;31361:32;;;;;;31322:79;31416:45;31451:9;31416:30;:8;31429:16;31416:12;:30::i;:::-;:34;;:45::i;:::-;31409:52;30987:480;-1:-1:-1;;;;;;30987:480:0:o;2980:173::-;3055:6;;;-1:-1:-1;;;;;3072:17:0;;;-1:-1:-1;;;;;;3072:17:0;;;;;;;3105:40;;3055:6;;;3072:17;3055:6;;3105:40;;3036:16;;3105:40;2980:173;;:::o;22804:591::-;-1:-1:-1;;;;;22888:21:0;;22880:67;;;;-1:-1:-1;;;22880:67:0;;5975:2:1;22880:67:0;;;5957:21:1;6014:2;5994:18;;;5987:30;6053:34;6033:18;;;6026:62;-1:-1:-1;;;6104:18:1;;;6097:31;6145:19;;22880:67:0;5947:223:1;22880:67:0;-1:-1:-1;;;;;23047:18:0;;23022:22;23047:18;;;;;;;;;;;23084:24;;;;23076:71;;;;-1:-1:-1;;;23076:71:0;;2894:2:1;23076:71:0;;;2876:21:1;2933:2;2913:18;;;2906:30;2972:34;2952:18;;;2945:62;-1:-1:-1;;;3023:18:1;;;3016:32;3065:19;;23076:71:0;2866:224:1;23076:71:0;-1:-1:-1;;;;;23183:18:0;;:9;:18;;;;;;;;;;23204:23;;;23183:44;;23249:12;:22;;23221:6;;23183:9;23249:22;;23221:6;;23249:22;:::i;:::-;;;;-1:-1:-1;;23289:37:0;;8246:25:1;;;23315:1:0;;-1:-1:-1;;;;;23289:37:0;;;;;8234:2:1;8219:18;23289:37:0;8201:76:1;22072:399:0;-1:-1:-1;;;;;22156:21:0;;22148:65;;;;-1:-1:-1;;;22148:65:0;;7942:2:1;22148:65:0;;;7924:21:1;7981:2;7961:18;;;7954:30;8020:33;8000:18;;;7993:61;8071:18;;22148:65:0;7914:181:1;22148:65:0;22304:6;22288:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;22321:18:0;;:9;:18;;;;;;;;;;:28;;22343:6;;22321:9;:28;;22343:6;;22321:28;:::i;:::-;;;;-1:-1:-1;;22365:37:0;;8246:25:1;;;-1:-1:-1;;;;;22365:37:0;;;22382:1;;22365:37;;8234:2:1;8219:18;22365:37:0;;;;;;;28571:296;;:::o;7097:98::-;7155:7;7182:5;7186:1;7182;:5;:::i;6341:98::-;6399:7;6426:5;6430:1;6426;:5;:::i;6698:98::-;6756:7;6783:5;6787:1;6783;:5;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1680:603::-;1792:4;1821:2;1850;1839:9;1832:21;1882:6;1876:13;1925:6;1920:2;1909:9;1905:18;1898:34;1950:4;1963:140;1977:6;1974:1;1971:13;1963:140;;;2072:14;;;2068:23;;2062:30;2038:17;;;2057:2;2034:26;2027:66;1992:10;;1963:140;;;2121:6;2118:1;2115:13;2112:2;;;2191:4;2186:2;2177:6;2166:9;2162:22;2158:31;2151:45;2112:2;-1:-1:-1;2267:2:1;2246:15;-1:-1:-1;;2242:29:1;2227:45;;;;2274:2;2223:54;;1801:482;-1:-1:-1;;;1801:482:1:o;3095:401::-;3297:2;3279:21;;;3336:2;3316:18;;;3309:30;3375:34;3370:2;3355:18;;3348:62;-1:-1:-1;;;3441:2:1;3426:18;;3419:35;3486:3;3471:19;;3269:227::o;5059:356::-;5261:2;5243:21;;;5280:18;;;5273:30;5339:34;5334:2;5319:18;;5312:62;5406:2;5391:18;;5233:182::o;5420:348::-;5622:2;5604:21;;;5661:2;5641:18;;;5634:30;5700:26;5695:2;5680:18;;5673:54;5759:2;5744:18;;5594:174::o;6986:343::-;7188:2;7170:21;;;7227:2;7207:18;;;7200:30;-1:-1:-1;;;7261:2:1;7246:18;;7239:49;7320:2;7305:18;;7160:169::o;8471:128::-;8511:3;8542:1;8538:6;8535:1;8532:13;8529:2;;;8548:18;;:::i;:::-;-1:-1:-1;8584:9:1;;8519:80::o;8604:217::-;8644:1;8670;8660:2;;-1:-1:-1;;;8695:31:1;;8749:4;8746:1;8739:15;8777:4;8702:1;8767:15;8660:2;-1:-1:-1;8806:9:1;;8650:171::o;8826:168::-;8866:7;8932:1;8928;8924:6;8920:14;8917:1;8914:21;8909:1;8902:9;8895:17;8891:45;8888:2;;;8939:18;;:::i;:::-;-1:-1:-1;8979:9:1;;8878:116::o;8999:125::-;9039:4;9067:1;9064;9061:8;9058:2;;;9072:18;;:::i;:::-;-1:-1:-1;9109:9:1;;9048:76::o;9129:380::-;9208:1;9204:12;;;;9251;;;9272:2;;9326:4;9318:6;9314:17;9304:27;;9272:2;9379;9371:6;9368:14;9348:18;9345:38;9342:2;;;9425:10;9420:3;9416:20;9413:1;9406:31;9460:4;9457:1;9450:15;9488:4;9485:1;9478:15;9342:2;;9184:325;;;:::o;9514:127::-;9575:10;9570:3;9566:20;9563:1;9556:31;9606:4;9603:1;9596:15;9630:4;9627:1;9620:15
Swarm Source
ipfs://05ca1d25565f67609eed038a725a7a6e8922f306eb68c5145f3496ff5fbc9c12
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.