Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
17,000 FRI
Holders
18
Total Transfers
-
Market
Fully Diluted Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
fri
Compiler Version
v0.5.8+commit.23d335f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-15 */ // File: @openzeppelin\upgrades\contracts\Initializable.sol pragma solidity >=0.4.24 <0.7.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; } // File: node_modules\@openzeppelin\contracts-ethereum-package\contracts\GSN\Context.sol pragma solidity ^0.5.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 GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: node_modules\@openzeppelin\contracts-ethereum-package\contracts\token\ERC20\IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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: node_modules\@openzeppelin\contracts-ethereum-package\contracts\math\SafeMath.sol pragma solidity ^0.5.0; /** * @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; } } // File: @openzeppelin\contracts-ethereum-package\contracts\token\ERC20\ERC20.sol pragma solidity ^0.5.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 {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, Context, 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(_msgSender(), 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(_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 returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { 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, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } uint256[50] private ______gap; } // File: @openzeppelin\contracts-ethereum-package\contracts\token\ERC20\ERC20Detailed.sol pragma solidity ^0.5.0; /** * @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) public 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; } // File: node_modules\@openzeppelin\contracts-ethereum-package\contracts\access\Roles.sol pragma solidity ^0.5.0; /** * @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(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); 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), "Roles: account is the zero address"); return role.bearer[account]; } } // File: node_modules\@openzeppelin\contracts-ethereum-package\contracts\access\roles\MinterRole.sol pragma solidity ^0.5.0; contract MinterRole is Initializable, Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; function initialize(address sender) public initializer { if (!isMinter(sender)) { _addMinter(sender); } } modifier onlyMinter() { require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(_msgSender()); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } uint256[50] private ______gap; } // File: @openzeppelin\contracts-ethereum-package\contracts\token\ERC20\ERC20Mintable.sol pragma solidity ^0.5.0; /** * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole}, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is Initializable, ERC20, MinterRole { function initialize(address sender) public initializer { MinterRole.initialize(sender); } /** * @dev See {ERC20-_mint}. * * Requirements: * * - the caller must have the {MinterRole}. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } uint256[50] private ______gap; } // File: @openzeppelin\contracts-ethereum-package\contracts\ownership\Ownable.sol pragma solidity ^0.5.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. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable is Initializable, Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function initialize(address sender) public initializer { _owner = sender; emit OwnershipTransferred(address(0), _owner); } /** * @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 _msgSender() == _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; } uint256[50] private ______gap; } // File: contracts\fri.sol pragma solidity ^0.5.0; contract fri is Initializable, ERC20, Ownable, ERC20Detailed, ERC20Mintable { /** * @notice initialize coin for the Muhl Shares. This * contract relates to a unique real estate portfolio and each * token minted is a share. */ function initialize(address sender) public initializer { ERC20Detailed.initialize('fri', 'FRI', 18); ERC20Mintable.initialize(sender); Ownable.initialize(sender); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"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":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
608060405261269d806100136000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063a457c2d71161007c578063a457c2d7146106b7578063a9059cbb1461071d578063aa271e1a14610783578063c4d66de8146107df578063dd62ed3e14610823578063f2fde38b1461089b57610137565b80638da5cb5b1461057a5780638f32d59b146105c457806395d89b41146105e6578063983b2d561461066957806398650275146106ad57610137565b8063313ce567116100ff578063313ce56714610428578063395093511461044c57806340c10f19146104b257806370a0823114610518578063715018a61461057057610137565b806306fdde031461013c578063095ea7b3146101bf5780631624f6c61461022557806318160ddd1461038457806323b872dd146103a2575b600080fd5b6101446108df565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610981565b604051808215151515815260200191505060405180910390f35b6103826004803603606081101561023b57600080fd5b810190808035906020019064010000000081111561025857600080fd5b82018360208201111561026a57600080fd5b8035906020019184600183028401116401000000008311171561028c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156102ef57600080fd5b82018360208201111561030157600080fd5b8035906020019184600183028401116401000000008311171561032357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803560ff16906020019092919050505061099f565b005b61038c610aea565b6040518082815260200191505060405180910390f35b61040e600480360360608110156103b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610af4565b604051808215151515815260200191505060405180910390f35b610430610bcd565b604051808260ff1660ff16815260200191505060405180910390f35b6104986004803603604081101561046257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610be4565b604051808215151515815260200191505060405180910390f35b6104fe600480360360408110156104c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c97565b604051808215151515815260200191505060405180910390f35b61055a6004803603602081101561052e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d12565b6040518082815260200191505060405180910390f35b610578610d5b565b005b610582610e96565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105cc610ec0565b604051808215151515815260200191505060405180910390f35b6105ee610f1f565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561062e578082015181840152602081019050610613565b50505050905090810190601f16801561065b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106ab6004803603602081101561067f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fc1565b005b6106b5611032565b005b610703600480360360408110156106cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611044565b604051808215151515815260200191505060405180910390f35b6107696004803603604081101561073357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611111565b604051808215151515815260200191505060405180910390f35b6107c56004803603602081101561079957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061112f565b604051808215151515815260200191505060405180910390f35b610821600480360360208110156107f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061114c565b005b6108856004803603604081101561083957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112d4565b6040518082815260200191505060405180910390f35b6108dd600480360360208110156108b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061135b565b005b6060609b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109775780601f1061094c57610100808354040283529160200191610977565b820191906000526020600020905b81548152906001019060200180831161095a57829003601f168201915b5050505050905090565b600061099561098e6113e1565b84846113e9565b6001905092915050565b600060019054906101000a900460ff16806109be57506109bd6115e0565b5b806109d557506000809054906101000a900460ff16155b610a2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806125d6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015610a7a576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b83609b9080519060200190610a90929190612404565b5082609c9080519060200190610aa7929190612404565b5081609d60006101000a81548160ff021916908360ff1602179055508015610ae45760008060016101000a81548160ff0219169083151502179055505b50505050565b6000603554905090565b6000610b018484846115f7565b610bc284610b0d6113e1565b610bbd8560405180606001604052806028815260200161258c60289139603460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b736113e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118b19092919063ffffffff16565b6113e9565b600190509392505050565b6000609d60009054906101000a900460ff16905090565b6000610c8d610bf16113e1565b84610c888560346000610c026113e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197190919063ffffffff16565b6113e9565b6001905092915050565b6000610ca9610ca46113e1565b61112f565b610cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061253b6030913960400191505060405180910390fd5b610d0883836119f9565b6001905092915050565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d63610ec0565b610dd5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f036113e1565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060609c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fb75780601f10610f8c57610100808354040283529160200191610fb7565b820191906000526020600020905b815481529060010190602001808311610f9a57829003601f168201915b5050505050905090565b610fd1610fcc6113e1565b61112f565b611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061253b6030913960400191505060405180910390fd5b61102f81611bb6565b50565b61104261103d6113e1565b611c10565b565b60006111076110516113e1565b846111028560405180606001604052806025815260200161264d602591396034600061107b6113e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118b19092919063ffffffff16565b6113e9565b6001905092915050565b600061112561111e6113e1565b84846115f7565b6001905092915050565b60006111458260d0611c6a90919063ffffffff16565b9050919050565b600060019054906101000a900460ff168061116b575061116a6115e0565b5b8061118257506000809054906101000a900460ff16155b6111d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806125d6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015611227576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61129d6040518060400160405280600381526020017f66726900000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4652490000000000000000000000000000000000000000000000000000000000815250601261099f565b6112a682611d48565b6112af82611e51565b80156112d05760008060016101000a81548160ff0219169083151502179055505b5050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611363610ec0565b6113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6113de8161200f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561146f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806126296024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806124f36022913960400191505060405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000803090506000813b9050600081149250505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126046025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806124aa6023913960400191505060405180910390fd5b61176f8160405180606001604052806026815260200161251560269139603360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118b19092919063ffffffff16565b603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061180481603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197190919063ffffffff16565b603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061195e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611923578082015181840152602081019050611908565b50505050905090810190601f1680156119505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808284019050838110156119ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611ab18160355461197190919063ffffffff16565b603581905550611b0981603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197190919063ffffffff16565b603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611bca8160d061215590919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b611c248160d061223090919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806125b46022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060019054906101000a900460ff1680611d675750611d666115e0565b5b80611d7e57506000809054906101000a900460ff16155b611dd3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806125d6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015611e23576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611e2c826122ed565b8015611e4d5760008060016101000a81548160ff0219169083151502179055505b5050565b600060019054906101000a900460ff1680611e705750611e6f6115e0565b5b80611e8757506000809054906101000a900460ff16155b611edc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806125d6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015611f2c576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b81606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3801561200b5760008060016101000a81548160ff0219169083151502179055505b5050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612095576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806124cd6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61215f8282611c6a565b156121d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61223a8282611c6a565b61228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061256b6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600060019054906101000a900460ff168061230c575061230b6115e0565b5b8061232357506000809054906101000a900460ff16155b612378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806125d6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff1615905080156123c8576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6123d18261112f565b6123df576123de82611bb6565b5b80156124005760008060016101000a81548160ff0219169083151502179055505b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061244557805160ff1916838001178555612473565b82800160010185558215612473579182015b82811115612472578251825591602001919060010190612457565b5b5090506124809190612484565b5090565b6124a691905b808211156124a257600081600090555060010161248a565b5090565b9056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa165627a7a7230582057d2c051aa8aed767972a6352252fe6b7bf92f4a8925f7f1426f50e5ab5fb6760029
Deployed ByteCode Sourcemap
27887:454:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27887:454:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21018:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;21018:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14461:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14461:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20762:186;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20762:186:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;20762:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20762:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;20762:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;20762:186:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;20762:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20762:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;20762:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;20762:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13482:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15085:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15085:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21870:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15798:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15798:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25052:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25052:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13636:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13636:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27036:140;;;:::i;:::-;;26223:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26589:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21220:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;21220:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23884:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23884:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;23984:79;;;:::i;:::-;;16511:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16511:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13959:158;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13959:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23767:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23767:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28146:190;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28146:190:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;14180:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14180:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27331:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27331:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;21018:83;21055:13;21088:5;21081:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21018:83;:::o;14461:152::-;14527:4;14544:39;14553:12;:10;:12::i;:::-;14567:7;14576:6;14544:8;:39::i;:::-;14601:4;14594:11;;14461:152;;;;:::o;20762:186::-;1118:12;;;;;;;;;;;:31;;;;1134:15;:13;:15::i;:::-;1118:31;:47;;;;1154:11;;;;;;;;;;;1153:12;1118:47;1110:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;;;;;;1247:13;1225:35;;1271:14;1267:83;;;1311:4;1296:12;;:19;;;;;;;;;;;;;;;;;;1338:4;1324:11;;:18;;;;;;;;;;;;;;;;;;1267:83;20878:4;20870:5;:12;;;;;;;;;;;;:::i;:::-;;20903:6;20893:7;:16;;;;;;;;;;;;:::i;:::-;;20932:8;20920:9;;:20;;;;;;;;;;;;;;;;;;1372:14;1368:57;;;1412:5;1397:12;;:20;;;;;;;;;;;;;;;;;;1368:57;20762:186;;;;:::o;13482:91::-;13526:7;13553:12;;13546:19;;13482:91;:::o;15085:304::-;15174:4;15191:36;15201:6;15209:9;15220:6;15191:9;:36::i;:::-;15238:121;15247:6;15255:12;:10;:12::i;:::-;15269:89;15307:6;15269:89;;;;;;;;;;;;;;;;;:11;:19;15281:6;15269:19;;;;;;;;;;;;;;;:33;15289:12;:10;:12::i;:::-;15269:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;15238:8;:121::i;:::-;15377:4;15370:11;;15085:304;;;;;:::o;21870:83::-;21911:5;21936:9;;;;;;;;;;;21929:16;;21870:83;:::o;15798:210::-;15878:4;15895:83;15904:12;:10;:12::i;:::-;15918:7;15927:50;15966:10;15927:11;:25;15939:12;:10;:12::i;:::-;15927:25;;;;;;;;;;;;;;;:34;15953:7;15927:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;15895:8;:83::i;:::-;15996:4;15989:11;;15798:210;;;;:::o;25052:143::-;25126:4;23664:22;23673:12;:10;:12::i;:::-;23664:8;:22::i;:::-;23656:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25143:22;25149:7;25158:6;25143:5;:22::i;:::-;25183:4;25176:11;;25052:143;;;;:::o;13636:110::-;13693:7;13720:9;:18;13730:7;13720:18;;;;;;;;;;;;;;;;13713:25;;13636:110;;;:::o;27036:140::-;26435:9;:7;:9::i;:::-;26427:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27135:1;27098:40;;27119:6;;;;;;;;;;;27098:40;;;;;;;;;;;;27166:1;27149:6;;:19;;;;;;;;;;;;;;;;;;27036:140::o;26223:79::-;26261:7;26288:6;;;;;;;;;;;26281:13;;26223:79;:::o;26589:94::-;26629:4;26669:6;;;;;;;;;;;26653:22;;:12;:10;:12::i;:::-;:22;;;26646:29;;26589:94;:::o;21220:87::-;21259:13;21292:7;21285:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21220:87;:::o;23884:92::-;23664:22;23673:12;:10;:12::i;:::-;23664:8;:22::i;:::-;23656:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23949:19;23960:7;23949:10;:19::i;:::-;23884:92;:::o;23984:79::-;24028:27;24042:12;:10;:12::i;:::-;24028:13;:27::i;:::-;23984:79::o;16511:261::-;16596:4;16613:129;16622:12;:10;:12::i;:::-;16636:7;16645:96;16684:15;16645:96;;;;;;;;;;;;;;;;;:11;:25;16657:12;:10;:12::i;:::-;16645:25;;;;;;;;;;;;;;;:34;16671:7;16645:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;16613:8;:129::i;:::-;16760:4;16753:11;;16511:261;;;;:::o;13959:158::-;14028:4;14045:42;14055:12;:10;:12::i;:::-;14069:9;14080:6;14045:9;:42::i;:::-;14105:4;14098:11;;13959:158;;;;:::o;23767:109::-;23823:4;23847:21;23860:7;23847:8;:12;;:21;;;;:::i;:::-;23840:28;;23767:109;;;:::o;28146:190::-;1118:12;;;;;;;;;;;:31;;;;1134:15;:13;:15::i;:::-;1118:31;:47;;;;1154:11;;;;;;;;;;;1153:12;1118:47;1110:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;;;;;;1247:13;1225:35;;1271:14;1267:83;;;1311:4;1296:12;;:19;;;;;;;;;;;;;;;;;;1338:4;1324:11;;:18;;;;;;;;;;;;;;;;;;1267:83;28210:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28249:2;28210:24;:42::i;:::-;28261:32;28286:6;28261:24;:32::i;:::-;28302:26;28321:6;28302:18;:26::i;:::-;1372:14;1368:57;;;1412:5;1397:12;;:20;;;;;;;;;;;;;;;;;;1368:57;28146:190;;:::o;14180:134::-;14252:7;14279:11;:18;14291:5;14279:18;;;;;;;;;;;;;;;:27;14298:7;14279:27;;;;;;;;;;;;;;;;14272:34;;14180:134;;;;:::o;27331:109::-;26435:9;:7;:9::i;:::-;26427:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27404:28;27423:8;27404:18;:28::i;:::-;27331:109;:::o;3059:98::-;3104:15;3139:10;3132:17;;3059:98;:::o;19442:338::-;19553:1;19536:19;;:5;:19;;;;19528:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19634:1;19615:21;;:7;:21;;;;19607:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19718:6;19688:11;:18;19700:5;19688:18;;;;;;;;;;;;;;;:27;19707:7;19688:27;;;;;;;;;;;;;;;:36;;;;19756:7;19740:32;;19749:5;19740:32;;;19765:6;19740:32;;;;;;;;;;;;;;;;;;19442:338;;;:::o;1519:508::-;1566:4;1913:12;1936:4;1913:28;;1948:10;1994:4;1982:17;1976:23;;2020:1;2014:2;:7;2007:14;;;;1519:508;:::o;17262:471::-;17378:1;17360:20;;:6;:20;;;;17352:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17462:1;17441:23;;:9;:23;;;;17433:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17537;17559:6;17537:71;;;;;;;;;;;;;;;;;:9;:17;17547:6;17537:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;17517:9;:17;17527:6;17517:17;;;;;;;;;;;;;;;:91;;;;17642:32;17667:6;17642:9;:20;17652:9;17642:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;17619:9;:20;17629:9;17619:20;;;;;;;;;;;;;;;:55;;;;17707:9;17690:35;;17699:6;17690:35;;;17718:6;17690:35;;;;;;;;;;;;;;;;;;17262:471;;;:::o;8199:192::-;8285:7;8318:1;8313;:6;;8321:12;8305:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;8305:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8345:9;8361:1;8357;:5;8345:17;;8382:1;8375:8;;;8199:192;;;;;:::o;7270:181::-;7328:7;7348:9;7364:1;7360;:5;7348:17;;7389:1;7384;:6;;7376:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7442:1;7435:8;;;7270:181;;;;:::o;18014:308::-;18109:1;18090:21;;:7;:21;;;;18082:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18175:24;18192:6;18175:12;;:16;;:24;;;;:::i;:::-;18160:12;:39;;;;18231:30;18254:6;18231:9;:18;18241:7;18231:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;18210:9;:18;18220:7;18210:18;;;;;;;;;;;;;;;:51;;;;18298:7;18277:37;;18294:1;18277:37;;;18307:6;18277:37;;;;;;;;;;;;;;;;;;18014:308;;:::o;24071:122::-;24128:21;24141:7;24128:8;:12;;:21;;;;:::i;:::-;24177:7;24165:20;;;;;;;;;;;;24071:122;:::o;24201:130::-;24261:24;24277:7;24261:8;:15;;:24;;;;:::i;:::-;24315:7;24301:22;;;;;;;;;;;;24201:130;:::o;22901:203::-;22973:4;23017:1;22998:21;;:7;:21;;;;22990:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23076:4;:11;;:20;23088:7;23076:20;;;;;;;;;;;;;;;;;;;;;;;;;23069:27;;22901:203;;;;:::o;24804:103::-;1118:12;;;;;;;;;;;:31;;;;1134:15;:13;:15::i;:::-;1118:31;:47;;;;1154:11;;;;;;;;;;;1153:12;1118:47;1110:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;;;;;;1247:13;1225:35;;1271:14;1267:83;;;1311:4;1296:12;;:19;;;;;;;;;;;;;;;;;;1338:4;1324:11;;:18;;;;;;;;;;;;;;;;;;1267:83;24870:29;24892:6;24870:21;:29::i;:::-;1372:14;1368:57;;;1412:5;1397:12;;:20;;;;;;;;;;;;;;;;;;1368:57;24804:103;;:::o;25997:145::-;1118:12;;;;;;;;;;;:31;;;;1134:15;:13;:15::i;:::-;1118:31;:47;;;;1154:11;;;;;;;;;;;1153:12;1118:47;1110:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;;;;;;1247:13;1225:35;;1271:14;1267:83;;;1311:4;1296:12;;:19;;;;;;;;;;;;;;;;;;1338:4;1324:11;;:18;;;;;;;;;;;;;;;;;;1267:83;26072:6;26063;;:15;;;;;;;;;;;;;;;;;;26127:6;;;;;;;;;;;26094:40;;26123:1;26094:40;;;;;;;;;;;;1372:14;1368:57;;;1412:5;1397:12;;:20;;;;;;;;;;;;;;;;;;1368:57;25997:145;;:::o;27546:229::-;27640:1;27620:22;;:8;:22;;;;27612:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27730:8;27701:38;;27722:6;;;;;;;;;;;27701:38;;;;;;;;;;;;27759:8;27750:6;;:17;;;;;;;;;;;;;;;;;;27546:229;:::o;22365:178::-;22443:18;22447:4;22453:7;22443:3;:18::i;:::-;22442:19;22434:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22531:4;22508;:11;;:20;22520:7;22508:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;22365:178;;:::o;22623:183::-;22703:18;22707:4;22713:7;22703:3;:18::i;:::-;22695:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22793:5;22770:4;:11;;:20;22782:7;22770:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;22623:183;;:::o;23474:141::-;1118:12;;;;;;;;;;;:31;;;;1134:15;:13;:15::i;:::-;1118:31;:47;;;;1154:11;;;;;;;;;;;1153:12;1118:47;1110:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;;;;;;1247:13;1225:35;;1271:14;1267:83;;;1311:4;1296:12;;:19;;;;;;;;;;;;;;;;;;1338:4;1324:11;;:18;;;;;;;;;;;;;;;;;;1267:83;23545:16;23554:6;23545:8;:16::i;:::-;23540:68;;23578:18;23589:6;23578:10;:18::i;:::-;23540:68;1372:14;1368:57;;;1412:5;1397:12;;:20;;;;;;;;;;;;;;;;;;1368:57;23474:141;;:::o;27887:454::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://57d2c051aa8aed767972a6352252fe6b7bf92f4a8925f7f1426f50e5ab5fb676
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.