Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
87,105.548310261427578102 eFIL
Holders
265
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 Name:
EFIL
Compiler Version
v0.6.10+commit.00c0fcaf
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-18 */ /** *Submitted for verification at Etherscan.io on 2020-11-20 */ // File: node_modules\@openzeppelin\contracts\GSN\Context.sol pragma solidity ^0.6.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. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin\contracts\utils\Pausable.sol pragma solidity ^0.6.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin\contracts\access\Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: node_modules\@openzeppelin\contracts\math\SafeMath.sol pragma solidity ^0.6.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. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: node_modules\@openzeppelin\contracts\utils\Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // 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 Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: node_modules\@openzeppelin\contracts\utils\EnumerableSet.sol pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin\contracts\access\AccessControl.sol pragma solidity ^0.6.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } } // File: contracts\TransferAccess.sol pragma solidity ^0.6.0; contract TransferAccess is AccessControl, Ownable { bytes32 internal constant TRANSFER_ROLE = keccak256("TRANSFER_ROLE"); bool private _enable; constructor (bool enable) internal { _enable = enable; address msgSender = _msgSender(); super._setRoleAdmin(TRANSFER_ROLE, DEFAULT_ADMIN_ROLE); super._setupRole(TRANSFER_ROLE, msgSender); super._setupRole(DEFAULT_ADMIN_ROLE, msgSender); } /** * @dev Returns true if the contract is recipient access status, and false otherwise. */ function transferAccessStatus() public view returns (bool) { return _enable; } function enableTransferAccess() public onlyOwner { _enable = true; } function disableTransferAccess() public onlyOwner { _enable = false; } function hasTransferRole(address account) public view returns(bool) { return super.hasRole(TRANSFER_ROLE, account); } function setupTransferRole(address account) public onlyOwner { super._setupRole(TRANSFER_ROLE, account); } function revokeTransferRole(address account) public onlyOwner { super.revokeRole(TRANSFER_ROLE, account); } modifier transferable(address recipient, address sender) { if (_enable) { require(hasTransferRole(recipient) || hasTransferRole(sender), "TransferAccess: recipient and sender do not have the transfer role"); } _; } } // File: contracts\MinterAccess.sol pragma solidity ^0.6.0; contract MinterAccess is AccessControl, Ownable { bytes32 internal constant MINTER_ROLE = keccak256("MINTER_ROLE"); constructor() public { address owner = _msgSender(); super._setRoleAdmin(MINTER_ROLE, DEFAULT_ADMIN_ROLE); super._setupRole(MINTER_ROLE, owner); super._setupRole(DEFAULT_ADMIN_ROLE, owner); } function hasMinterRole(address account) public view returns(bool) { return super.hasRole(MINTER_ROLE, account); } function setupMinterRole(address account) public onlyOwner { super._setupRole(MINTER_ROLE, account); } function revokeMinterRole(address account) public onlyOwner { super.revokeRole(MINTER_ROLE, account); } modifier onlyMinter() { require(hasMinterRole(_msgSender()), "MinterAccess: sender do not have the minter role"); _; } } // File: contracts\BaseFil.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; //import "./EarnERC20.sol"; contract BaseFil is ERC20, Pausable, Ownable, TransferAccess, MinterAccess { //holders count uint private holders; event Released(address indexed _from, address indexed _to, uint256 amount, bytes data); event Minted(address indexed _from, address indexed _to, uint256 amount); constructor ( string memory name, string memory symbol, bool enableTransferAccess ) ERC20(name, symbol) TransferAccess(enableTransferAccess) public { } function mint(address recipient, uint256 amount) external onlyMinter { checkNewHolder(recipient); super._mint(recipient, amount); emit Minted(address(0), recipient, amount); } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { address account = _msgSender(); _burn(account, amount); checkOldHolder(account); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); checkOldHolder(account); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply銆? * * Emits a {Release} event with `to` set to the zero address锛?and with additional data. * * Requirements * * - `data` cannot be the empty. * - `sender` must have at least `amount` tokens. */ function release(bytes memory data, uint256 amount) external { require(data.length != 0, "ERC20: release data is empty"); address account = _msgSender(); super._burn(account, amount); checkOldHolder(account); emit Released(account, address(0), amount, data); } /** * @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 transferable(recipient, _msgSender()) override returns (bool) { checkNewHolder(recipient); bool res = super.transfer(recipient, amount); address account = _msgSender(); checkOldHolder(account); return res; } /** * @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 transferable(recipient, sender) override returns (bool) { checkNewHolder(recipient); bool res = super.transferFrom(sender, recipient, amount); checkOldHolder(sender); return res; } function holdersCount() public view returns(uint) { return holders; } function checkNewHolder(address account) internal { uint256 b = balanceOf(account); if (b == 0) { holders ++; } } function checkOldHolder(address account) internal { uint256 b = balanceOf(account); if (b == 0) { holders --; } } /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyOwner whenNotPaused { _pause(); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyOwner whenPaused { _unpause(); } } pragma solidity ^0.6.0; contract EFIL is BaseFil { constructor() BaseFil("Ethereum FIL", "eFIL", false) public { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Released","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTransferAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"hasMinterRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"hasTransferRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdersCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeTransferRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setupMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setupTransferRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferAccessStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600c81526020016b115d1a195c995d5b4811925360a21b815250604051806040016040528060048152602001631951925360e21b8152506000808383816003908051906020019062000071929190620003fd565b50805162000087906004906020840190620003fd565b50506005805461ff001960ff19909116601217169055506000620000b36001600160e01b036200027016565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506007805460ff60a01b1916600160a01b8315150217905560006200012462000270565b90506200016560405180806c5452414e534645525f524f4c4560981b815250600d01905060405180910390206000801b6200027560201b620015c11760201c565b620001a160405180806c5452414e534645525f524f4c4560981b815250600d019050604051809103902082620002c760201b62000a471760201c565b620001bb6000801b82620002c760201b62000a471760201c565b5060009050620001d36001600160e01b036200027016565b90506200021260405180806a4d494e5445525f524f4c4560a81b815250600b01905060405180910390206000801b6200027560201b620015c11760201c565b6200024c60405180806a4d494e5445525f524f4c4560a81b815250600b019050604051809103902082620002c760201b62000a471760201c565b620002666000801b82620002c760201b62000a471760201c565b505050506200049f565b335b90565b600082815260066020526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526006602052604090912060020155565b620002dc82826001600160e01b03620002e016565b5050565b6000828152600660209081526040909120620003079183906200161362000364821b17901c565b15620002dc57620003206001600160e01b036200027016565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000384836001600160a01b0384166001600160e01b036200038d16565b90505b92915050565b6000620003a483836001600160e01b03620003e516565b620003dc5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000387565b50600062000387565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200044057805160ff191683800117855562000470565b8280016001018555821562000470579182015b828111156200047057825182559160200191906001019062000453565b506200047e92915062000482565b5090565b6200027291905b808211156200047e576000815560010162000489565b6123eb80620004af6000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c806370a082311161013b578063a9059cbb116100b8578063d547741f1161007c578063d547741f14610723578063dd62ed3e1461074f578063ef5472ef1461077d578063f2fde38b146107a3578063fcce8372146107c95761023d565b8063a9059cbb14610604578063ae0481f214610630578063bbaf9bd5146106d8578063bee488de146106fe578063ca15c873146107065761023d565b80639010d07c116100ff5780639010d07c1461057957806391d148541461059c57806395d89b41146105c8578063a217fddf146105d0578063a457c2d7146105d85761023d565b806370a08231146104f3578063715018a61461051957806379cc6790146105215780638456cb591461054d5780638da5cb5b146105555761023d565b806331ac045a116101c957806340c10f191161018d57806340c10f191461047457806342966c68146104a05780635c975abb146104bd57806369e2f0fb146104c55780636b4ed21b146104eb5761023d565b806331ac045a146103e65780633361f14d1461040c57806336568abe1461041457806339509351146104405780633f4ba83a1461046c5761023d565b806323331f801161021057806323331f801461033f57806323b872dd14610349578063248a9ca31461037f5780632f2ff15d1461039c578063313ce567146103c85761023d565b806306fdde0314610242578063095ea7b3146102bf578063099db017146102ff57806318160ddd14610325575b600080fd5b61024a6107ef565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102eb600480360360408110156102d557600080fd5b506001600160a01b038135169060200135610885565b604080519115158252519081900360200190f35b6102eb6004803603602081101561031557600080fd5b50356001600160a01b03166108a3565b61032d6108d0565b60408051918252519081900360200190f35b6103476108d6565b005b6102eb6004803603606081101561035f57600080fd5b506001600160a01b0381358116916020810135909116906040013561093d565b61032d6004803603602081101561039557600080fd5b50356109d4565b610347600480360360408110156103b257600080fd5b50803590602001356001600160a01b03166109e9565b6103d0610a55565b6040805160ff9092168252519081900360200190f35b610347600480360360208110156103fc57600080fd5b50356001600160a01b0316610a5e565b6102eb610ae5565b6103476004803603604081101561042a57600080fd5b50803590602001356001600160a01b0316610af5565b6102eb6004803603604081101561045657600080fd5b506001600160a01b038135169060200135610b56565b610347610baf565b6103476004803603604081101561048a57600080fd5b506001600160a01b038135169060200135610c64565b610347600480360360208110156104b657600080fd5b5035610d07565b6102eb610d26565b610347600480360360208110156104db57600080fd5b50356001600160a01b0316610d34565b61032d610db6565b61032d6004803603602081101561050957600080fd5b50356001600160a01b0316610dbc565b610347610dd7565b6103476004803603604081101561053757600080fd5b506001600160a01b038135169060200135610e79565b610347610ee2565b61055d610f92565b604080516001600160a01b039092168252519081900360200190f35b61055d6004803603604081101561058f57600080fd5b5080359060200135610fa1565b6102eb600480360360408110156105b257600080fd5b50803590602001356001600160a01b0316610fc6565b61024a610fe4565b61032d611045565b6102eb600480360360408110156105ee57600080fd5b506001600160a01b03813516906020013561104a565b6102eb6004803603604081101561061a57600080fd5b506001600160a01b0381351690602001356110b8565b6103476004803603604081101561064657600080fd5b81019060208101813564010000000081111561066157600080fd5b82018360208201111561067357600080fd5b8035906020019184600183028401116401000000008311171561069557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550509135925061115e915050565b610347600480360360208110156106ee57600080fd5b50356001600160a01b031661128b565b61034761130f565b61032d6004803603602081101561071c57600080fd5b503561137c565b6103476004803603604081101561073957600080fd5b50803590602001356001600160a01b0316611393565b61032d6004803603604081101561076557600080fd5b506001600160a01b03813581169160200135166113ec565b6102eb6004803603602081101561079357600080fd5b50356001600160a01b0316611417565b610347600480360360208110156107b957600080fd5b50356001600160a01b0316611446565b610347600480360360208110156107df57600080fd5b50356001600160a01b031661153f565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610899610892611628565b848461162c565b5060015b92915050565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902060009061089d9083610fc6565b60025490565b6108de611628565b6007546001600160a01b0390811691161461092e576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007805460ff60a01b19169055565b60008284600760149054906101000a900460ff16156109a95761095f82611417565b8061096e575061096e81611417565b6109a95760405162461bcd60e51b81526004018080602001828103825260428152602001806121526042913960600191505060405180910390fd5b6109b285611718565b60006109bf878787611737565b90506109ca876117bf565b9695505050505050565b60009081526006602052604090206002015490565b600082815260066020526040902060020154610a0c90610a07611628565b610fc6565b610a475760405162461bcd60e51b815260040180806020018281038252602f815260200180612101602f913960400191505060405180910390fd5b610a5182826117df565b5050565b60055460ff1690565b610a66611628565b6007546001600160a01b03908116911614610ab6576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516c5452414e534645525f524f4c4560981b8152905190819003600d019020610ae29082611393565b50565b600754600160a01b900460ff1690565b610afd611628565b6001600160a01b0316816001600160a01b031614610b4c5760405162461bcd60e51b815260040180806020018281038252602f81526020018061235d602f913960400191505060405180910390fd5b610a51828261184e565b6000610899610b63611628565b84610baa8560016000610b74611628565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6118bd16565b61162c565b610bb7611628565b6007546001600160a01b03908116911614610c07576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b600554610100900460ff16610c5a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b610c62611917565b565b610c74610c6f611628565b6108a3565b610caf5760405162461bcd60e51b81526004018080602001828103825260308152602001806122326030913960400191505060405180910390fd5b610cb882611718565b610cc282826119bb565b6040805182815290516001600160a01b038416916000917f9d228d69b5fdb8d273a2336f8fb8612d039631024ea9bf09c424a9503aa078f09181900360200190a35050565b6000610d11611628565b9050610d1d8183611ab7565b610a51816117bf565b600554610100900460ff1690565b610d3c611628565b6007546001600160a01b03908116911614610d8c576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020610ae29082611393565b60085490565b6001600160a01b031660009081526020819052604090205490565b610ddf611628565b6007546001600160a01b03908116911614610e2f576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6000610eb6826040518060600160405280602481526020016122aa60249139610ea986610ea4611628565b6113ec565b919063ffffffff611bbf16565b9050610eca83610ec4611628565b8361162c565b610ed48383611ab7565b610edd836117bf565b505050565b610eea611628565b6007546001600160a01b03908116911614610f3a576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b600554610100900460ff1615610f8a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610c62611c56565b6007546001600160a01b031690565b6000828152600660205260408120610fbf908363ffffffff611cde16565b9392505050565b6000828152600660205260408120610fbf908363ffffffff611cea16565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561087b5780601f106108505761010080835404028352916020019161087b565b600081565b6000610899611057611628565b84610baa856040518060600160405280602581526020016123386025913960016000611081611628565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611bbf16565b6000826110c3611628565b600754600160a01b900460ff1615611128576110de82611417565b806110ed57506110ed81611417565b6111285760405162461bcd60e51b81526004018080602001828103825260428152602001806121526042913960600191505060405180910390fd5b61113185611718565b600061113d8686611cff565b90506000611149611628565b9050611154816117bf565b5095945050505050565b81516111b1576040805162461bcd60e51b815260206004820152601c60248201527f45524332303a2072656c65617365206461746120697320656d70747900000000604482015290519081900360640190fd5b60006111bb611628565b90506111c78183611ab7565b6111d0816117bf565b60006001600160a01b0316816001600160a01b03167f71e9ce6ac55c7c4540d0b817879bf1d3cc8a5286217a1888406d456ae398436f84866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561124b578181015183820152602001611233565b50505050905090810190601f1680156112785780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3505050565b611293611628565b6007546001600160a01b039081169116146112e3576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516c5452414e534645525f524f4c4560981b8152905190819003600d019020610ae29082610a47565b611317611628565b6007546001600160a01b03908116911614611367576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007805460ff60a01b1916600160a01b179055565b600081815260066020526040812061089d90611d13565b6000828152600660205260409020600201546113b190610a07611628565b610b4c5760405162461bcd60e51b81526004018080602001828103825260308152602001806122026030913960400191505060405180910390fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b604080516c5452414e534645525f524f4c4560981b8152905190819003600d01902060009061089d9083610fc6565b61144e611628565b6007546001600160a01b0390811691161461149e576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6001600160a01b0381166114e35760405162461bcd60e51b81526004018080602001828103825260268152602001806121946026913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b611547611628565b6007546001600160a01b03908116911614611597576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020610ae29082610a47565b600082815260066020526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526006602052604090912060020155565b6000610fbf836001600160a01b038416611d1e565b3390565b6001600160a01b0383166116715760405162461bcd60e51b81526004018080602001828103825260248152602001806123146024913960400191505060405180910390fd5b6001600160a01b0382166116b65760405162461bcd60e51b81526004018080602001828103825260228152602001806121ba6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061172382610dbc565b905080610a51576008805460010190555050565b6000611744848484611d68565b6117b584611750611628565b610baa85604051806060016040528060288152602001612262602891396001600160a01b038a1660009081526001602052604081209061178e611628565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611bbf16565b5060019392505050565b60006117ca82610dbc565b905080610a5157600880546000190190555050565b60008281526006602052604090206117fd908263ffffffff61161316565b15610a515761180a611628565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260066020526040902061186c908263ffffffff611ecf16565b15610a5157611879611628565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082820183811015610fbf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600554610100900460ff1661196a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61199e611628565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216611a16576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611a2260008383611ee4565b600254611a35908263ffffffff6118bd16565b6002556001600160a01b038216600090815260208190526040902054611a61908263ffffffff6118bd16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611afc5760405162461bcd60e51b81526004018080602001828103825260218152602001806122ce6021913960400191505060405180910390fd5b611b0882600083611ee4565b611b4b81604051806060016040528060228152602001612130602291396001600160a01b038516600090815260208190526040902054919063ffffffff611bbf16565b6001600160a01b038316600090815260208190526040902055600254611b77908263ffffffff611f3316565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008184841115611c4e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c13578181015183820152602001611bfb565b50505050905090810190601f168015611c405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600554610100900460ff1615611ca6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861199e611628565b6000610fbf8383611f75565b6000610fbf836001600160a01b038416611fd9565b6000610899611d0c611628565b8484611d68565b600061089d82611ff1565b6000611d2a8383611fd9565b611d605750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561089d565b50600061089d565b6001600160a01b038316611dad5760405162461bcd60e51b81526004018080602001828103825260258152602001806122ef6025913960400191505060405180910390fd5b6001600160a01b038216611df25760405162461bcd60e51b81526004018080602001828103825260238152602001806120de6023913960400191505060405180910390fd5b611dfd838383611ee4565b611e40816040518060600160405280602681526020016121dc602691396001600160a01b038616600090815260208190526040902054919063ffffffff611bbf16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e75908263ffffffff6118bd16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000610fbf836001600160a01b038416611ff5565b611eef838383610edd565b611ef7610d26565b15610edd5760405162461bcd60e51b815260040180806020018281038252602a81526020018061238c602a913960400191505060405180910390fd5b6000610fbf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bbf565b81546000908210611fb75760405162461bcd60e51b81526004018080602001828103825260228152602001806120bc6022913960400191505060405180910390fd5b826000018281548110611fc657fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600081815260018301602052604081205480156120b1578354600019808301919081019060009087908390811061202857fe5b906000526020600020015490508087600001848154811061204557fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061207557fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061089d565b600091505061089d56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e63655472616e736665724163636573733a20726563697069656e7420616e642073656e64657220646f206e6f74206861766520746865207472616e7366657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654d696e7465724163636573733a2073656e64657220646f206e6f74206861766520746865206d696e74657220726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212205fae39eaf9244cae9aa061f4b7b3ae516531d1b0b05e2371a1983443ee2adc2d64736f6c634300060a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061023d5760003560e01c806370a082311161013b578063a9059cbb116100b8578063d547741f1161007c578063d547741f14610723578063dd62ed3e1461074f578063ef5472ef1461077d578063f2fde38b146107a3578063fcce8372146107c95761023d565b8063a9059cbb14610604578063ae0481f214610630578063bbaf9bd5146106d8578063bee488de146106fe578063ca15c873146107065761023d565b80639010d07c116100ff5780639010d07c1461057957806391d148541461059c57806395d89b41146105c8578063a217fddf146105d0578063a457c2d7146105d85761023d565b806370a08231146104f3578063715018a61461051957806379cc6790146105215780638456cb591461054d5780638da5cb5b146105555761023d565b806331ac045a116101c957806340c10f191161018d57806340c10f191461047457806342966c68146104a05780635c975abb146104bd57806369e2f0fb146104c55780636b4ed21b146104eb5761023d565b806331ac045a146103e65780633361f14d1461040c57806336568abe1461041457806339509351146104405780633f4ba83a1461046c5761023d565b806323331f801161021057806323331f801461033f57806323b872dd14610349578063248a9ca31461037f5780632f2ff15d1461039c578063313ce567146103c85761023d565b806306fdde0314610242578063095ea7b3146102bf578063099db017146102ff57806318160ddd14610325575b600080fd5b61024a6107ef565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102eb600480360360408110156102d557600080fd5b506001600160a01b038135169060200135610885565b604080519115158252519081900360200190f35b6102eb6004803603602081101561031557600080fd5b50356001600160a01b03166108a3565b61032d6108d0565b60408051918252519081900360200190f35b6103476108d6565b005b6102eb6004803603606081101561035f57600080fd5b506001600160a01b0381358116916020810135909116906040013561093d565b61032d6004803603602081101561039557600080fd5b50356109d4565b610347600480360360408110156103b257600080fd5b50803590602001356001600160a01b03166109e9565b6103d0610a55565b6040805160ff9092168252519081900360200190f35b610347600480360360208110156103fc57600080fd5b50356001600160a01b0316610a5e565b6102eb610ae5565b6103476004803603604081101561042a57600080fd5b50803590602001356001600160a01b0316610af5565b6102eb6004803603604081101561045657600080fd5b506001600160a01b038135169060200135610b56565b610347610baf565b6103476004803603604081101561048a57600080fd5b506001600160a01b038135169060200135610c64565b610347600480360360208110156104b657600080fd5b5035610d07565b6102eb610d26565b610347600480360360208110156104db57600080fd5b50356001600160a01b0316610d34565b61032d610db6565b61032d6004803603602081101561050957600080fd5b50356001600160a01b0316610dbc565b610347610dd7565b6103476004803603604081101561053757600080fd5b506001600160a01b038135169060200135610e79565b610347610ee2565b61055d610f92565b604080516001600160a01b039092168252519081900360200190f35b61055d6004803603604081101561058f57600080fd5b5080359060200135610fa1565b6102eb600480360360408110156105b257600080fd5b50803590602001356001600160a01b0316610fc6565b61024a610fe4565b61032d611045565b6102eb600480360360408110156105ee57600080fd5b506001600160a01b03813516906020013561104a565b6102eb6004803603604081101561061a57600080fd5b506001600160a01b0381351690602001356110b8565b6103476004803603604081101561064657600080fd5b81019060208101813564010000000081111561066157600080fd5b82018360208201111561067357600080fd5b8035906020019184600183028401116401000000008311171561069557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550509135925061115e915050565b610347600480360360208110156106ee57600080fd5b50356001600160a01b031661128b565b61034761130f565b61032d6004803603602081101561071c57600080fd5b503561137c565b6103476004803603604081101561073957600080fd5b50803590602001356001600160a01b0316611393565b61032d6004803603604081101561076557600080fd5b506001600160a01b03813581169160200135166113ec565b6102eb6004803603602081101561079357600080fd5b50356001600160a01b0316611417565b610347600480360360208110156107b957600080fd5b50356001600160a01b0316611446565b610347600480360360208110156107df57600080fd5b50356001600160a01b031661153f565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610899610892611628565b848461162c565b5060015b92915050565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902060009061089d9083610fc6565b60025490565b6108de611628565b6007546001600160a01b0390811691161461092e576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007805460ff60a01b19169055565b60008284600760149054906101000a900460ff16156109a95761095f82611417565b8061096e575061096e81611417565b6109a95760405162461bcd60e51b81526004018080602001828103825260428152602001806121526042913960600191505060405180910390fd5b6109b285611718565b60006109bf878787611737565b90506109ca876117bf565b9695505050505050565b60009081526006602052604090206002015490565b600082815260066020526040902060020154610a0c90610a07611628565b610fc6565b610a475760405162461bcd60e51b815260040180806020018281038252602f815260200180612101602f913960400191505060405180910390fd5b610a5182826117df565b5050565b60055460ff1690565b610a66611628565b6007546001600160a01b03908116911614610ab6576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516c5452414e534645525f524f4c4560981b8152905190819003600d019020610ae29082611393565b50565b600754600160a01b900460ff1690565b610afd611628565b6001600160a01b0316816001600160a01b031614610b4c5760405162461bcd60e51b815260040180806020018281038252602f81526020018061235d602f913960400191505060405180910390fd5b610a51828261184e565b6000610899610b63611628565b84610baa8560016000610b74611628565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6118bd16565b61162c565b610bb7611628565b6007546001600160a01b03908116911614610c07576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b600554610100900460ff16610c5a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b610c62611917565b565b610c74610c6f611628565b6108a3565b610caf5760405162461bcd60e51b81526004018080602001828103825260308152602001806122326030913960400191505060405180910390fd5b610cb882611718565b610cc282826119bb565b6040805182815290516001600160a01b038416916000917f9d228d69b5fdb8d273a2336f8fb8612d039631024ea9bf09c424a9503aa078f09181900360200190a35050565b6000610d11611628565b9050610d1d8183611ab7565b610a51816117bf565b600554610100900460ff1690565b610d3c611628565b6007546001600160a01b03908116911614610d8c576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020610ae29082611393565b60085490565b6001600160a01b031660009081526020819052604090205490565b610ddf611628565b6007546001600160a01b03908116911614610e2f576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6000610eb6826040518060600160405280602481526020016122aa60249139610ea986610ea4611628565b6113ec565b919063ffffffff611bbf16565b9050610eca83610ec4611628565b8361162c565b610ed48383611ab7565b610edd836117bf565b505050565b610eea611628565b6007546001600160a01b03908116911614610f3a576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b600554610100900460ff1615610f8a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610c62611c56565b6007546001600160a01b031690565b6000828152600660205260408120610fbf908363ffffffff611cde16565b9392505050565b6000828152600660205260408120610fbf908363ffffffff611cea16565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561087b5780601f106108505761010080835404028352916020019161087b565b600081565b6000610899611057611628565b84610baa856040518060600160405280602581526020016123386025913960016000611081611628565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611bbf16565b6000826110c3611628565b600754600160a01b900460ff1615611128576110de82611417565b806110ed57506110ed81611417565b6111285760405162461bcd60e51b81526004018080602001828103825260428152602001806121526042913960600191505060405180910390fd5b61113185611718565b600061113d8686611cff565b90506000611149611628565b9050611154816117bf565b5095945050505050565b81516111b1576040805162461bcd60e51b815260206004820152601c60248201527f45524332303a2072656c65617365206461746120697320656d70747900000000604482015290519081900360640190fd5b60006111bb611628565b90506111c78183611ab7565b6111d0816117bf565b60006001600160a01b0316816001600160a01b03167f71e9ce6ac55c7c4540d0b817879bf1d3cc8a5286217a1888406d456ae398436f84866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561124b578181015183820152602001611233565b50505050905090810190601f1680156112785780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3505050565b611293611628565b6007546001600160a01b039081169116146112e3576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516c5452414e534645525f524f4c4560981b8152905190819003600d019020610ae29082610a47565b611317611628565b6007546001600160a01b03908116911614611367576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007805460ff60a01b1916600160a01b179055565b600081815260066020526040812061089d90611d13565b6000828152600660205260409020600201546113b190610a07611628565b610b4c5760405162461bcd60e51b81526004018080602001828103825260308152602001806122026030913960400191505060405180910390fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b604080516c5452414e534645525f524f4c4560981b8152905190819003600d01902060009061089d9083610fc6565b61144e611628565b6007546001600160a01b0390811691161461149e576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6001600160a01b0381166114e35760405162461bcd60e51b81526004018080602001828103825260268152602001806121946026913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b611547611628565b6007546001600160a01b03908116911614611597576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020610ae29082610a47565b600082815260066020526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526006602052604090912060020155565b6000610fbf836001600160a01b038416611d1e565b3390565b6001600160a01b0383166116715760405162461bcd60e51b81526004018080602001828103825260248152602001806123146024913960400191505060405180910390fd5b6001600160a01b0382166116b65760405162461bcd60e51b81526004018080602001828103825260228152602001806121ba6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061172382610dbc565b905080610a51576008805460010190555050565b6000611744848484611d68565b6117b584611750611628565b610baa85604051806060016040528060288152602001612262602891396001600160a01b038a1660009081526001602052604081209061178e611628565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611bbf16565b5060019392505050565b60006117ca82610dbc565b905080610a5157600880546000190190555050565b60008281526006602052604090206117fd908263ffffffff61161316565b15610a515761180a611628565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260066020526040902061186c908263ffffffff611ecf16565b15610a5157611879611628565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082820183811015610fbf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600554610100900460ff1661196a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61199e611628565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216611a16576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611a2260008383611ee4565b600254611a35908263ffffffff6118bd16565b6002556001600160a01b038216600090815260208190526040902054611a61908263ffffffff6118bd16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611afc5760405162461bcd60e51b81526004018080602001828103825260218152602001806122ce6021913960400191505060405180910390fd5b611b0882600083611ee4565b611b4b81604051806060016040528060228152602001612130602291396001600160a01b038516600090815260208190526040902054919063ffffffff611bbf16565b6001600160a01b038316600090815260208190526040902055600254611b77908263ffffffff611f3316565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008184841115611c4e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c13578181015183820152602001611bfb565b50505050905090810190601f168015611c405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600554610100900460ff1615611ca6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861199e611628565b6000610fbf8383611f75565b6000610fbf836001600160a01b038416611fd9565b6000610899611d0c611628565b8484611d68565b600061089d82611ff1565b6000611d2a8383611fd9565b611d605750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561089d565b50600061089d565b6001600160a01b038316611dad5760405162461bcd60e51b81526004018080602001828103825260258152602001806122ef6025913960400191505060405180910390fd5b6001600160a01b038216611df25760405162461bcd60e51b81526004018080602001828103825260238152602001806120de6023913960400191505060405180910390fd5b611dfd838383611ee4565b611e40816040518060600160405280602681526020016121dc602691396001600160a01b038616600090815260208190526040902054919063ffffffff611bbf16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e75908263ffffffff6118bd16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000610fbf836001600160a01b038416611ff5565b611eef838383610edd565b611ef7610d26565b15610edd5760405162461bcd60e51b815260040180806020018281038252602a81526020018061238c602a913960400191505060405180910390fd5b6000610fbf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bbf565b81546000908210611fb75760405162461bcd60e51b81526004018080602001828103825260228152602001806120bc6022913960400191505060405180910390fd5b826000018281548110611fc657fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600081815260018301602052604081205480156120b1578354600019808301919081019060009087908390811061202857fe5b906000526020600020015490508087600001848154811061204557fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061207557fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061089d565b600091505061089d56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e63655472616e736665724163636573733a20726563697069656e7420616e642073656e64657220646f206e6f74206861766520746865207472616e7366657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654d696e7465724163636573733a2073656e64657220646f206e6f74206861766520746865206d696e74657220726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212205fae39eaf9244cae9aa061f4b7b3ae516531d1b0b05e2371a1983443ee2adc2d64736f6c634300060a0033
Deployed Bytecode Sourcemap
53966:107:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22052:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24158:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24158:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48513:127;;;;;;;;;;;;;;;;-1:-1:-1;48513:127:0;-1:-1:-1;;;;;48513:127:0;;:::i;23127:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;47317:84;;;:::i;:::-;;52484:301;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52484:301:0;;;;;;;;;;;;;;;;;:::i;43263:114::-;;;;;;;;;;;;;;;;-1:-1:-1;43263:114:0;;:::i;43639:227::-;;;;;;;;;;;;;;;;-1:-1:-1;43639:227:0;;;;;;-1:-1:-1;;;;;43639:227:0;;:::i;22979:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47676:121;;;;;;;;;;;;;;;;-1:-1:-1;47676:121:0;-1:-1:-1;;;;;47676:121:0;;:::i;47127:92::-;;;:::i;44848:209::-;;;;;;;;;;;;;;;;-1:-1:-1;44848:209:0;;;;;;-1:-1:-1;;;;;44848:209:0;;:::i;25531:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25531:218:0;;;;;;;;:::i;53854:76::-;;;:::i;49701:207::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49701:207:0;;;;;;;;:::i;50024:153::-;;;;;;;;;;;;;;;;-1:-1:-1;50024:153:0;;:::i;2132:78::-;;;:::i;48772:117::-;;;;;;;;;;;;;;;;-1:-1:-1;48772:117:0;-1:-1:-1;;;;;48772:117:0;;:::i;52793:83::-;;;:::i;23290:119::-;;;;;;;;;;;;;;;;-1:-1:-1;23290:119:0;-1:-1:-1;;;;;23290:119:0;;:::i;5042:148::-;;;:::i;50496:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50496:321:0;;;;;;;;:::i;53684:75::-;;;:::i;4400:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;4400:79:0;;;;;;;;;;;;;;42936:138;;;;;;;;;;;;;;;;-1:-1:-1;42936:138:0;;;;;;;:::i;41897:139::-;;;;;;;;;;;;;;;;-1:-1:-1;41897:139:0;;;;;;-1:-1:-1;;;;;41897:139:0;;:::i;22254:87::-;;;:::i;40642:49::-;;;:::i;26252:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26252:269:0;;;;;;;;:::i;51693:317::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51693:317:0;;;;;;;;:::i;51168:312::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51168:312:0;;-1:-1:-1;;51168:312:0;;;-1:-1:-1;51168:312:0;;-1:-1:-1;;51168:312:0:i;47548:120::-;;;;;;;;;;;;;;;;-1:-1:-1;47548:120:0;-1:-1:-1;;;;;47548:120:0;;:::i;47227:82::-;;;:::i;42210:127::-;;;;;;;;;;;;;;;;-1:-1:-1;42210:127:0;;:::i;44111:230::-;;;;;;;;;;;;;;;;-1:-1:-1;44111:230:0;;;;;;-1:-1:-1;;;;;44111:230:0;;:::i;23860:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23860:151:0;;;;;;;;;;:::i;47409:131::-;;;;;;;;;;;;;;;;-1:-1:-1;47409:131:0;-1:-1:-1;;;;;47409:131:0;;:::i;5345:244::-;;;;;;;;;;;;;;;;-1:-1:-1;5345:244:0;-1:-1:-1;;;;;5345:244:0;;:::i;48648:116::-;;;;;;;;;;;;;;;;-1:-1:-1;48648:116:0;-1:-1:-1;;;;;48648:116:0;;:::i;22052:83::-;22122:5;22115:12;;;;;;;;-1:-1:-1;;22115:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22089:13;;22115:12;;22122:5;;22115:12;;22122:5;22115:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22052:83;:::o;24158:169::-;24241:4;24258:39;24267:12;:10;:12::i;:::-;24281:7;24290:6;24258:8;:39::i;:::-;-1:-1:-1;24315:4:0;24158:169;;;;;:::o;48513:127::-;48240:24;;;-1:-1:-1;;;48240:24:0;;;;;;;;;;;;48573:4;;48597:35;;48624:7;48597:13;:35::i;23127:100::-;23207:12;;23127:100;:::o;47317:84::-;4622:12;:10;:12::i;:::-;4612:6;;-1:-1:-1;;;;;4612:6:0;;;:22;;;4604:67;;;;;-1:-1:-1;;;4604:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4604:67:0;;;;;;;;;;;;;;;47378:7:::1;:15:::0;;-1:-1:-1;;;;47378:15:0::1;::::0;;47317:84::o;52484:301::-;52614:4;52577:9;52588:6;47877:7;;;;;;;;;;;47873:172;;;47909:26;47925:9;47909:15;:26::i;:::-;:53;;;;47939:23;47955:6;47939:15;:23::i;:::-;47901:132;;;;-1:-1:-1;;;47901:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52631:25:::1;52646:9;52631:14;:25::i;:::-;52667:8;52678:45;52697:6;52705:9;52716:6;52678:18;:45::i;:::-;52667:56;;52734:22;52749:6;52734:14;:22::i;:::-;52774:3:::0;52484:301;-1:-1:-1;;;;;;52484:301:0:o;43263:114::-;43320:7;43347:12;;;:6;:12;;;;;:22;;;;43263:114::o;43639:227::-;43731:12;;;;:6;:12;;;;;:22;;;43723:45;;43755:12;:10;:12::i;:::-;43723:7;:45::i;:::-;43715:105;;;;-1:-1:-1;;;43715:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43833:25;43844:4;43850:7;43833:10;:25::i;:::-;43639:227;;:::o;22979:83::-;23045:9;;;;22979:83;:::o;47676:121::-;4622:12;:10;:12::i;:::-;4612:6;;-1:-1:-1;;;;;4612:6:0;;;:22;;;4604:67;;;;;-1:-1:-1;;;4604:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4604:67:0;;;;;;;;;;;;;;;46659:26:::1;::::0;;-1:-1:-1;;;46659:26:0;;;;;;;;::::1;::::0;;;47749:40:::1;::::0;47781:7;47749:16:::1;:40::i;:::-;47676:121:::0;:::o;47127:92::-;47204:7;;-1:-1:-1;;;47204:7:0;;;;;47127:92::o;44848:209::-;44946:12;:10;:12::i;:::-;-1:-1:-1;;;;;44935:23:0;:7;-1:-1:-1;;;;;44935:23:0;;44927:83;;;;-1:-1:-1;;;44927:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45023:26;45035:4;45041:7;45023:11;:26::i;25531:218::-;25619:4;25636:83;25645:12;:10;:12::i;:::-;25659:7;25668:50;25707:10;25668:11;:25;25680:12;:10;:12::i;:::-;-1:-1:-1;;;;;25668:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25668:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;25636:8;:83::i;53854:76::-;4622:12;:10;:12::i;:::-;4612:6;;-1:-1:-1;;;;;4612:6:0;;;:22;;;4604:67;;;;;-1:-1:-1;;;4604:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4604:67:0;;;;;;;;;;;;;;;2726:7:::1;::::0;::::1;::::0;::::1;;;2718:40;;;::::0;;-1:-1:-1;;;2718:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;2718:40:0;;;;;;;;;;;;;::::1;;53912:10:::2;:8;:10::i;:::-;53854:76::o:0;49701:207::-;48938:27;48952:12;:10;:12::i;:::-;48938:13;:27::i;:::-;48930:88;;;;-1:-1:-1;;;48930:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49781:25:::1;49796:9;49781:14;:25::i;:::-;49817:30;49829:9;49840:6;49817:11;:30::i;:::-;49863:37;::::0;;;;;;;-1:-1:-1;;;;;49863:37:0;::::1;::::0;49878:1:::1;::::0;49863:37:::1;::::0;;;;::::1;::::0;;::::1;49701:207:::0;;:::o;50024:153::-;50072:15;50090:12;:10;:12::i;:::-;50072:30;;50113:22;50119:7;50128:6;50113:5;:22::i;:::-;50146:23;50161:7;50146:14;:23::i;2132:78::-;2195:7;;;;;;;;2132:78::o;48772:117::-;4622:12;:10;:12::i;:::-;4612:6;;-1:-1:-1;;;;;4612:6:0;;;:22;;;4604:67;;;;;-1:-1:-1;;;4604:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4604:67:0;;;;;;;;;;;;;;;48240:24:::1;::::0;;-1:-1:-1;;;48240:24:0;;;;;;;;::::1;::::0;;;48843:38:::1;::::0;48873:7;48843:16:::1;:38::i;52793:83::-:0;52861:7;;52793:83;:::o;23290:119::-;-1:-1:-1;;;;;23383:18:0;23356:7;23383:18;;;;;;;;;;;;23290:119::o;5042:148::-;4622:12;:10;:12::i;:::-;4612:6;;-1:-1:-1;;;;;4612:6:0;;;:22;;;4604:67;;;;;-1:-1:-1;;;4604:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4604:67:0;;;;;;;;;;;;;;;5133:6:::1;::::0;5112:40:::1;::::0;5149:1:::1;::::0;-1:-1:-1;;;;;5133:6:0::1;::::0;5112:40:::1;::::0;5149:1;;5112:40:::1;5163:6;:19:::0;;-1:-1:-1;;;;;;5163:19:0::1;::::0;;5042:148::o;50496:321::-;50565:26;50594:84;50631:6;50594:84;;;;;;;;;;;;;;;;;:32;50604:7;50613:12;:10;:12::i;:::-;50594:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;50565:113;;50691:51;50700:7;50709:12;:10;:12::i;:::-;50723:18;50691:8;:51::i;:::-;50753:22;50759:7;50768:6;50753:5;:22::i;:::-;50786:23;50801:7;50786:14;:23::i;:::-;50496:321;;;:::o;53684:75::-;4622:12;:10;:12::i;:::-;4612:6;;-1:-1:-1;;;;;4612:6:0;;;:22;;;4604:67;;;;;-1:-1:-1;;;4604:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4604:67:0;;;;;;;;;;;;;;;2450:7:::1;::::0;::::1;::::0;::::1;;;2449:8;2441:37;;;::::0;;-1:-1:-1;;;2441:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;2441:37:0;;;;;;;;;;;;;::::1;;53743:8:::2;:6;:8::i;4400:79::-:0;4465:6;;-1:-1:-1;;;;;4465:6:0;4400:79;:::o;42936:138::-;43009:7;43036:12;;;:6;:12;;;;;:30;;43060:5;43036:30;:23;:30;:::i;:::-;43029:37;42936:138;-1:-1:-1;;;42936:138:0:o;41897:139::-;41966:4;41990:12;;;:6;:12;;;;;:38;;42020:7;41990:38;:29;:38;:::i;22254:87::-;22326:7;22319:14;;;;;;;;-1:-1:-1;;22319:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22293:13;;22319:14;;22326:7;;22319:14;;22326:7;22319:14;;;;;;;;;;;;;;;;;;;;;;;;40642:49;40687:4;40642:49;:::o;26252:269::-;26345:4;26362:129;26371:12;:10;:12::i;:::-;26385:7;26394:96;26433:15;26394:96;;;;;;;;;;;;;;;;;:11;:25;26406:12;:10;:12::i;:::-;-1:-1:-1;;;;;26394:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;26394:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;51693:317::-;51809:4;51766:9;51777:12;:10;:12::i;:::-;47877:7;;-1:-1:-1;;;47877:7:0;;;;47873:172;;;47909:26;47925:9;47909:15;:26::i;:::-;:53;;;;47939:23;47955:6;47939:15;:23::i;:::-;47901:132;;;;-1:-1:-1;;;47901:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51826:25:::1;51841:9;51826:14;:25::i;:::-;51862:8;51873:33;51888:9;51899:6;51873:14;:33::i;:::-;51862:44;;51917:15;51935:12;:10;:12::i;:::-;51917:30;;51958:23;51973:7;51958:14;:23::i;:::-;-1:-1:-1::0;51999:3:0;51693:317;-1:-1:-1;;;;;51693:317:0:o;51168:312::-;51248:11;;51240:57;;;;;-1:-1:-1;;;51240:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;51310:15;51328:12;:10;:12::i;:::-;51310:30;;51351:28;51363:7;51372:6;51351:11;:28::i;:::-;51390:23;51405:7;51390:14;:23::i;:::-;51455:1;-1:-1:-1;;;;;51429:43:0;51438:7;-1:-1:-1;;;;;51429:43:0;;51459:6;51467:4;51429:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51168:312;;;:::o;47548:120::-;4622:12;:10;:12::i;:::-;4612:6;;-1:-1:-1;;;;;4612:6:0;;;:22;;;4604:67;;;;;-1:-1:-1;;;4604:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4604:67:0;;;;;;;;;;;;;;;46659:26:::1;::::0;;-1:-1:-1;;;46659:26:0;;;;;;;;::::1;::::0;;;47620:40:::1;::::0;47652:7;47620:16:::1;:40::i;47227:82::-:0;4622:12;:10;:12::i;:::-;4612:6;;-1:-1:-1;;;;;4612:6:0;;;:22;;;4604:67;;;;;-1:-1:-1;;;4604:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4604:67:0;;;;;;;;;;;;;;;47287:7:::1;:14:::0;;-1:-1:-1;;;;47287:14:0::1;-1:-1:-1::0;;;47287:14:0::1;::::0;;47227:82::o;42210:127::-;42273:7;42300:12;;;:6;:12;;;;;:29;;:27;:29::i;44111:230::-;44204:12;;;;:6;:12;;;;;:22;;;44196:45;;44228:12;:10;:12::i;44196:45::-;44188:106;;;;-1:-1:-1;;;44188:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23860:151;-1:-1:-1;;;;;23976:18:0;;;23949:7;23976:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23860:151::o;47409:131::-;46659:26;;;-1:-1:-1;;;46659:26:0;;;;;;;;;;;;47471:4;;47495:37;;47524:7;47495:13;:37::i;5345:244::-;4622:12;:10;:12::i;:::-;4612:6;;-1:-1:-1;;;;;4612:6:0;;;:22;;;4604:67;;;;;-1:-1:-1;;;4604:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4604:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5434:22:0;::::1;5426:73;;;;-1:-1:-1::0;;;5426:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5536:6;::::0;5515:38:::1;::::0;-1:-1:-1;;;;;5515:38:0;;::::1;::::0;5536:6:::1;::::0;5515:38:::1;::::0;5536:6:::1;::::0;5515:38:::1;5564:6;:17:::0;;-1:-1:-1;;;;;;5564:17:0::1;-1:-1:-1::0;;;;;5564:17:0;;;::::1;::::0;;;::::1;::::0;;5345:244::o;48648:116::-;4622:12;:10;:12::i;:::-;4612:6;;-1:-1:-1;;;;;4612:6:0;;;:22;;;4604:67;;;;;-1:-1:-1;;;4604:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4604:67:0;;;;;;;;;;;;;;;48240:24:::1;::::0;;-1:-1:-1;;;48240:24:0;;;;;;;;::::1;::::0;;;48718:38:::1;::::0;48748:7;48718:16:::1;:38::i;45884:199::-:0;45996:12;;;;:6;:12;;;;;;:22;;;45973:57;;46020:9;;46003:4;;45973:57;;45996:12;45973:57;46041:12;;;;:6;:12;;;;;;:22;;:34;45884:199::o;35917:143::-;35987:4;36011:41;36016:3;-1:-1:-1;;;;;36036:14:0;;36011:4;:41::i;708:106::-;796:10;708:106;:::o;29397:346::-;-1:-1:-1;;;;;29499:19:0;;29491:68;;;;-1:-1:-1;;;29491:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29578:21:0;;29570:68;;;;-1:-1:-1;;;29570:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29651:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29703:32;;;;;;;;;;;;;;;;;29397:346;;;:::o;52884:158::-;52945:9;52957:18;52967:7;52957:9;:18::i;:::-;52945:30;-1:-1:-1;52990:6:0;52986:49;;53013:7;:10;;;;;;52884:158;;:::o;24801:321::-;24907:4;24924:36;24934:6;24942:9;24953:6;24924:9;:36::i;:::-;24971:121;24980:6;24988:12;:10;:12::i;:::-;25002:89;25040:6;25002:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25002:19:0;;;;;;:11;:19;;;;;;25022:12;:10;:12::i;:::-;-1:-1:-1;;;;;25002:33:0;;;;;;;;;;;;-1:-1:-1;25002:33:0;;;:89;;:37;:89;:::i;24971:121::-;-1:-1:-1;25110:4:0;24801:321;;;;;:::o;53050:158::-;53111:9;53123:18;53133:7;53123:9;:18::i;:::-;53111:30;-1:-1:-1;53156:6:0;53152:49;;53179:7;:10;;-1:-1:-1;;53179:10:0;;;53050:158;;:::o;46091:188::-;46165:12;;;;:6;:12;;;;;:33;;46190:7;46165:33;:24;:33;:::i;:::-;46161:111;;;46247:12;:10;:12::i;:::-;-1:-1:-1;;;;;46220:40:0;46238:7;-1:-1:-1;;;;;46220:40:0;46232:4;46220:40;;;;;;;;;;46091:188;;:::o;46287:192::-;46362:12;;;;:6;:12;;;;;:36;;46390:7;46362:36;:27;:36;:::i;:::-;46358:114;;;46447:12;:10;:12::i;:::-;-1:-1:-1;;;;;46420:40:0;46438:7;-1:-1:-1;;;;;46420:40:0;46432:4;46420:40;;;;;;;;;;46287:192;;:::o;9346:181::-;9404:7;9436:5;;;9460:6;;;;9452:46;;;;;-1:-1:-1;;;9452:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3181:120;2726:7;;;;;;;2718:40;;;;;-1:-1:-1;;;2718:40:0;;;;;;;;;;;;-1:-1:-1;;;2718:40:0;;;;;;;;;;;;;;;3240:7:::1;:15:::0;;-1:-1:-1;;3240:15:0::1;::::0;;3271:22:::1;3280:12;:10;:12::i;:::-;3271:22;::::0;;-1:-1:-1;;;;;3271:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;3181:120::o:0;27831:378::-;-1:-1:-1;;;;;27915:21:0;;27907:65;;;;;-1:-1:-1;;;27907:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27985:49;28014:1;28018:7;28027:6;27985:20;:49::i;:::-;28062:12;;:24;;28079:6;28062:24;:16;:24;:::i;:::-;28047:12;:39;-1:-1:-1;;;;;28118:18:0;;:9;:18;;;;;;;;;;;:30;;28141:6;28118:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;28097:18:0;;:9;:18;;;;;;;;;;;:51;;;;28164:37;;;;;;;28097:18;;:9;;28164:37;;;;;;;;;;27831:378;;:::o;28541:418::-;-1:-1:-1;;;;;28625:21:0;;28617:67;;;;-1:-1:-1;;;28617:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28697:49;28718:7;28735:1;28739:6;28697:20;:49::i;:::-;28780:68;28803:6;28780:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28780:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;28759:18:0;;:9;:18;;;;;;;;;;:89;28874:12;;:24;;28891:6;28874:24;:16;:24;:::i;:::-;28859:12;:39;28914:37;;;;;;;;28940:1;;-1:-1:-1;;;;;28914:37:0;;;;;;;;;;;;28541:418;;:::o;10249:192::-;10335:7;10371:12;10363:6;;;;10355:29;;;;-1:-1:-1;;;10355:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10407:5:0;;;10249:192::o;2922:118::-;2450:7;;;;;;;2449:8;2441:37;;;;;-1:-1:-1;;;2441:37:0;;;;;;;;;;;;-1:-1:-1;;;2441:37:0;;;;;;;;;;;;;;;2982:7:::1;:14:::0;;-1:-1:-1;;2982:14:0::1;;;::::0;;3012:20:::1;3019:12;:10;:12::i;37176:149::-:0;37250:7;37293:22;37297:3;37309:5;37293:3;:22::i;36471:158::-;36551:4;36575:46;36585:3;-1:-1:-1;;;;;36605:14:0;;36575:9;:46::i;23622:175::-;23708:4;23725:42;23735:12;:10;:12::i;:::-;23749:9;23760:6;23725:9;:42::i;36715:117::-;36778:7;36805:19;36813:3;36805:7;:19::i;32571:414::-;32634:4;32656:21;32666:3;32671:5;32656:9;:21::i;:::-;32651:327;;-1:-1:-1;32694:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;32877:18;;32855:19;;;:12;;;:19;;;;;;:40;;;;32910:11;;32651:327;-1:-1:-1;32961:5:0;32954:12;;27011:539;-1:-1:-1;;;;;27117:20:0;;27109:70;;;;-1:-1:-1;;;27109:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27198:23:0;;27190:71;;;;-1:-1:-1;;;27190:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27274:47;27295:6;27303:9;27314:6;27274:20;:47::i;:::-;27354:71;27376:6;27354:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27354:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;27334:17:0;;;:9;:17;;;;;;;;;;;:91;;;;27459:20;;;;;;;:32;;27484:6;27459:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;27436:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;27507:35;;;;;;;27436:20;;27507:35;;;;;;;;;;;;;27011:539;;;:::o;36236:149::-;36309:4;36333:44;36341:3;-1:-1:-1;;;;;36361:14:0;;36333:7;:44::i;53362:230::-;53463:44;53490:4;53496:2;53500:6;53463:26;:44::i;:::-;53529:8;:6;:8::i;:::-;53528:9;53520:64;;;;-1:-1:-1;;;53520:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9810:136;9868:7;9895:43;9899:1;9902;9895:43;;;;;;;;;;;;;;;;;:3;:43::i;35459:204::-;35554:18;;35526:7;;35554:26;-1:-1:-1;35546:73:0;;;;-1:-1:-1;;;35546:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35637:3;:11;;35649:5;35637:18;;;;;;;;;;;;;;;;35630:25;;35459:204;;;;:::o;34791:129::-;34864:4;34888:19;;;:12;;;;;:19;;;;;;:24;;;34791:129::o;35006:109::-;35089:18;;35006:109::o;33161:1544::-;33227:4;33366:19;;;:12;;;:19;;;;;;33402:15;;33398:1300;;33837:18;;-1:-1:-1;;33788:14:0;;;;33837:22;;;;33764:21;;33837:3;;:22;;34124;;;;;;;;;;;;;;34104:42;;34270:9;34241:3;:11;;34253:13;34241:26;;;;;;;;;;;;;;;;;;;:38;;;;34347:23;;;34389:1;34347:12;;;:23;;;;;;34373:17;;;34347:43;;34499:17;;34347:3;;34499:17;;;;;;;;;;;;;;;;;;;;;;34594:3;:12;;:19;34607:5;34594:19;;;;;;;;;;;34587:26;;;34637:4;34630:11;;;;;;;;33398:1300;34681:5;34674:12;;;;
Swarm Source
ipfs://5fae39eaf9244cae9aa061f4b7b3ae516531d1b0b05e2371a1983443ee2adc2d
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.