[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xe7f98e0a00a8b7c353d1d7fd6da478a1b761f4389cd8a88eaae4e8b23ec4df51 | 1296808 | 794 days 18 hrs ago | 0x42d65e2bb06f179be33255d4bf968c475c8ea8ef | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
SFTM
Compiler Version
v0.5.11+commit.22be8592
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2021-02-24 */ pragma solidity ^0.5.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } /** * @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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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 Optional functions from the ERC20 standard. */ contract ERC20Detailed is Initializable, IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ function initialize(string memory name, string memory symbol, uint8 decimals) internal initializer { _name = name; _symbol = symbol; _decimals = decimals; } /** * @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. * * 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; } uint256[50] private ______gap; } /** * @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 {ERC20Mintable}. * * 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 Initializable, IERC20 { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(msg.sender, 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 returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].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 returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][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 returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _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 { require(account != address(0), "ERC20: mint to the zero address"); _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 { require(account != address(0), "ERC20: burn from the zero address"); _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 { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount, "ERC20: burn amount exceeds allowance")); } uint256[50] private ______gap; } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping(address => bool) bearer; } /** * @dev give an account access to this role */ function add(Role storage role, address account) internal { require(account != address(0)); role.bearer[account] = true; } /** * @dev remove an account's access to this role */ function remove(Role storage role, address account) internal { require(account != address(0)); role.bearer[account] = false; } /** * @dev check if an account has this role * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0)); return role.bearer[account]; } } contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private minters; modifier onlyMinter() { require(isMinter(msg.sender)); _; } function isMinter(address account) public view returns (bool) { return minters.has(account); } function renounceMinter() public { minters.remove(msg.sender); } function _removeMinter(address account) internal { minters.remove(account); emit MinterRemoved(account); } function _addMinter(address account) internal { minters.add(account); emit MinterAdded(account); } uint256[50] private ______gap; } /** * @title ERC20Mintable * @dev ERC20 minting logic */ contract ERC20Mintable is ERC20, MinterRole { event MintingFinished(); bool private _mintingFinished = false; modifier onlyBeforeMintingFinished() { require(!_mintingFinished); _; } /** * @return true if the minting is finished. */ function mintingFinished() public view returns (bool) { return _mintingFinished; } /** * @dev Function to mint tokens * @param to The address that will receive the minted tokens. * @param amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint( address to, uint256 amount ) public onlyMinter onlyBeforeMintingFinished returns (bool) { _mint(to, amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() public onlyMinter onlyBeforeMintingFinished returns (bool) { _mintingFinished = true; emit MintingFinished(); return true; } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract ERC20Burnable is ERC20 { /** * @dev Burns a specific amount of tokens. * @param value The amount of token to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param from address The address which you want to send tokens from * @param value uint256 The amount of token to be burned */ function burnFrom(address from, uint256 value) public { _burnFrom(from, value); } /** * @dev Overrides ERC20._burn in order for burn and burnFrom to emit * an additional Burn event. */ function _burn(address who, uint256 value) internal { super._burn(who, value); } } /** * @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. * * 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 { 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 = msg.sender; _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(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _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 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract WhitelistedRecipientRole { using Roles for Roles.Role; event WhitelistedRecipientAdded(address indexed account); event WhitelistedRecipientRemoved(address indexed account); Roles.Role private whitelistedRecipients; modifier onlyWhitelistedRecipient() { require(isWhitelistedRecipient(msg.sender)); _; } function isWhitelistedRecipient(address account) public view returns (bool) { return whitelistedRecipients.has(account); } function renounceWhitelistedRecipient() public { whitelistedRecipients.remove(msg.sender); } function _removeWhitelistedRecipient(address account) internal { whitelistedRecipients.remove(account); emit WhitelistedRecipientRemoved(account); } function _addWhitelistedRecipient(address account) internal { whitelistedRecipients.add(account); emit WhitelistedRecipientAdded(account); } uint256[50] private ______gap; } contract WhitelistedSenderRole { using Roles for Roles.Role; event WhitelistedSenderAdded(address indexed account); event WhitelistedSenderRemoved(address indexed account); Roles.Role private whitelistedSenders; modifier onlyWhitelistedSender() { require(isWhitelistedSender(msg.sender)); _; } function isWhitelistedSender(address account) public view returns (bool) { return whitelistedSenders.has(account); } function renounceWhitelistedSender() public { whitelistedSenders.remove(msg.sender); } function _removeWhitelistedSender(address account) internal { whitelistedSenders.remove(account); emit WhitelistedSenderRemoved(account); } function _addWhitelistedSender(address account) internal { whitelistedSenders.add(account); emit WhitelistedSenderAdded(account); } uint256[50] private ______gap; } /** * @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). */ contract SFTM is ERC20, ERC20Detailed, ERC20Mintable, ERC20Burnable, Ownable, WhitelistedRecipientRole, WhitelistedSenderRole { /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * initialization. */ function initialize(address owner) public initializer { // initialize the token ERC20Detailed.initialize("Staked FTM", "SFTM", 18); // initialize the Ownable _transferOwnership(owner); } function addMinter(address account) external onlyOwner { _addMinter(account); } function removeMinter(address account) external onlyOwner { _removeMinter(account); } function addWhitelistedSender(address account) external onlyOwner { _addWhitelistedSender(account); } function removeWhitelistedSender(address account) external onlyOwner { _removeWhitelistedSender(account); } function addWhitelistedRecipient(address account) external onlyOwner { _addWhitelistedRecipient(account); } function removeWhitelistedRecipient(address account) external onlyOwner { _removeWhitelistedRecipient(account); } function isWhitelisted(address sender, address recipient) public view returns (bool) { return isWhitelistedSender(sender) || isWhitelistedRecipient(recipient); } function transfer(address to, uint256 value) public returns (bool) { require(isWhitelisted(msg.sender, to), "SFTM: not whitelisted"); return ERC20.transfer(to, value); } function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { require(isWhitelisted(msg.sender, recipient), "SFTM: not whitelisted"); return ERC20.transferFrom(sender, recipient, amount); } function approve(address spender, uint256 value) public returns (bool) { require(isWhitelisted(msg.sender, spender), "SFTM: not whitelisted"); return ERC20.approve(spender, value); } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { require(isWhitelisted(msg.sender, spender), "SFTM: not whitelisted"); return ERC20.increaseAllowance(spender, addedValue); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistedRecipient","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistedSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistedSender","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeWhitelistedRecipient","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistedRecipient","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistedSender","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeWhitelistedSender","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistedRecipient","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistedSenderAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistedSenderRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistedRecipientAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistedRecipientRemoved","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":[],"name":"MintingFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"}]
Contract Creation Code
6080604081905260d080546001600160a81b03191661010033908102919091179091559081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350611df48061005d6000396000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c8063715018a61161012a57806398650275116100bd578063aa271e1a1161008c578063c4d66de811610071578063c4d66de81461065f578063dd62ed3e14610685578063f2fde38b146106b357610226565b8063aa271e1a1461060b578063b6b352721461063157610226565b80639865027514610585578063a457c2d71461058d578063a515e598146105b9578063a9059cbb146105df57610226565b80638da5cb5b116100f95780638da5cb5b1461052b5780638f32d59b1461054f57806395d89b4114610557578063983b2d561461055f57610226565b8063715018a6146104c957806371b76617146104d157806379cc6790146104f75780637d64bcb41461052357610226565b80633092afd5116101bd57806340c10f191161018c57806348384640116101715780634838464014610457578063664e43401461047d57806370a08231146104a357610226565b806340c10f191461040e57806342966c681461043a57610226565b80633092afd514610378578063313ce5671461039e5780633184cad4146103bc57806339509351146103e257610226565b806318160ddd116101f957806318160ddd146102fa5780631b9e2fad1461031457806323b872dd1461033a5780632624fb051461037057610226565b806305d2035b1461022b57806306e4d8121461024757806306fdde0314610251578063095ea7b3146102ce575b600080fd5b6102336106d9565b604080519115158252519081900360200190f35b61024f6106e3565b005b6102596106f6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029357818101518382015260200161027b565b50505050905090810190601f1680156102c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610233600480360360408110156102e457600080fd5b506001600160a01b0381351690602001356107aa565b610302610818565b60408051918252519081900360200190f35b6102336004803603602081101561032a57600080fd5b50356001600160a01b031661081e565b6102336004803603606081101561035057600080fd5b506001600160a01b03813581169160208101359091169060400135610838565b61024f6108a8565b61024f6004803603602081101561038e57600080fd5b50356001600160a01b03166108ba565b6103a661091f565b6040805160ff9092168252519081900360200190f35b61024f600480360360208110156103d257600080fd5b50356001600160a01b0316610928565b610233600480360360408110156103f857600080fd5b506001600160a01b03813516906020013561098a565b6102336004803603604081101561042457600080fd5b506001600160a01b0381351690602001356109f1565b61024f6004803603602081101561045057600080fd5b5035610a28565b6102336004803603602081101561046d57600080fd5b50356001600160a01b0316610a32565b61024f6004803603602081101561049357600080fd5b50356001600160a01b0316610a45565b610302600480360360208110156104b957600080fd5b50356001600160a01b0316610aa7565b61024f610ac2565b61024f600480360360208110156104e757600080fd5b50356001600160a01b0316610b82565b61024f6004803603604081101561050d57600080fd5b506001600160a01b038135169060200135610be4565b610233610bf2565b610533610c52565b604080516001600160a01b039092168252519081900360200190f35b610233610c66565b610259610c7c565b61024f6004803603602081101561057557600080fd5b50356001600160a01b0316610cfb565b61024f610d5d565b610233600480360360408110156105a357600080fd5b506001600160a01b038135169060200135610d6e565b61024f600480360360208110156105cf57600080fd5b50356001600160a01b0316610dc8565b610233600480360360408110156105f557600080fd5b506001600160a01b038135169060200135610e2a565b6102336004803603602081101561062157600080fd5b50356001600160a01b0316610e91565b6102336004803603604081101561064757600080fd5b506001600160a01b0381358116916020013516610ea4565b61024f6004803603602081101561067557600080fd5b50356001600160a01b0316610ebe565b6103026004803603604081101561069b57600080fd5b506001600160a01b0381358116916020013516611019565b61024f600480360360208110156106c957600080fd5b50356001600160a01b0316611044565b60d05460ff165b90565b6106f460d13363ffffffff6110a616565b565b60688054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b60006107b63384610ea4565b610807576040805162461bcd60e51b815260206004820152601560248201527f5346544d3a206e6f742077686974656c69737465640000000000000000000000604482015290519081900360640190fd5b61081183836110db565b9392505050565b60355490565b60006108326101048363ffffffff6110e816565b92915050565b60006108443384610ea4565b610895576040805162461bcd60e51b815260206004820152601560248201527f5346544d3a206e6f742077686974656c69737465640000000000000000000000604482015290519081900360640190fd5b6108a084848461111d565b949350505050565b6106f46101043363ffffffff6110a616565b6108c2610c66565b610913576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61091c81611187565b50565b606a5460ff1690565b610930610c66565b610981576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61091c816111cf565b60006109963384610ea4565b6109e7576040805162461bcd60e51b815260206004820152601560248201527f5346544d3a206e6f742077686974656c69737465640000000000000000000000604482015290519081900360640190fd5b6108118383611217565b60006109fc33610e91565b610a0557600080fd5b60d05460ff1615610a1557600080fd5b610a1f8383611253565b50600192915050565b61091c3382611345565b600061083260d18363ffffffff6110e816565b610a4d610c66565b610a9e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61091c8161134f565b6001600160a01b031660009081526033602052604090205490565b610aca610c66565b610b1b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60d05460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360d080547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b610b8a610c66565b610bdb576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61091c81611398565b610bee82826113e1565b5050565b6000610bfd33610e91565b610c0657600080fd5b60d05460ff1615610c1657600080fd5b60d0805460ff191660011790556040517fb828d9b5c78095deeeeff2eca2e5d4fe046ce3feb4c99702624a3fd384ad2dbc90600090a150600190565b60d05461010090046001600160a01b031690565b60d05461010090046001600160a01b0316331490565b60698054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107a05780601f10610775576101008083540402835291602001916107a0565b610d03610c66565b610d54576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61091c8161143e565b6106f4609d3363ffffffff6110a616565b6000610a1f3384610dc385604051806060016040528060258152602001611d9b602591393360009081526034602090815260408083206001600160a01b038d168452909152902054919063ffffffff61148616565b61151d565b610dd0610c66565b610e21576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61091c81611609565b6000610e363384610ea4565b610e87576040805162461bcd60e51b815260206004820152601560248201527f5346544d3a206e6f742077686974656c69737465640000000000000000000000604482015290519081900360640190fd5b6108118383611651565b6000610832609d8363ffffffff6110e816565b6000610eaf8361081e565b80610811575061081182610a32565b600054610100900460ff1680610ed75750610ed761165e565b80610ee5575060005460ff16155b610f205760405162461bcd60e51b815260040180806020018281038252602e815260200180611cdf602e913960400191505060405180910390fd5b600054610100900460ff16158015610f68576000805460ff197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b610fde6040518060400160405280600a81526020017f5374616b65642046544d000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5346544d000000000000000000000000000000000000000000000000000000008152506012611664565b610fe78261177a565b8015610bee57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b61104c610c66565b61109d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61091c8161177a565b6001600160a01b0381166110b957600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000610a1f33848461151d565b60006001600160a01b0382166110fd57600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b600061112a84848461183d565b61117d8433610dc385604051806060016040528060288152602001611cb7602891396001600160a01b038a166000908152603460209081526040808320338452909152902054919063ffffffff61148616565b5060019392505050565b611198609d8263ffffffff6110a616565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6111e060d18263ffffffff6110a616565b6040516001600160a01b038216907f3bedc25ebf80ff487d139ad748c2568a022463cb3a8fca1457f6c5e06b7033e490600090a250565b3360008181526034602090815260408083206001600160a01b03871684529091528120549091610a1f918590610dc3908663ffffffff61199b16565b6001600160a01b0382166112ae576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6035546112c1908263ffffffff61199b16565b6035556001600160a01b0382166000908152603360205260409020546112ed908263ffffffff61199b16565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610bee82826119f5565b6113616101048263ffffffff611af116565b6040516001600160a01b038216907f36df935c27416eb7961f5123c648063986e7da6b5e19beb07e9a811d9fa172ad90600090a250565b6113aa6101048263ffffffff6110a616565b6040516001600160a01b038216907fb696cd5a5fe532064674c95d9af264014e688e7cb8ec7b254dabc91ecbf6061290600090a250565b6113eb8282611345565b610bee8233610dc384604051806060016040528060248152602001611d0d602491396001600160a01b0388166000908152603460209081526040808320338452909152902054919063ffffffff61148616565b61144f609d8263ffffffff611af116565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b600081848411156115155760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114da5781810151838201526020016114c2565b50505050905090810190601f1680156115075780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166115625760405162461bcd60e51b8152600401808060200182810382526024815260200180611d776024913960400191505060405180910390fd5b6001600160a01b0382166115a75760405162461bcd60e51b8152600401808060200182810382526022815260200180611c6f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b61161a60d18263ffffffff611af116565b6040516001600160a01b038216907fbfac50c9bf0327bbb5d89a4fc19fbc67a141dd7f799dc9a52986dc562071108190600090a250565b6000610a1f33848461183d565b303b1590565b600054610100900460ff168061167d575061167d61165e565b8061168b575060005460ff16155b6116c65760405162461bcd60e51b815260040180806020018281038252602e815260200180611cdf602e913960400191505060405180910390fd5b600054610100900460ff1615801561170e576000805460ff197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b8351611721906068906020870190611b6b565b508251611735906069906020860190611b6b565b50606a805460ff191660ff8416179055801561177457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b50505050565b6001600160a01b0381166117bf5760405162461bcd60e51b8152600401808060200182810382526026815260200180611c496026913960400191505060405180910390fd5b60d0546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360d080546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6001600160a01b0383166118825760405162461bcd60e51b8152600401808060200182810382526025815260200180611d526025913960400191505060405180910390fd5b6001600160a01b0382166118c75760405162461bcd60e51b8152600401808060200182810382526023815260200180611c046023913960400191505060405180910390fd5b61190a81604051806060016040528060268152602001611c91602691396001600160a01b038616600090815260336020526040902054919063ffffffff61148616565b6001600160a01b03808516600090815260336020526040808220939093559084168152205461193f908263ffffffff61199b16565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610811576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216611a3a5760405162461bcd60e51b8152600401808060200182810382526021815260200180611d316021913960400191505060405180910390fd5b611a7d81604051806060016040528060228152602001611c27602291396001600160a01b038516600090815260336020526040902054919063ffffffff61148616565b6001600160a01b038316600090815260336020526040902055603554611aa9908263ffffffff611b2916565b6035556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038116611b0457600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b600061081183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611486565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611bac57805160ff1916838001178555611bd9565b82800160010185558215611bd9579182015b82811115611bd9578251825591602001919060010190611bbe565b50611be5929150611be9565b5090565b6106e091905b80821115611be55760008155600101611bef56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820373d0db2dc2d80200f509859ef8f310a5a0c8a21d25168d00db9a757f3194af164736f6c634300050b0032
Deployed ByteCode Sourcemap
28572:2376:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28572:2376:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22127:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;26887:106;;;:::i;:::-;;10863:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10863:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30497:205;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30497:205:0;;;;;;;;:::i;13326:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;27743:130;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27743:130:0;-1:-1:-1;;;;;27743:130:0;;:::i;30242:247::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30242:247:0;;;;;;;;;;;;;;;;;:::i;27881:100::-;;;:::i;29236:99::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29236:99:0;-1:-1:-1;;;;;29236:99:0;;:::i;11715:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29724:127;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29724:127:0;-1:-1:-1;;;;;29724:127:0;;:::i;30710:235::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30710:235:0;;;;;;;;:::i;22479:209::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22479:209:0;;;;;;;;:::i;23289:79::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23289:79:0;;:::i;26743:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26743:136:0;-1:-1:-1;;;;;26743:136:0;;:::i;29343:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29343:115:0;-1:-1:-1;;;;;29343:115:0;;:::i;13480:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13480:110:0;-1:-1:-1;;;;;13480:110:0;;:::i;25624:140::-;;;:::i;29466:121::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29466:121:0;-1:-1:-1;;;;;29466:121:0;;:::i;23627:95::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23627:95:0;;;;;;;;:::i;22818:206::-;;;:::i;24815:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;24815:79:0;;;;;;;;;;;;;;25181:92;;;:::i;11065:87::-;;;:::i;29135:93::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29135:93:0;-1:-1:-1;;;;;29135:93:0;;:::i;21376:78::-;;;:::i;16343:257::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16343:257:0;;;;;;;;:::i;29595:121::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29595:121:0;-1:-1:-1;;;;;29595:121:0;;:::i;30042:192::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30042:192:0;;;;;;;;:::i;21260:108::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21260:108:0;-1:-1:-1;;;;;21260:108:0;;:::i;29859:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29859:175:0;;;;;;;;;;:::i;28898:229::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28898:229:0;-1:-1:-1;;;;;28898:229:0;;:::i;14022:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14022:134:0;;;;;;;;;;:::i;25919:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25919:109:0;-1:-1:-1;;;;;25919:109:0;;:::i;22127:96::-;22199:16;;;;22127:96;;:::o;26887:106::-;26945:40;:21;26974:10;26945:40;:28;:40;:::i;:::-;26887:106::o;10863:83::-;10933:5;10926:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10900:13;;10926:12;;10933:5;;10926:12;;10933:5;10926:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10863:83;:::o;30497:205::-;30562:4;30587:34;30601:10;30613:7;30587:13;:34::i;:::-;30579:68;;;;;-1:-1:-1;;;30579:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30665:29;30679:7;30688:5;30665:13;:29::i;:::-;30658:36;30497:205;-1:-1:-1;;;30497:205:0:o;13326:91::-;13397:12;;13326:91;:::o;27743:130::-;27810:4;27834:31;:18;27857:7;27834:31;:22;:31;:::i;:::-;27827:38;27743:130;-1:-1:-1;;27743:130:0:o;30242:247::-;30331:4;30356:36;30370:10;30382:9;30356:13;:36::i;:::-;30348:70;;;;;-1:-1:-1;;;30348:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30436:45;30455:6;30463:9;30474:6;30436:18;:45::i;:::-;30429:52;30242:247;-1:-1:-1;;;;30242:247:0:o;27881:100::-;27936:37;:18;27962:10;27936:37;:25;:37;:::i;29236:99::-;25027:9;:7;:9::i;:::-;25019:54;;;;;-1:-1:-1;;;25019:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29305:22;29319:7;29305:13;:22::i;:::-;29236:99;:::o;11715:83::-;11781:9;;;;11715:83;:::o;29724:127::-;25027:9;:7;:9::i;:::-;25019:54;;;;;-1:-1:-1;;;25019:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29807:36;29835:7;29807:27;:36::i;30710:235::-;30790:4;30815:34;30829:10;30841:7;30815:13;:34::i;:::-;30807:68;;;;;-1:-1:-1;;;30807:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30893:44;30917:7;30926:10;30893:23;:44::i;22479:209::-;22619:4;21211:20;21220:10;21211:8;:20::i;:::-;21203:29;;;;;;22015:16;;;;22014:17;22006:26;;;;;;22641:17;22647:2;22651:6;22641:5;:17::i;:::-;-1:-1:-1;22676:4:0;22479:209;;;;:::o;23289:79::-;23336:24;23342:10;23354:5;23336;:24::i;26743:136::-;26813:4;26837:34;:21;26863:7;26837:34;:25;:34;:::i;29343:115::-;25027:9;:7;:9::i;:::-;25019:54;;;;;-1:-1:-1;;;25019:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29420:30;29442:7;29420:21;:30::i;13480:110::-;-1:-1:-1;;;;;13564:18:0;13537:7;13564:18;;;:9;:18;;;;;;;13480:110::o;25624:140::-;25027:9;:7;:9::i;:::-;25019:54;;;;;-1:-1:-1;;;25019:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25707:6;;25686:40;;25723:1;;25707:6;;;-1:-1:-1;;;;;25707:6:0;;25686:40;;25723:1;;25686:40;25737:6;:19;;;;;;25624:140::o;29466:121::-;25027:9;:7;:9::i;:::-;25019:54;;;;;-1:-1:-1;;;25019:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29546:33;29571:7;29546:24;:33::i;23627:95::-;23692:22;23702:4;23708:5;23692:9;:22::i;:::-;23627:95;;:::o;22818:206::-;22916:4;21211:20;21220:10;21211:8;:20::i;:::-;21203:29;;;;;;22015:16;;;;22014:17;22006:26;;;;;;22938:16;:23;;-1:-1:-1;;22938:23:0;22957:4;22938:23;;;22977:17;;;;22938:16;;22977:17;-1:-1:-1;23012:4:0;22818:206;:::o;24815:79::-;24880:6;;;;;-1:-1:-1;;;;;24880:6:0;;24815:79::o;25181:92::-;25259:6;;;;;-1:-1:-1;;;;;25259:6:0;25245:10;:20;;25181:92::o;11065:87::-;11137:7;11130:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11104:13;;11130:14;;11137:7;;11130:14;;11137:7;11130:14;;;;;;;;;;;;;;;;;;;;;;;;29135:93;25027:9;:7;:9::i;:::-;25019:54;;;;;-1:-1:-1;;;25019:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29201:19;29212:7;29201:10;:19::i;21376:78::-;21420:26;:7;21435:10;21420:26;:14;:26;:::i;16343:257::-;16428:4;16445:125;16454:10;16466:7;16475:94;16512:15;16475:94;;;;;;;;;;;;;;;;;16487:10;16475:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;16475:32:0;;;;;;;;;;;:94;;:36;:94;:::i;:::-;16445:8;:125::i;29595:121::-;25027:9;:7;:9::i;:::-;25019:54;;;;;-1:-1:-1;;;25019:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29675:33;29700:7;29675:24;:33::i;30042:192::-;30103:4;30128:29;30142:10;30154:2;30128:13;:29::i;:::-;30120:63;;;;;-1:-1:-1;;;30120:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30201:25;30216:2;30220:5;30201:14;:25::i;21260:108::-;21316:4;21340:20;:7;21352;21340:20;:11;:20;:::i;29859:175::-;29938:4;29962:27;29982:6;29962:19;:27::i;:::-;:64;;;;29993:33;30016:9;29993:22;:33::i;28898:229::-;1044:12;;;;;;;;:31;;;1060:15;:13;:15::i;:::-;1044:47;;;-1:-1:-1;1080:11:0;;;;1079:12;1044:47;1036:106;;;;-1:-1:-1;;;1036:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1151:19;1174:12;;;;;;1173:13;1193:83;;;;1222:12;:19;;-1:-1:-1;;1222:19:0;;;;;;1250:18;1237:4;1250:18;;;1193:83;28996:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29043:2;28996:24;:50::i;:::-;29094:25;29113:5;29094:18;:25::i;:::-;1298:14;1294:57;;;1338:5;1323:20;;;;;;28898:229;;:::o;14022:134::-;-1:-1:-1;;;;;14121:18:0;;;14094:7;14121:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14022:134::o;25919:109::-;25027:9;:7;:9::i;:::-;25019:54;;;;;-1:-1:-1;;;25019:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25992:28;26011:8;25992:18;:28::i;20536:149::-;-1:-1:-1;;;;;20616:21:0;;20608:30;;;;;;-1:-1:-1;;;;;20649:20:0;20672:5;20649:20;;;;;;;;;;;:28;;-1:-1:-1;;20649:28:0;;;20536:149::o;14303:150::-;14369:4;14386:37;14395:10;14407:7;14416:6;14386:8;:37::i;20779:185::-;20866:4;-1:-1:-1;;;;;20896:21:0;;20888:30;;;;;;-1:-1:-1;;;;;;20936:20:0;:11;:20;;;;;;;;;;;;;;;20779:185::o;14925:300::-;15014:4;15031:36;15041:6;15049:9;15060:6;15031:9;:36::i;:::-;15078:117;15087:6;15095:10;15107:87;15143:6;15107:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15107:19:0;;;;;;:11;:19;;;;;;;;15127:10;15107:31;;;;;;;;;:87;;:35;:87;:::i;15078:117::-;-1:-1:-1;15213:4:0;14925:300;;;;;:::o;21462:129::-;21522:23;:7;21537;21522:23;:14;:23;:::i;:::-;21561:22;;-1:-1:-1;;;;;21561:22:0;;;;;;;;21462:129;:::o;27001:171::-;27075:37;:21;27104:7;27075:37;:28;:37;:::i;:::-;27128:36;;-1:-1:-1;;;;;27128:36:0;;;;;;;;27001:171;:::o;15634:206::-;15740:10;15714:4;15761:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;15761:32:0;;;;;;;;;;15714:4;;15731:79;;15752:7;;15761:48;;15798:10;15761:48;:36;:48;:::i;17842:308::-;-1:-1:-1;;;;;17918:21:0;;17910:65;;;;;-1:-1:-1;;;17910:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18003:12;;:24;;18020:6;18003:24;:16;:24;:::i;:::-;17988:12;:39;-1:-1:-1;;;;;18059:18:0;;;;;;:9;:18;;;;;;:30;;18082:6;18059:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;18038:18:0;;;;;;:9;:18;;;;;;;;:51;;;;18105:37;;;;;;;18038:18;;;;18105:37;;;;;;;;;;17842:308;;:::o;23856:94::-;23919:23;23931:3;23936:5;23919:11;:23::i;28159:154::-;28227:31;:18;28250:7;28227:31;:22;:31;:::i;:::-;28274;;-1:-1:-1;;;;;28274:31:0;;;;;;;;28159:154;:::o;27989:162::-;28060:34;:18;28086:7;28060:34;:25;:34;:::i;:::-;28110:33;;-1:-1:-1;;;;;28110:33:0;;;;;;;;27989:162;:::o;19794:228::-;19866:22;19872:7;19881:6;19866:5;:22::i;:::-;19899:115;19908:7;19917:10;19929:84;19966:6;19929:84;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19929:20:0;;;;;;:11;:20;;;;;;;;19950:10;19929:32;;;;;;;;;:84;;:36;:84;:::i;21599:121::-;21656:20;:7;21668;21656:20;:11;:20;:::i;:::-;21692;;-1:-1:-1;;;;;21692:20:0;;;;;;;;21599:121;:::o;3829:192::-;3915:7;3951:12;3943:6;;;;3935:29;;;;-1:-1:-1;;;3935:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3935:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3987:5:0;;;3829:192::o;19270:338::-;-1:-1:-1;;;;;19364:19:0;;19356:68;;;;-1:-1:-1;;;19356:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19443:21:0;;19435:68;;;;-1:-1:-1;;;19435:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19516:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19568:32;;;;;;;;;;;;;;;;;19270:338;;;:::o;27180:163::-;27251:34;:21;27277:7;27251:34;:25;:34;:::i;:::-;27301;;-1:-1:-1;;;;;27301:34:0;;;;;;;;27180:163;:::o;13803:156::-;13872:4;13889:40;13899:10;13911:9;13922:6;13889:9;:40::i;1445:508::-;1862:4;1908:17;1940:7;1445:508;:::o;10605:188::-;1044:12;;;;;;;;:31;;;1060:15;:13;:15::i;:::-;1044:47;;;-1:-1:-1;1080:11:0;;;;1079:12;1044:47;1036:106;;;;-1:-1:-1;;;1036:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1151:19;1174:12;;;;;;1173:13;1193:83;;;;1222:12;:19;;-1:-1:-1;;1222:19:0;;;;;;1250:18;1237:4;1250:18;;;1193:83;10715:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;10738:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;10765:9:0;:20;;-1:-1:-1;;10765:20:0;;;;;;;1294:57;;;;1338:5;1323:20;;;;;;1294:57;10605:188;;;;:::o;26134:229::-;-1:-1:-1;;;;;26208:22:0;;26200:73;;;;-1:-1:-1;;;26200:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26310:6;;26289:38;;-1:-1:-1;;;;;26289:38:0;;;;26310:6;;;;;26289:38;;;;;26338:6;:17;;-1:-1:-1;;;;;26338:17:0;;;;;;;;;;;;;;;26134:229::o;17090:471::-;-1:-1:-1;;;;;17188:20:0;;17180:70;;;;-1:-1:-1;;;17180:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17269:23:0;;17261:71;;;;-1:-1:-1;;;17261:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17365;17387:6;17365:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17365:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;17345:17:0;;;;;;;:9;:17;;;;;;:91;;;;17470:20;;;;;;;:32;;17495:6;17470:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17447:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17518:35;;;;;;;17447:20;;17518:35;;;;;;;;;;;;;17090:471;;;:::o;2900:181::-;2958:7;2990:5;;;3014:6;;;;3006:46;;;;;-1:-1:-1;;;3006:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;18482:348;-1:-1:-1;;;;;18558:21:0;;18550:67;;;;-1:-1:-1;;;18550:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18651:68;18674:6;18651:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18651:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;18630:18:0;;;;;;:9;:18;;;;;:89;18745:12;;:24;;18762:6;18745:24;:16;:24;:::i;:::-;18730:12;:39;18785:37;;;;;;;;18811:1;;-1:-1:-1;;;;;18785:37:0;;;;;;;;;;;;18482:348;;:::o;20312:145::-;-1:-1:-1;;;;;20389:21:0;;20381:30;;;;;;-1:-1:-1;;;;;20422:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;20422:27:0;20445:4;20422:27;;;20312:145::o;3356:136::-;3414:7;3441:43;3445:1;3448;3441:43;;;;;;;;;;;;;;;;;:3;:43::i;28572:2376::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28572:2376:0;;;-1:-1:-1;28572:2376:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://373d0db2dc2d80200f509859ef8f310a5a0c8a21d25168d00db9a757f3194af1
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.