ERC-20
Overview
Max Total Supply
1,000,000,000 GMG
Holders
4
Total Transfers
-
Market
Onchain 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 Source Code Verified (Exact Match)
Contract Name:
OwnToken
Compiler Version
v0.5.2+commit.1df8f40c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-04-26 */ pragma solidity ^0.5.0; /** * @dev Interface of the ERC777Token standard as defined in the EIP. * * This contract uses the * [ERC1820 registry standard](https://eips.ethereum.org/EIPS/eip-1820) to let * token holders and recipients react to token movements by using setting implementers * for the associated interfaces in said registry. See `IERC1820Registry` and * `ERC1820Implementer`. */ interface IERC777 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view returns (string memory); /** * @dev Returns the smallest part of the token that is not divisible. This * means all token operations (creation, movement and destruction) must have * amounts that are a multiple of this number. * * For most token contracts, this value will equal 1. */ function granularity() external view returns (uint256); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by an account (`owner`). */ function balanceOf(address owner) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * If send or receive hooks are registered for the caller and `recipient`, * the corresponding functions will be called with `data` and empty * `operatorData`. See `IERC777Sender` and `IERC777Recipient`. * * Emits a `Sent` event. * * Requirements * * - the caller must have at least `amount` tokens. * - `recipient` cannot be the zero address. * - if `recipient` is a contract, it must implement the `tokensReceived` * interface. */ function send(address recipient, uint256 amount, bytes calldata data) external; /** * @dev Destroys `amount` tokens from the caller's account, reducing the * total supply. * * If a send hook is registered for the caller, the corresponding function * will be called with `data` and empty `operatorData`. See `IERC777Sender`. * * Emits a `Burned` event. * * Requirements * * - the caller must have at least `amount` tokens. */ function burn(uint256 amount, bytes calldata data) external; /** * @dev Returns true if an account is an operator of `tokenHolder`. * Operators can send and burn tokens on behalf of their owners. All * accounts are their own operator. * * See `operatorSend` and `operatorBurn`. */ function isOperatorFor(address operator, address tokenHolder) external view returns (bool); /** * @dev Make an account an operator of the caller. * * See `isOperatorFor`. * * Emits an `AuthorizedOperator` event. * * Requirements * * - `operator` cannot be calling address. */ function authorizeOperator(address operator) external; /** * @dev Make an account an operator of the caller. * * See `isOperatorFor` and `defaultOperators`. * * Emits a `RevokedOperator` event. * * Requirements * * - `operator` cannot be calling address. */ function revokeOperator(address operator) external; /** * @dev Returns the list of default operators. These accounts are operators * for all token holders, even if `authorizeOperator` was never called on * them. * * This list is immutable, but individual holders may revoke these via * `revokeOperator`, in which case `isOperatorFor` will return false. */ function defaultOperators() external view returns (address[] memory); /** * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must * be an operator of `sender`. * * If send or receive hooks are registered for `sender` and `recipient`, * the corresponding functions will be called with `data` and * `operatorData`. See `IERC777Sender` and `IERC777Recipient`. * * Emits a `Sent` event. * * Requirements * * - `sender` cannot be the zero address. * - `sender` must have at least `amount` tokens. * - the caller must be an operator for `sender`. * - `recipient` cannot be the zero address. * - if `recipient` is a contract, it must implement the `tokensReceived` * interface. */ function operatorSend( address sender, address recipient, uint256 amount, bytes calldata data, bytes calldata operatorData ) external; /** * @dev Destoys `amount` tokens from `account`, reducing the total supply. * The caller must be an operator of `account`. * * If a send hook is registered for `account`, the corresponding function * will be called with `data` and `operatorData`. See `IERC777Sender`. * * Emits a `Burned` event. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. * - the caller must be an operator for `account`. */ function operatorBurn( address account, uint256 amount, bytes calldata data, bytes calldata operatorData ) external; event Sent( address indexed operator, address indexed from, address indexed to, uint256 amount, bytes data, bytes operatorData ); event Minted( address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData ); event Burned( address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData ); event AuthorizedOperator( address indexed operator, address indexed tokenHolder ); event RevokedOperator( address indexed operator, address indexed tokenHolder ); } /** * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP. * * Accounts can be notified of `IERC777` tokens being sent to them by having a * contract implement this interface (contract holders can be their own * implementer) and registering it on the * [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820). * * See `IERC1820Registry` and `ERC1820Implementer`. */ interface IERC777Recipient { /** * @dev Called by an `IERC777` token contract whenever tokens are being * moved or created into a registered account (`to`). The type of operation * is conveyed by `from` being the zero address or not. * * This call occurs _after_ the token contract's state is updated, so * `IERC777.balanceOf`, etc., can be used to query the post-operation state. * * This function may revert to prevent the operation from being executed. */ function tokensReceived( address operator, address from, address to, uint256 amount, bytes calldata userData, bytes calldata operatorData ) external; } /** * @dev Interface of the ERC777TokensSender standard as defined in the EIP. * * `IERC777` Token holders can be notified of operations performed on their * tokens by having a contract implement this interface (contract holders can be * their own implementer) and registering it on the * [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820). * * See `IERC1820Registry` and `ERC1820Implementer`. */ interface IERC777Sender { /** * @dev Called by an `IERC777` token contract whenever a registered holder's * (`from`) tokens are about to be moved or destroyed. The type of operation * is conveyed by `to` being the zero address or not. * * This call occurs _before_ the token contract's state is updated, so * `IERC777.balanceOf`, etc., can be used to query the pre-operation state. * * This function may revert to prevent the operation from being executed. */ function tokensToSend( address operator, address from, address to, uint256 amount, bytes calldata userData, bytes calldata operatorData ) external; } /** * @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. * * > Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /** * @dev Collection of functions related to the address type, */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing a contract. * * > It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } /** * @dev Interface of the global ERC1820 Registry, as defined in the * [EIP](https://eips.ethereum.org/EIPS/eip-1820). Accounts may register * implementers for interfaces in this registry, as well as query support. * * Implementers may be shared by multiple accounts, and can also implement more * than a single interface for each account. Contracts can implement interfaces * for themselves, but externally-owned accounts (EOA) must delegate this to a * contract. * * `IERC165` interfaces can also be queried via the registry. * * For an in-depth explanation and source code analysis, see the EIP text. */ interface IERC1820Registry { /** * @dev Sets `newManager` as the manager for `account`. A manager of an * account is able to set interface implementers for it. * * By default, each account is its own manager. Passing a value of `0x0` in * `newManager` will reset the manager to this initial state. * * Emits a `ManagerChanged` event. * * Requirements: * * - the caller must be the current manager for `account`. */ function setManager(address account, address newManager) external; /** * @dev Returns the manager for `account`. * * See `setManager`. */ function getManager(address account) external view returns (address); /** * @dev Sets the `implementer` contract as `account`'s implementer for * `interfaceHash`. * * `account` being the zero address is an alias for the caller's address. * The zero address can also be used in `implementer` to remove an old one. * * See `interfaceHash` to learn how these are created. * * Emits an `InterfaceImplementerSet` event. * * Requirements: * * - the caller must be the current manager for `account`. * - `interfaceHash` must not be an `IERC165` interface id (i.e. it must not * end in 28 zeroes). * - `implementer` must implement `IERC1820Implementer` and return true when * queried for support, unless `implementer` is the caller. See * `IERC1820Implementer.canImplementInterfaceForAddress`. */ function setInterfaceImplementer( address account, bytes32 interfaceHash, address implementer ) external; /** * @dev Returns the implementer of `interfaceHash` for `account`. If no such * implementer is registered, returns the zero address. * * If `interfaceHash` is an `IERC165` interface id (i.e. it ends with 28 * zeroes), `account` will be queried for support of it. * * `account` being the zero address is an alias for the caller's address. */ function getInterfaceImplementer(address account, bytes32 interfaceHash) external view returns (address); /** * @dev Returns the interface hash for an `interfaceName`, as defined in the * corresponding * [section of the EIP](https://eips.ethereum.org/EIPS/eip-1820#interface-name). */ function interfaceHash(string calldata interfaceName) external pure returns (bytes32); /** * @notice Updates the cache with whether the contract implements an ERC165 interface or not. * @param account Address of the contract for which to update the cache. * @param interfaceId ERC165 interface for which to update the cache. */ function updateERC165Cache(address account, bytes4 interfaceId) external; /** * @notice Checks whether a contract implements an ERC165 interface or not. * If the result is not cached a direct lookup on the contract address is performed. * If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling * 'updateERC165Cache' with the contract address. * @param account Address of the contract to check. * @param interfaceId ERC165 interface to check. * @return True if `account.address()` implements `interfaceId`, false otherwise. */ function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool); /** * @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache. * @param account Address of the contract to check. * @param interfaceId ERC165 interface to check. * @return True if `account.address()` implements `interfaceId`, false otherwise. */ function implementsERC165InterfaceNoCache( address account, bytes4 interfaceId ) external view returns (bool); event InterfaceImplementerSet( address indexed account, bytes32 indexed interfaceHash, address indexed implementer ); event ManagerChanged(address indexed account, address indexed newManager); } /** * @dev Implementation of the `IERC777` 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`. * * Support for ERC20 is included in this contract, as specified by the EIP: both * the ERC777 and ERC20 interfaces can be safely used when interacting with it. * Both `IERC777.Sent` and `IERC20.Transfer` events are emitted on token * movements. * * Additionally, the `granularity` value is hard-coded to `1`, meaning that there * are no special restrictions in the amount of tokens that created, moved, or * destroyed. This makes integration with ERC20 applications seamless. */ contract ERC777 is IERC777, IERC20 { using SafeMath for uint256; using Address for address; IERC1820Registry private _erc1820 = IERC1820Registry( 0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24 ); mapping(address => uint256) private _balances; uint256 private _totalSupply; string private _name; string private _symbol; // We inline the result of the following hashes because Solidity doesn't resolve them at compile time. // See https://github.com/ethereum/solidity/issues/4024. // keccak256("ERC777TokensSender") bytes32 private constant TOKENS_SENDER_INTERFACE_HASH = 0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895; // keccak256("ERC777TokensRecipient") bytes32 private constant TOKENS_RECIPIENT_INTERFACE_HASH = 0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b; // This isn't ever read from - it's only used to respond to the defaultOperators query. address[] private _defaultOperatorsArray; // Immutable, but accounts may revoke them (tracked in __revokedDefaultOperators). mapping(address => bool) private _defaultOperators; // For each account, a mapping of its operators and revoked default operators. mapping(address => mapping(address => bool)) private _operators; mapping(address => mapping(address => bool)) private _revokedDefaultOperators; // ERC20-allowances mapping(address => mapping(address => uint256)) private _allowances; /** * @dev `defaultOperators` may be an empty array. */ constructor( string memory name, string memory symbol, address[] memory defaultOperators ) public { _name = name; _symbol = symbol; _defaultOperatorsArray = defaultOperators; for (uint256 i = 0; i < _defaultOperatorsArray.length; i++) { _defaultOperators[_defaultOperatorsArray[i]] = true; } // register interfaces _erc1820.setInterfaceImplementer( address(this), keccak256("ERC777Token"), address(this) ); _erc1820.setInterfaceImplementer( address(this), keccak256("ERC20Token"), address(this) ); } /** * @dev See `IERC777.name`. */ function name() public view returns (string memory) { return _name; } /** * @dev See `IERC777.symbol`. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev See `ERC20Detailed.decimals`. * * Always returns 18, as per the * [ERC777 EIP](https://eips.ethereum.org/EIPS/eip-777#backward-compatibility). */ function decimals() public pure returns (uint8) { return 18; } /** * @dev See `IERC777.granularity`. * * This implementation always returns `1`. */ function granularity() public view returns (uint256) { return 1; } /** * @dev See `IERC777.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Returns the amount of tokens owned by an account (`tokenHolder`). */ function balanceOf(address tokenHolder) public view returns (uint256) { return _balances[tokenHolder]; } /** * @dev See `IERC777.send`. * * Also emits a `Transfer` event for ERC20 compatibility. */ function send(address recipient, uint256 amount, bytes calldata data) external { _send(msg.sender, msg.sender, recipient, amount, data, "", true); } /** * @dev See `IERC20.transfer`. * * Unlike `send`, `recipient` is _not_ required to implement the `tokensReceived` * interface if it is a contract. * * Also emits a `Sent` event. */ function transfer(address recipient, uint256 amount) external returns (bool) { require( recipient != address(0), "ERC777: transfer to the zero address" ); address from = msg.sender; _callTokensToSend(from, from, recipient, amount, "", ""); _move(from, from, recipient, amount, "", ""); _callTokensReceived(from, from, recipient, amount, "", "", false); return true; } /** * @dev See `IERC777.burn`. * * Also emits a `Transfer` event for ERC20 compatibility. */ function burn(uint256 amount, bytes calldata data) external { _burn(msg.sender, msg.sender, amount, data, ""); } /** * @dev See `IERC777.isOperatorFor`. */ function isOperatorFor(address operator, address tokenHolder) public view returns (bool) { return operator == tokenHolder || (_defaultOperators[operator] && !_revokedDefaultOperators[tokenHolder][operator]) || _operators[tokenHolder][operator]; } /** * @dev See `IERC777.authorizeOperator`. */ function authorizeOperator(address operator) external { require(msg.sender != operator, "ERC777: authorizing self as operator"); if (_defaultOperators[operator]) { delete _revokedDefaultOperators[msg.sender][operator]; } else { _operators[msg.sender][operator] = true; } emit AuthorizedOperator(operator, msg.sender); } /** * @dev See `IERC777.revokeOperator`. */ function revokeOperator(address operator) external { require(operator != msg.sender, "ERC777: revoking self as operator"); if (_defaultOperators[operator]) { _revokedDefaultOperators[msg.sender][operator] = true; } else { delete _operators[msg.sender][operator]; } emit RevokedOperator(operator, msg.sender); } /** * @dev See `IERC777.defaultOperators`. */ function defaultOperators() public view returns (address[] memory) { return _defaultOperatorsArray; } /** * @dev See `IERC777.operatorSend`. * * Emits `Sent` and `Transfer` events. */ function operatorSend( address sender, address recipient, uint256 amount, bytes calldata data, bytes calldata operatorData ) external { require( isOperatorFor(msg.sender, sender), "ERC777: caller is not an operator for holder" ); _send(msg.sender, sender, recipient, amount, data, operatorData, true); } /** * @dev See `IERC777.operatorBurn`. * * Emits `Sent` and `Transfer` events. */ function operatorBurn( address account, uint256 amount, bytes calldata data, bytes calldata operatorData ) external { require( isOperatorFor(msg.sender, account), "ERC777: caller is not an operator for holder" ); _burn(msg.sender, account, amount, data, operatorData); } /** * @dev See `IERC20.allowance`. * * Note that operator and allowance concepts are orthogonal: operators may * not have allowance, and accounts with allowance may not be operators * themselves. */ function allowance(address holder, address spender) public view returns (uint256) { return _allowances[holder][spender]; } /** * @dev See `IERC20.approve`. * * Note that accounts cannot have allowance issued by their operators. */ function approve(address spender, uint256 value) external returns (bool) { address holder = msg.sender; _approve(holder, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Note that operator and allowance concepts are orthogonal: operators cannot * call `transferFrom` (unless they have allowance), and accounts with * allowance cannot call `operatorSend` (unless they are operators). * * Emits `Sent` and `Transfer` events. */ function transferFrom(address holder, address recipient, uint256 amount) external returns (bool) { require( recipient != address(0), "ERC777: transfer to the zero address" ); require(holder != address(0), "ERC777: transfer from the zero address"); address spender = msg.sender; _callTokensToSend(spender, holder, recipient, amount, "", ""); _move(spender, holder, recipient, amount, "", ""); _approve(holder, spender, _allowances[holder][spender].sub(amount)); _callTokensReceived(spender, holder, recipient, amount, "", "", false); return true; } /** * @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * If a send hook is registered for `raccount`, the corresponding function * will be called with `operator`, `data` and `operatorData`. * * See `IERC777Sender` and `IERC777Recipient`. * * Emits `Sent` and `Transfer` events. * * Requirements * * - `account` cannot be the zero address. * - if `account` is a contract, it must implement the `tokensReceived` * interface. */ function _mint( address operator, address account, uint256 amount, bytes memory userData, bytes memory operatorData ) internal { require(account != address(0), "ERC777: mint to the zero address"); // Update state variables _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); _callTokensReceived( operator, address(0), account, amount, userData, operatorData, true ); emit Minted(operator, account, amount, userData, operatorData); emit Transfer(address(0), account, amount); } /** * @dev Send tokens * @param operator address operator requesting the transfer * @param from address token holder address * @param to address recipient address * @param amount uint256 amount of tokens to transfer * @param userData bytes extra information provided by the token holder (if any) * @param operatorData bytes extra information provided by the operator (if any) * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient */ function _send( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData, bool requireReceptionAck ) private { require(from != address(0), "ERC777: send from the zero address"); require(to != address(0), "ERC777: send to the zero address"); _callTokensToSend(operator, from, to, amount, userData, operatorData); _move(operator, from, to, amount, userData, operatorData); _callTokensReceived( operator, from, to, amount, userData, operatorData, requireReceptionAck ); } /** * @dev Burn tokens * @param operator address operator requesting the operation * @param from address token holder address * @param amount uint256 amount of tokens to burn * @param data bytes extra information provided by the token holder * @param operatorData bytes extra information provided by the operator (if any) */ function _burn( address operator, address from, uint256 amount, bytes memory data, bytes memory operatorData ) private { require(from != address(0), "ERC777: burn from the zero address"); _callTokensToSend( operator, from, address(0), amount, data, operatorData ); // Update state variables _totalSupply = _totalSupply.sub(amount); _balances[from] = _balances[from].sub(amount); emit Burned(operator, from, amount, data, operatorData); emit Transfer(from, address(0), amount); } function _move( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData ) private { _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(amount); emit Sent(operator, from, to, amount, userData, operatorData); emit Transfer(from, to, amount); } function _approve(address holder, address spender, uint256 value) private { // TODO: restore this require statement if this function becomes internal, or is called at a new callsite. It is // currently unnecessary. //require(holder != address(0), "ERC777: approve from the zero address"); require(spender != address(0), "ERC777: approve to the zero address"); _allowances[holder][spender] = value; emit Approval(holder, spender, value); } /** * @dev Call from.tokensToSend() if the interface is registered * @param operator address operator requesting the transfer * @param from address token holder address * @param to address recipient address * @param amount uint256 amount of tokens to transfer * @param userData bytes extra information provided by the token holder (if any) * @param operatorData bytes extra information provided by the operator (if any) */ function _callTokensToSend( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData ) private { address implementer = _erc1820.getInterfaceImplementer( from, TOKENS_SENDER_INTERFACE_HASH ); if (implementer != address(0)) { IERC777Sender(implementer).tokensToSend( operator, from, to, amount, userData, operatorData ); } } /** * @dev Call to.tokensReceived() if the interface is registered. Reverts if the recipient is a contract but * tokensReceived() was not registered for the recipient * @param operator address operator requesting the transfer * @param from address token holder address * @param to address recipient address * @param amount uint256 amount of tokens to transfer * @param userData bytes extra information provided by the token holder (if any) * @param operatorData bytes extra information provided by the operator (if any) * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient */ function _callTokensReceived( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData, bool requireReceptionAck ) private { address implementer = _erc1820.getInterfaceImplementer( to, TOKENS_RECIPIENT_INTERFACE_HASH ); if (implementer != address(0)) { IERC777Recipient(implementer).tokensReceived( operator, from, to, amount, userData, operatorData ); } else if (requireReceptionAck) { require( !to.isContract(), "ERC777: token recipient contract has no implementer for ERC777TokensRecipient" ); } } } contract OwnToken is ERC777 { constructor(address[] memory defaultOperators) public ERC777("GMGame Network", "GMG", defaultOperators) { uint256 initialSupply = 1000000000 * 10**18; _mint(msg.sender, msg.sender, initialSupply, "", ""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"defaultOperators","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"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":"holder","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":"pure","type":"function"},{"constant":true,"inputs":[],"name":"granularity","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":"data","type":"bytes"},{"name":"operatorData","type":"bytes"}],"name":"operatorSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenHolder","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"operator","type":"address"}],"name":"authorizeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"}],"name":"send","outputs":[],"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":"operator","type":"address"},{"name":"tokenHolder","type":"address"}],"name":"isOperatorFor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"holder","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"operator","type":"address"}],"name":"revokeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"},{"name":"operatorData","type":"bytes"}],"name":"operatorBurn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"defaultOperators","type":"address[]"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"},{"indexed":false,"name":"operatorData","type":"bytes"}],"name":"Sent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"},{"indexed":false,"name":"operatorData","type":"bytes"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"},{"indexed":false,"name":"operatorData","type":"bytes"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"tokenHolder","type":"address"}],"name":"AuthorizedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"tokenHolder","type":"address"}],"name":"RevokedOperator","type":"event"}]
Contract Creation Code
608060405260008054600160a060020a031916731820a4b7618bde71dce8cdc73aab6c95905fad241790553480156200003757600080fd5b506040516200278238038062002782833981018060405260208110156200005d57600080fd5b8101908080516401000000008111156200007657600080fd5b820160208101848111156200008a57600080fd5b8151856020820283011164010000000082111715620000a857600080fd5b5050604080518082018252600e81527f474d47616d65204e6574776f726b0000000000000000000000000000000000006020808301918252835180850190945260038085527f474d47000000000000000000000000000000000000000000000000000000000091850191909152825194975091955091935085926200012e92906200098a565b508151620001449060049060208501906200098a565b5080516200015a90600590602084019062000a0f565b5060005b600554811015620001bc576001600660006005848154811015156200017f57fe5b600091825260208083209190910154600160a060020a031683528201929092526040019020805460ff19169115159190911790556001016200015e565b5060008054604080517f455243373737546f6b656e0000000000000000000000000000000000000000008152815190819003600b0181207f29965a1d0000000000000000000000000000000000000000000000000000000082523060048301819052602483019190915260448201529051600160a060020a03909216926329965a1d9260648084019382900301818387803b1580156200025b57600080fd5b505af115801562000270573d6000803e3d6000fd5b505060008054604080517f4552433230546f6b656e000000000000000000000000000000000000000000008152815190819003600a0181207f29965a1d0000000000000000000000000000000000000000000000000000000082523060048301819052602483019190915260448201529051600160a060020a0390921694506329965a1d9350606480820193929182900301818387803b1580156200031457600080fd5b505af115801562000329573d6000803e3d6000fd5b5050505050505060006b033b2e3c9fd0803ce800000090506200037f3333836020604051908101604052806000815250602060405190810160405280600081525062000387640100000000026401000000009004565b505062000abc565b600160a060020a0384161515620003ff57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6002546200041c908464010000000062001a696200060782021704565b600255600160a060020a03841660009081526001602052604090205462000452908464010000000062001a696200060782021704565b6001600086600160a060020a0316600160a060020a03168152602001908152602001600020819055506200049d85600086868686600162000683640100000000026401000000009004565b83600160a060020a031685600160a060020a03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156200051e57818101518382015260200162000504565b50505050905090810190601f1680156200054c5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156200058157818101518382015260200162000567565b50505050905090810190601f168015620005af5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a3604080518481529051600160a060020a038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6000828201838110156200067c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008054604080517faabbb8ca000000000000000000000000000000000000000000000000000000008152600160a060020a0389811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151919092169163aabbb8ca916044808301926020929190829003018186803b1580156200071157600080fd5b505afa15801562000726573d6000803e3d6000fd5b505050506040513d60208110156200073d57600080fd5b50519050600160a060020a03811615620008f75780600160a060020a03166223de298989898989896040518763ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018087600160a060020a0316600160a060020a0316815260200186600160a060020a0316600160a060020a0316815260200185600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156200082157818101518382015260200162000807565b50505050905090810190601f1680156200084f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015620008845781810151838201526020016200086a565b50505050905090810190601f168015620008b25780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015620008d857600080fd5b505af1158015620008ed573d6000803e3d6000fd5b5050505062000978565b8115620009785762000920600160a060020a03871664010000000062001ac66200098282021704565b1562000978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d81526020018062002735604d913960600191505060405180910390fd5b5050505050505050565b6000903b1190565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620009cd57805160ff1916838001178555620009fd565b82800160010185558215620009fd579182015b82811115620009fd578251825591602001919060010190620009e0565b5062000a0b92915062000a75565b5090565b82805482825590600052602060002090810192821562000a67579160200282015b8281111562000a675782518254600160a060020a031916600160a060020a0390911617825560209092019160019091019062000a30565b5062000a0b92915062000a95565b62000a9291905b8082111562000a0b576000815560010162000a7c565b90565b62000a9291905b8082111562000a0b578054600160a060020a031916815560010162000a9c565b611c698062000acc6000396000f3fe608060405234801561001057600080fd5b506004361061011a5760003560e060020a90048063959b8c3f116100a6578063d95b637111610075578063d95b637114610493578063dd62ed3e146104c1578063fad8b32a146104ef578063fc673c4f14610515578063fe9d9303146105ec5761011a565b8063959b8c3f146103b457806395d89b41146103da5780639bd9bbc6146103e2578063a9059cbb146104675761011a565b806323b872dd116100ed57806323b872dd1461024e578063313ce56714610284578063556f0dc7146102a257806362ad1b83146102aa57806370a082311461038e5761011a565b806306e485381461011f57806306fdde0314610177578063095ea7b3146101f457806318160ddd14610234575b600080fd5b610127610663565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561016357818101518382015260200161014b565b505050509050019250505060405180910390f35b61017f6106c5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b95781810151838201526020016101a1565b50505050905090810190601f1680156101e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102206004803603604081101561020a57600080fd5b50600160a060020a038135169060200135610752565b604080519115158252519081900360200190f35b61023c61076a565b60408051918252519081900360200190f35b6102206004803603606081101561026457600080fd5b50600160a060020a03813581169160208101359091169060400135610770565b61028c6108e5565b6040805160ff9092168252519081900360200190f35b61023c6108ea565b61038c600480360360a08110156102c057600080fd5b600160a060020a038235811692602081013590911691604082013591908101906080810160608201356401000000008111156102fb57600080fd5b82018360208201111561030d57600080fd5b8035906020019184600183028401116401000000008311171561032f57600080fd5b91939092909160208101903564010000000081111561034d57600080fd5b82018360208201111561035f57600080fd5b8035906020019184600183028401116401000000008311171561038157600080fd5b5090925090506108ef565b005b61023c600480360360208110156103a457600080fd5b5035600160a060020a03166109bc565b61038c600480360360208110156103ca57600080fd5b5035600160a060020a03166109d7565b61017f610adb565b61038c600480360360608110156103f857600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561042857600080fd5b82018360208201111561043a57600080fd5b8035906020019184600183028401116401000000008311171561045c57600080fd5b509092509050610b3c565b6102206004803603604081101561047d57600080fd5b50600160a060020a038135169060200135610b96565b610220600480360360408110156104a957600080fd5b50600160a060020a0381358116916020013516610c73565b61023c600480360360408110156104d757600080fd5b50600160a060020a0381358116916020013516610d15565b61038c6004803603602081101561050557600080fd5b5035600160a060020a0316610d40565b61038c6004803603608081101561052b57600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561055b57600080fd5b82018360208201111561056d57600080fd5b8035906020019184600183028401116401000000008311171561058f57600080fd5b9193909290916020810190356401000000008111156105ad57600080fd5b8201836020820111156105bf57600080fd5b803590602001918460018302840111640100000000831117156105e157600080fd5b509092509050610e44565b61038c6004803603604081101561060257600080fd5b8135919081019060408101602082013564010000000081111561062457600080fd5b82018360208201111561063657600080fd5b8035906020019184600183028401116401000000008311171561065857600080fd5b509092509050610f0c565b606060058054806020026020016040519081016040528092919081815260200182805480156106bb57602002820191906000526020600020905b8154600160a060020a0316815260019091019060200180831161069d575b5050505050905090565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106bb5780601f10610726576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161073457509395945050505050565b600033610760818585610f61565b5060019392505050565b60025490565b6000600160a060020a03831615156107bc5760405160e560020a62461bcd028152600401808060200182810382526024815260200180611ba56024913960400191505060405180910390fd5b600160a060020a03841615156108065760405160e560020a62461bcd028152600401808060200182810382526026815260200180611bf56026913960400191505060405180910390fd5b6000339050610839818686866020604051908101604052806000815250602060405190810160405280600081525061100d565b6108678186868660206040519081016040528060008152506020604051908101604052806000815250611260565b600160a060020a038086166000908152600960209081526040808320938516835292905220546108aa90869083906108a5908763ffffffff61146016565b610f61565b6108da818686866020604051908101604052806000815250602060405190810160405280600081525060006114c0565b506001949350505050565b601290565b600190565b6108f93388610c73565b15156109395760405160e560020a62461bcd02815260040180806020018281038252602c815260200180611bc9602c913960400191505060405180910390fd5b6109b33388888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a91508990819084018382808284376000920191909152506001925061176f915050565b50505050505050565b600160a060020a031660009081526001602052604090205490565b33600160a060020a0382161415610a225760405160e560020a62461bcd028152600401808060200182810382526024815260200180611b136024913960400191505060405180910390fd5b600160a060020a03811660009081526006602052604090205460ff1615610a7357336000908152600860209081526040808320600160a060020a03851684529091529020805460ff19169055610aa2565b336000908152600760209081526040808320600160a060020a03851684529091529020805460ff191660011790555b6040513390600160a060020a038316907ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f990600090a350565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106bb5780601f10610726576101008083540402835291602001916106bb565b610b903333868686868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250604080516020810190915290815292506001915061176f9050565b50505050565b6000600160a060020a0383161515610be25760405160e560020a62461bcd028152600401808060200182810382526024815260200180611ba56024913960400191505060405180910390fd5b6000339050610c15818286866020604051908101604052806000815250602060405190810160405280600081525061100d565b610c438182868660206040519081016040528060008152506020604051908101604052806000815250611260565b610760818286866020604051908101604052806000815250602060405190810160405280600081525060006114c0565b600081600160a060020a031683600160a060020a03161480610cde5750600160a060020a03831660009081526006602052604090205460ff168015610cde5750600160a060020a0380831660009081526008602090815260408083209387168352929052205460ff16155b80610d0e5750600160a060020a0380831660009081526007602090815260408083209387168352929052205460ff165b9392505050565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b600160a060020a038116331415610d8b5760405160e560020a62461bcd028152600401808060200182810382526021815260200180611b376021913960400191505060405180910390fd5b600160a060020a03811660009081526006602052604090205460ff1615610ddf57336000908152600860209081526040808320600160a060020a03851684529091529020805460ff19166001179055610e0b565b336000908152600760209081526040808320600160a060020a03851684529091529020805460ff191690555b6040513390600160a060020a038316907f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa190600090a350565b610e4e3387610c73565b1515610e8e5760405160e560020a62461bcd02815260040180806020018281038252602c815260200180611bc9602c913960400191505060405180910390fd5b610f0433878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b01819004810282018101909252898152925089915088908190840183828082843760009201919091525061184492505050565b505050505050565b610f5c33338585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060408051602081019091529081529250611844915050565b505050565b600160a060020a0382161515610fab5760405160e560020a62461bcd028152600401808060200182810382526023815260200180611c1b6023913960400191505060405180910390fd5b600160a060020a03808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008054604080517faabbb8ca000000000000000000000000000000000000000000000000000000008152600160a060020a0389811660048301527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248301529151919092169163aabbb8ca916044808301926020929190829003018186803b15801561109a57600080fd5b505afa1580156110ae573d6000803e3d6000fd5b505050506040513d60208110156110c457600080fd5b50519050600160a060020a038116156109b35780600160a060020a03166375ab97828888888888886040518763ffffffff1660e060020a0281526004018087600160a060020a0316600160a060020a0316815260200186600160a060020a0316600160a060020a0316815260200185600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561118d578181015183820152602001611175565b50505050905090810190601f1680156111ba5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156111ed5781810151838201526020016111d5565b50505050905090810190601f16801561121a5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b15801561123f57600080fd5b505af1158015611253573d6000803e3d6000fd5b5050505050505050505050565b600160a060020a038516600090815260016020526040902054611289908463ffffffff61146016565b600160a060020a0380871660009081526001602052604080822093909355908616815220546112be908463ffffffff611a6916565b6001600086600160a060020a0316600160a060020a031681526020019081526020016000208190555083600160a060020a031685600160a060020a031687600160a060020a03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611370578181015183820152602001611358565b50505050905090810190601f16801561139d5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156113d05781810151838201526020016113b8565b50505050905090810190601f1680156113fd5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a483600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b6000828211156114ba576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008054604080517faabbb8ca000000000000000000000000000000000000000000000000000000008152600160a060020a0389811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151919092169163aabbb8ca916044808301926020929190829003018186803b15801561154d57600080fd5b505afa158015611561573d6000803e3d6000fd5b505050506040513d602081101561157757600080fd5b50519050600160a060020a0381161561170e5780600160a060020a03166223de298989898989896040518763ffffffff1660e060020a0281526004018087600160a060020a0316600160a060020a0316815260200186600160a060020a0316600160a060020a0316815260200185600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561163f578181015183820152602001611627565b50505050905090810190601f16801561166c5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561169f578181015183820152602001611687565b50505050905090810190601f1680156116cc5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156116f157600080fd5b505af1158015611705573d6000803e3d6000fd5b50505050611765565b81156117655761172686600160a060020a0316611ac6565b156117655760405160e560020a62461bcd02815260040180806020018281038252604d815260200180611b58604d913960600191505060405180910390fd5b5050505050505050565b600160a060020a03861615156117b95760405160e560020a62461bcd028152600401808060200182810382526022815260200180611acf6022913960400191505060405180910390fd5b600160a060020a0385161515611819576040805160e560020a62461bcd02815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61182787878787878761100d565b611835878787878787611260565b6109b3878787878787876114c0565b600160a060020a038416151561188e5760405160e560020a62461bcd028152600401808060200182810382526022815260200180611af16022913960400191505060405180910390fd5b61189d8585600086868661100d565b6002546118b0908463ffffffff61146016565b600255600160a060020a0384166000908152600160205260409020546118dc908463ffffffff61146016565b6001600086600160a060020a0316600160a060020a031681526020019081526020016000208190555083600160a060020a031685600160a060020a03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561198457818101518382015260200161196c565b50505050905090810190601f1680156119b15780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156119e45781810151838201526020016119cc565b50505050905090810190601f168015611a115780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a3604080518481529051600091600160a060020a038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b600082820183811015610d0e576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000903b119056fe4552433737373a2073656e642066726f6d20746865207a65726f20616464726573734552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a20617070726f766520746f20746865207a65726f2061646472657373a165627a7a72305820d33150e11a7545421d71308b3df564c6d0a8f3faae05d716aff0c84dbd7602b700294552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e7400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011a5760003560e060020a90048063959b8c3f116100a6578063d95b637111610075578063d95b637114610493578063dd62ed3e146104c1578063fad8b32a146104ef578063fc673c4f14610515578063fe9d9303146105ec5761011a565b8063959b8c3f146103b457806395d89b41146103da5780639bd9bbc6146103e2578063a9059cbb146104675761011a565b806323b872dd116100ed57806323b872dd1461024e578063313ce56714610284578063556f0dc7146102a257806362ad1b83146102aa57806370a082311461038e5761011a565b806306e485381461011f57806306fdde0314610177578063095ea7b3146101f457806318160ddd14610234575b600080fd5b610127610663565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561016357818101518382015260200161014b565b505050509050019250505060405180910390f35b61017f6106c5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b95781810151838201526020016101a1565b50505050905090810190601f1680156101e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102206004803603604081101561020a57600080fd5b50600160a060020a038135169060200135610752565b604080519115158252519081900360200190f35b61023c61076a565b60408051918252519081900360200190f35b6102206004803603606081101561026457600080fd5b50600160a060020a03813581169160208101359091169060400135610770565b61028c6108e5565b6040805160ff9092168252519081900360200190f35b61023c6108ea565b61038c600480360360a08110156102c057600080fd5b600160a060020a038235811692602081013590911691604082013591908101906080810160608201356401000000008111156102fb57600080fd5b82018360208201111561030d57600080fd5b8035906020019184600183028401116401000000008311171561032f57600080fd5b91939092909160208101903564010000000081111561034d57600080fd5b82018360208201111561035f57600080fd5b8035906020019184600183028401116401000000008311171561038157600080fd5b5090925090506108ef565b005b61023c600480360360208110156103a457600080fd5b5035600160a060020a03166109bc565b61038c600480360360208110156103ca57600080fd5b5035600160a060020a03166109d7565b61017f610adb565b61038c600480360360608110156103f857600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561042857600080fd5b82018360208201111561043a57600080fd5b8035906020019184600183028401116401000000008311171561045c57600080fd5b509092509050610b3c565b6102206004803603604081101561047d57600080fd5b50600160a060020a038135169060200135610b96565b610220600480360360408110156104a957600080fd5b50600160a060020a0381358116916020013516610c73565b61023c600480360360408110156104d757600080fd5b50600160a060020a0381358116916020013516610d15565b61038c6004803603602081101561050557600080fd5b5035600160a060020a0316610d40565b61038c6004803603608081101561052b57600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561055b57600080fd5b82018360208201111561056d57600080fd5b8035906020019184600183028401116401000000008311171561058f57600080fd5b9193909290916020810190356401000000008111156105ad57600080fd5b8201836020820111156105bf57600080fd5b803590602001918460018302840111640100000000831117156105e157600080fd5b509092509050610e44565b61038c6004803603604081101561060257600080fd5b8135919081019060408101602082013564010000000081111561062457600080fd5b82018360208201111561063657600080fd5b8035906020019184600183028401116401000000008311171561065857600080fd5b509092509050610f0c565b606060058054806020026020016040519081016040528092919081815260200182805480156106bb57602002820191906000526020600020905b8154600160a060020a0316815260019091019060200180831161069d575b5050505050905090565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106bb5780601f10610726576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161073457509395945050505050565b600033610760818585610f61565b5060019392505050565b60025490565b6000600160a060020a03831615156107bc5760405160e560020a62461bcd028152600401808060200182810382526024815260200180611ba56024913960400191505060405180910390fd5b600160a060020a03841615156108065760405160e560020a62461bcd028152600401808060200182810382526026815260200180611bf56026913960400191505060405180910390fd5b6000339050610839818686866020604051908101604052806000815250602060405190810160405280600081525061100d565b6108678186868660206040519081016040528060008152506020604051908101604052806000815250611260565b600160a060020a038086166000908152600960209081526040808320938516835292905220546108aa90869083906108a5908763ffffffff61146016565b610f61565b6108da818686866020604051908101604052806000815250602060405190810160405280600081525060006114c0565b506001949350505050565b601290565b600190565b6108f93388610c73565b15156109395760405160e560020a62461bcd02815260040180806020018281038252602c815260200180611bc9602c913960400191505060405180910390fd5b6109b33388888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a91508990819084018382808284376000920191909152506001925061176f915050565b50505050505050565b600160a060020a031660009081526001602052604090205490565b33600160a060020a0382161415610a225760405160e560020a62461bcd028152600401808060200182810382526024815260200180611b136024913960400191505060405180910390fd5b600160a060020a03811660009081526006602052604090205460ff1615610a7357336000908152600860209081526040808320600160a060020a03851684529091529020805460ff19169055610aa2565b336000908152600760209081526040808320600160a060020a03851684529091529020805460ff191660011790555b6040513390600160a060020a038316907ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f990600090a350565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106bb5780601f10610726576101008083540402835291602001916106bb565b610b903333868686868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250604080516020810190915290815292506001915061176f9050565b50505050565b6000600160a060020a0383161515610be25760405160e560020a62461bcd028152600401808060200182810382526024815260200180611ba56024913960400191505060405180910390fd5b6000339050610c15818286866020604051908101604052806000815250602060405190810160405280600081525061100d565b610c438182868660206040519081016040528060008152506020604051908101604052806000815250611260565b610760818286866020604051908101604052806000815250602060405190810160405280600081525060006114c0565b600081600160a060020a031683600160a060020a03161480610cde5750600160a060020a03831660009081526006602052604090205460ff168015610cde5750600160a060020a0380831660009081526008602090815260408083209387168352929052205460ff16155b80610d0e5750600160a060020a0380831660009081526007602090815260408083209387168352929052205460ff165b9392505050565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b600160a060020a038116331415610d8b5760405160e560020a62461bcd028152600401808060200182810382526021815260200180611b376021913960400191505060405180910390fd5b600160a060020a03811660009081526006602052604090205460ff1615610ddf57336000908152600860209081526040808320600160a060020a03851684529091529020805460ff19166001179055610e0b565b336000908152600760209081526040808320600160a060020a03851684529091529020805460ff191690555b6040513390600160a060020a038316907f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa190600090a350565b610e4e3387610c73565b1515610e8e5760405160e560020a62461bcd02815260040180806020018281038252602c815260200180611bc9602c913960400191505060405180910390fd5b610f0433878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b01819004810282018101909252898152925089915088908190840183828082843760009201919091525061184492505050565b505050505050565b610f5c33338585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060408051602081019091529081529250611844915050565b505050565b600160a060020a0382161515610fab5760405160e560020a62461bcd028152600401808060200182810382526023815260200180611c1b6023913960400191505060405180910390fd5b600160a060020a03808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008054604080517faabbb8ca000000000000000000000000000000000000000000000000000000008152600160a060020a0389811660048301527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248301529151919092169163aabbb8ca916044808301926020929190829003018186803b15801561109a57600080fd5b505afa1580156110ae573d6000803e3d6000fd5b505050506040513d60208110156110c457600080fd5b50519050600160a060020a038116156109b35780600160a060020a03166375ab97828888888888886040518763ffffffff1660e060020a0281526004018087600160a060020a0316600160a060020a0316815260200186600160a060020a0316600160a060020a0316815260200185600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561118d578181015183820152602001611175565b50505050905090810190601f1680156111ba5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156111ed5781810151838201526020016111d5565b50505050905090810190601f16801561121a5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b15801561123f57600080fd5b505af1158015611253573d6000803e3d6000fd5b5050505050505050505050565b600160a060020a038516600090815260016020526040902054611289908463ffffffff61146016565b600160a060020a0380871660009081526001602052604080822093909355908616815220546112be908463ffffffff611a6916565b6001600086600160a060020a0316600160a060020a031681526020019081526020016000208190555083600160a060020a031685600160a060020a031687600160a060020a03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611370578181015183820152602001611358565b50505050905090810190601f16801561139d5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156113d05781810151838201526020016113b8565b50505050905090810190601f1680156113fd5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a483600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b6000828211156114ba576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008054604080517faabbb8ca000000000000000000000000000000000000000000000000000000008152600160a060020a0389811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151919092169163aabbb8ca916044808301926020929190829003018186803b15801561154d57600080fd5b505afa158015611561573d6000803e3d6000fd5b505050506040513d602081101561157757600080fd5b50519050600160a060020a0381161561170e5780600160a060020a03166223de298989898989896040518763ffffffff1660e060020a0281526004018087600160a060020a0316600160a060020a0316815260200186600160a060020a0316600160a060020a0316815260200185600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561163f578181015183820152602001611627565b50505050905090810190601f16801561166c5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561169f578181015183820152602001611687565b50505050905090810190601f1680156116cc5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156116f157600080fd5b505af1158015611705573d6000803e3d6000fd5b50505050611765565b81156117655761172686600160a060020a0316611ac6565b156117655760405160e560020a62461bcd02815260040180806020018281038252604d815260200180611b58604d913960600191505060405180910390fd5b5050505050505050565b600160a060020a03861615156117b95760405160e560020a62461bcd028152600401808060200182810382526022815260200180611acf6022913960400191505060405180910390fd5b600160a060020a0385161515611819576040805160e560020a62461bcd02815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61182787878787878761100d565b611835878787878787611260565b6109b3878787878787876114c0565b600160a060020a038416151561188e5760405160e560020a62461bcd028152600401808060200182810382526022815260200180611af16022913960400191505060405180910390fd5b61189d8585600086868661100d565b6002546118b0908463ffffffff61146016565b600255600160a060020a0384166000908152600160205260409020546118dc908463ffffffff61146016565b6001600086600160a060020a0316600160a060020a031681526020019081526020016000208190555083600160a060020a031685600160a060020a03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561198457818101518382015260200161196c565b50505050905090810190601f1680156119b15780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156119e45781810151838201526020016119cc565b50505050905090810190601f168015611a115780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a3604080518481529051600091600160a060020a038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b600082820183811015610d0e576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000903b119056fe4552433737373a2073656e642066726f6d20746865207a65726f20616464726573734552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a20617070726f766520746f20746865207a65726f2061646472657373a165627a7a72305820d33150e11a7545421d71308b3df564c6d0a8f3faae05d716aff0c84dbd7602b70029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
38429:290:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38429:290:0;;;;;;;;-1:-1:-1;;;38429:290:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28166:115;;;:::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;28166:115:0;;;;;;;;;;;;;;;;;24365: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;24365:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29860:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29860:184:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25140:91;;;:::i;:::-;;;;;;;;;;;;;;;;30403:692;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30403:692:0;;;;;;;;;;;;;;;;;:::i;24796:76::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24994:80;;;:::i;28400:411::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;28400:411:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;28400:411:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28400:411: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;28400:411:0;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;28400:411:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28400:411: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;-1:-1;28400:411:0;;-1:-1:-1;28400:411:0;-1:-1:-1;28400:411:0;:::i;:::-;;25336:118;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25336:118:0;-1:-1:-1;;;;;25336:118:0;;:::i;27237:399::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27237:399:0;-1:-1:-1;;;;;27237:399:0;;:::i;24509:87::-;;;:::i;25584:176::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;25584:176:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;25584:176:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25584:176: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;-1:-1;25584:176:0;;-1:-1:-1;25584:176:0;-1:-1:-1;25584:176:0;:::i;25999:494::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25999:494:0;;;;;;;;:::i;26817:348::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26817:348:0;;;;;;;;;;:::i;29547:168::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29547:168:0;;;;;;;;;;:::i;27705:390::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27705:390:0;-1:-1:-1;;;;;27705:390:0;;:::i;28930:369::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;28930:369:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;28930:369:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28930:369: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;28930:369:0;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;28930:369:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28930:369: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;-1:-1;28930:369:0;;-1:-1:-1;28930:369:0;-1:-1:-1;28930:369:0;:::i;26623:126::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26623:126:0;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;26623:126:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;26623:126: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;-1:-1;26623:126:0;;-1:-1:-1;26623:126:0;-1:-1:-1;26623:126:0;:::i;28166:115::-;28215:16;28251:22;28244:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28244:29:0;;;;;;;;;;;;;;;;;;;;;;;28166:115;:::o;24365:83::-;24435:5;24428:12;;;;;;;;-1:-1:-1;;24428:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24402:13;;24428:12;;24435:5;;24428:12;;24435:5;24428:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24428:12:0;;24365:83;-1:-1:-1;;;;;24365:83:0:o;29860:184::-;29927:4;29961:10;29982:32;29961:10;29999:7;30008:5;29982:8;:32::i;:::-;-1:-1:-1;30032:4:0;;29860:184;-1:-1:-1;;;29860:184:0:o;25140:91::-;25211:12;;25140:91;:::o;30403:692::-;30512:4;-1:-1:-1;;;;;30556:23:0;;;;30534:109;;;;-1:-1:-1;;;;;30534:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30662:20:0;;;;30654:71;;;;-1:-1:-1;;;;;30654:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30738:15;30756:10;30738:28;;30779:61;30797:7;30806:6;30814:9;30825:6;30779:61;;;;;;;;;;;;;;;;;;;;;;;;;;:17;:61::i;:::-;30853:49;30859:7;30868:6;30876:9;30887:6;30853:49;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:49::i;:::-;-1:-1:-1;;;;;30939:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;30913:67;;30922:6;;30930:7;;30939:40;;30972:6;30939:40;:32;:40;:::i;:::-;30913:8;:67::i;:::-;30993:70;31013:7;31022:6;31030:9;31041:6;30993:70;;;;;;;;;;;;;;;;;;;;;;;;;;31057:5;30993:19;:70::i;:::-;-1:-1:-1;31083:4:0;;30403:692;-1:-1:-1;;;;30403:692:0:o;24796:76::-;24862:2;24796:76;:::o;24994:80::-;25065:1;24994:80;:::o;28400:411::-;28617:33;28631:10;28643:6;28617:13;:33::i;:::-;28595:127;;;;;;-1:-1:-1;;;;;28595:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28733:70;28739:10;28751:6;28759:9;28770:6;28778:4;;28733:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;28733:70:0;;;;137:4:-1;28733:70:0;;;;;;;;;;;;;;;;;;-1:-1:-1;28784:12:0;;-1:-1:-1;28784:12:0;;;;28733:70;;28784:12;;;;28733:70;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;28798:4:0;;-1:-1:-1;28733:5:0;;-1:-1:-1;;28733:70:0:i;:::-;28400:411;;;;;;;:::o;25336:118::-;-1:-1:-1;;;;;25424:22:0;25397:7;25424:22;;;:9;:22;;;;;;;25336:118::o;27237:399::-;27310:10;-1:-1:-1;;;;;27310:22:0;;;;27302:71;;;;-1:-1:-1;;;;;27302:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27390:27:0;;;;;;:17;:27;;;;;;;;27386:185;;;27466:10;27441:36;;;;:24;:36;;;;;;;;-1:-1:-1;;;;;27441:46:0;;;;;;;;;27434:53;;-1:-1:-1;;27434:53:0;;;27386:185;;;27531:10;27520:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;27520:32:0;;;;;;;;;:39;;-1:-1:-1;;27520:39:0;27555:4;27520:39;;;27386:185;27588:40;;27617:10;;-1:-1:-1;;;;;27588:40:0;;;;;;;;27237:399;:::o;24509:87::-;24581:7;24574:14;;;;;;;;-1:-1:-1;;24574:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24548:13;;24574:14;;24581:7;;24574:14;;24581:7;24574:14;;;;;;;;;;;;;;;;;;;;;;;;25584:176;25688:64;25694:10;25706;25718:9;25729:6;25737:4;;25688:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;-1:-1;25688:64:0;;;;;;;;;;;;;-1:-1:-1;25747:4:0;;-1:-1:-1;25688:5:0;;-1:-1:-1;25688:64:0:i;:::-;25584:176;;;;:::o;25999:494::-;26088:4;-1:-1:-1;;;;;26132:23:0;;;;26110:109;;;;-1:-1:-1;;;;;26110:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26232:12;26247:10;26232:25;;26270:56;26288:4;26294;26300:9;26311:6;26270:56;;;;;;;;;;;;;;;;;;;;;;;;;;:17;:56::i;:::-;26339:44;26345:4;26351;26357:9;26368:6;26339:44;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:44::i;:::-;26396:65;26416:4;26422;26428:9;26439:6;26396:65;;;;;;;;;;;;;;;;;;;;;;;;;;26455:5;26396:19;:65::i;26817:348::-;26927:4;26981:11;-1:-1:-1;;;;;26969:23:0;:8;-1:-1:-1;;;;;26969:23:0;;:138;;;-1:-1:-1;;;;;;27010:27:0;;;;;;:17;:27;;;;;;;;:96;;;;-1:-1:-1;;;;;;27059:37:0;;;;;;;:24;:37;;;;;;;;:47;;;;;;;;;;;;27058:48;27010:96;26969:188;;;-1:-1:-1;;;;;;27124:23:0;;;;;;;:10;:23;;;;;;;;:33;;;;;;;;;;;;26969:188;26949:208;26817:348;-1:-1:-1;;;26817:348:0:o;29547:168::-;-1:-1:-1;;;;;29679:19:0;;;29647:7;29679:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;29547:168::o;27705:390::-;-1:-1:-1;;;;;27775:22:0;;27787:10;27775:22;;27767:68;;;;-1:-1:-1;;;;;27767:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27852:27:0;;;;;;:17;:27;;;;;;;;27848:185;;;27921:10;27896:36;;;;:24;:36;;;;;;;;-1:-1:-1;;;;;27896:46:0;;;;;;;;;:53;;-1:-1:-1;;27896:53:0;27945:4;27896:53;;;27848:185;;;28000:10;27989:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;27989:32:0;;;;;;;;;27982:39;;-1:-1:-1;;27982:39:0;;;27848:185;28050:37;;28076:10;;-1:-1:-1;;;;;28050:37:0;;;;;;;;27705:390;:::o;28930:369::-;29120:34;29134:10;29146:7;29120:13;:34::i;:::-;29098:128;;;;;;-1:-1:-1;;;;;29098:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29237:54;29243:10;29255:7;29264:6;29272:4;;29237:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;29237:54:0;;;;137:4:-1;29237:54:0;;;;;;;;;;;;;;;;;;-1:-1:-1;29278:12:0;;-1:-1:-1;29278:12:0;;;;29237:54;;29278:12;;;;29237:54;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;29237:5:0;;-1:-1:-1;;;29237:54:0:i;:::-;28930:369;;;;;;:::o;26623:126::-;26694:47;26700:10;26712;26724:6;26732:4;;26694:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;-1:-1;26694:47:0;;;;;;;;;;;;;-1:-1:-1;26694:5:0;;-1:-1:-1;;26694:47:0:i;:::-;26623:126;;;:::o;35223:499::-;-1:-1:-1;;;;;35556:21:0;;;;35548:69;;;;-1:-1:-1;;;;;35548:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35630:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:36;;;35682:32;;;;;;;;;;;;;;;;;35223:499;;;:::o;36206:628::-;36423:19;36445:8;;:105;;;;;;-1:-1:-1;;;;;36445:105:0;;;;;;;22630:66;36445:105;;;;;;:8;;;;;:32;;:105;;;;;;;;;;;;;;:8;:105;;;5:2:-1;;;;30:1;27;20:12;5:2;36445:105:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36445:105:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36445:105:0;;-1:-1:-1;;;;;;36565:25:0;;;36561:266;;36621:11;-1:-1:-1;;;;;36607:39:0;;36665:8;36692:4;36715:2;36736:6;36761:8;36788:12;36607:208;;;;;-1:-1:-1;;;36607:208:0;;;;;;;-1:-1:-1;;;;;36607:208:0;-1:-1:-1;;;;;36607:208:0;;;;;;-1:-1:-1;;;;;36607:208:0;-1:-1:-1;;;;;36607:208:0;;;;;;-1:-1:-1;;;;;36607:208:0;-1:-1:-1;;;;;36607:208: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;36607:208:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36607:208: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;36607:208:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36607:208:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36607:208:0;;;;36206:628;;;;;;;:::o;34789:426::-;-1:-1:-1;;;;;35012:15:0;;;;;;:9;:15;;;;;;:27;;35032:6;35012:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;34994:15:0;;;;;;;:9;:15;;;;;;:45;;;;35066:13;;;;;;;:25;;35084:6;35066:25;:17;:25;:::i;:::-;35050:9;:13;35060:2;-1:-1:-1;;;;;35050:13:0;-1:-1:-1;;;;;35050:13:0;;;;;;;;;;;;:41;;;;35130:2;-1:-1:-1;;;;;35109:56:0;35124:4;-1:-1:-1;;;;;35109:56:0;35114:8;-1:-1:-1;;;;;35109:56:0;;35134:6;35142:8;35152:12;35109:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;35109:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35109:56: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;35109:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35196:2;-1:-1:-1;;;;;35181:26:0;35190:4;-1:-1:-1;;;;;35181:26:0;;35200:6;35181:26;;;;;;;;;;;;;;;;;;34789:426;;;;;;:::o;12947:184::-;13005:7;13033:6;;;;13025:49;;;;;-1:-1:-1;;;;;13025:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13097:5:0;;;12947:184::o;37536:884::-;37790:19;37812:8;;:106;;;;;;-1:-1:-1;;;;;37812:106:0;;;;;;;22807:66;37812:106;;;;;;:8;;;;;:32;;:106;;;;;;;;;;;;;;:8;:106;;;5:2:-1;;;;30:1;27;20:12;5:2;37812:106:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37812:106:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37812:106:0;;-1:-1:-1;;;;;;37933:25:0;;;37929:484;;37992:11;-1:-1:-1;;;;;37975:44:0;;38038:8;38065:4;38088:2;38109:6;38134:8;38161:12;37975:213;;;;;-1:-1:-1;;;37975:213:0;;;;;;;-1:-1:-1;;;;;37975:213:0;-1:-1:-1;;;;;37975:213:0;;;;;;-1:-1:-1;;;;;37975:213:0;-1:-1:-1;;;;;37975:213:0;;;;;;-1:-1:-1;;;;;37975:213:0;-1:-1:-1;;;;;37975:213: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;37975:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37975:213: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;37975:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37975:213:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37975:213:0;;;;37929:484;;;38210:19;38206:207;;;38273:15;:2;-1:-1:-1;;;;;38273:13:0;;:15::i;:::-;38272:16;38246:155;;;;-1:-1:-1;;;;;38246:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37536:884;;;;;;;;:::o;32968:744::-;-1:-1:-1;;;;;33216:18:0;;;;33208:65;;;;-1:-1:-1;;;;;33208:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33292:16:0;;;;33284:61;;;;;-1:-1:-1;;;;;33284:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33358:69;33376:8;33386:4;33392:2;33396:6;33404:8;33414:12;33358:17;:69::i;:::-;33440:57;33446:8;33456:4;33462:2;33466:6;33474:8;33484:12;33440:5;:57::i;:::-;33510:194;33544:8;33567:4;33586:2;33603:6;33624:8;33647:12;33674:19;33510;:194::i;34092:689::-;-1:-1:-1;;;;;34280:18:0;;;;34272:65;;;;-1:-1:-1;;;;;34272:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34350:162;34382:8;34405:4;34432:1;34449:6;34470:4;34489:12;34350:17;:162::i;:::-;34575:12;;:24;;34592:6;34575:24;:16;:24;:::i;:::-;34560:12;:39;-1:-1:-1;;;;;34628:15:0;;;;;;:9;:15;;;;;;:27;;34648:6;34628:27;:19;:27;:::i;:::-;34610:9;:15;34620:4;-1:-1:-1;;;;;34610:15:0;-1:-1:-1;;;;;34610:15:0;;;;;;;;;;;;:45;;;;34690:4;-1:-1:-1;;;;;34673:50:0;34680:8;-1:-1:-1;;;;;34673:50:0;;34696:6;34704:4;34710:12;34673:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;34673:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34673:50: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;34673:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34739:34;;;;;;;;34762:1;;-1:-1:-1;;;;;34739:34:0;;;;;;;;;;;;34092:689;;;;;:::o;12491:181::-;12549:7;12581:5;;;12605:6;;;;12597:46;;;;;-1:-1:-1;;;;;12597:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;15802:444;15862:4;16182:20;;16230:8;;15802:444::o
Swarm Source
bzzr://d33150e11a7545421d71308b3df564c6d0a8f3faae05d716aff0c84dbd7602b7
Loading...
Loading
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.