Overview
Max Total Supply
492,469,490.182500244 HOPR
Holders
7,128 ( 0.014%)
Market
Price
$0.06 @ 0.000023 ETH (+8.07%)
Onchain Market Cap
$28,344,081.51
Circulating Supply Market Cap
$26,468,265.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,932.135661005107544586 HOPRValue
$514.09 ( ~0.204470395668258 Eth) [0.0018%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HoprToken
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-02-19 */ // // &&&& // &&&& // &&&& // &&&& &&&&&&&&& &&&&&&&&&&&& &&&&&&&&&&/ &&&&.&&&&&&&&& // &&&&&&&&& &&&&& &&&&&& &&&&&, &&&&& &&&&& &&&&&&&& &&&& // &&&&&& &&&& &&&&# &&&& &&&&& &&&&& &&&&&& &&&&& // &&&&& &&&&/ &&&& &&&& #&&&& &&&& &&&&& // &&&& &&&& &&&&& &&&& &&&& &&&&& &&&&& // %%%% /%%%% %%%%%% %%%%%% %%%% %%%%%%%%% %%%%% // %%%%% %%%% %%%%%%%%%%% %%%% %%%%%% %%%% // %%%% // %%%% // %%%% // // File @openzeppelin/contracts/utils/[email protected] 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/utils/[email protected] 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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); } } // File @openzeppelin/contracts/GSN/[email protected] 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } 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/access/[email protected] 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 `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. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { _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 @openzeppelin/contracts/token/ERC777/[email protected] pragma solidity ^0.6.0; /** * @dev Interface of the ERC777Token standard as defined in the EIP. * * This contract uses the * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 registry standard] to let * token holders and recipients react to token movements by using setting implementers * for the associated interfaces in said registry. See {IERC1820Registry} and * {ERC1820Implementer}. */ interface IERC777 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view returns (string memory); /** * @dev Returns the smallest part of the token that is not divisible. This * means all token operations (creation, movement and destruction) must have * amounts that are a multiple of this number. * * For most token contracts, this value will equal 1. */ function granularity() external view returns (uint256); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by an account (`owner`). */ function balanceOf(address owner) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * If send or receive hooks are registered for the caller and `recipient`, * the corresponding functions will be called with `data` and empty * `operatorData`. See {IERC777Sender} and {IERC777Recipient}. * * Emits a {Sent} event. * * Requirements * * - the caller must have at least `amount` tokens. * - `recipient` cannot be the zero address. * - if `recipient` is a contract, it must implement the {IERC777Recipient} * interface. */ function send(address recipient, uint256 amount, bytes calldata data) external; /** * @dev Destroys `amount` tokens from the caller's account, reducing the * total supply. * * If a send hook is registered for the caller, the corresponding function * will be called with `data` and empty `operatorData`. See {IERC777Sender}. * * Emits a {Burned} event. * * Requirements * * - the caller must have at least `amount` tokens. */ function burn(uint256 amount, bytes calldata data) external; /** * @dev Returns true if an account is an operator of `tokenHolder`. * Operators can send and burn tokens on behalf of their owners. All * accounts are their own operator. * * See {operatorSend} and {operatorBurn}. */ function isOperatorFor(address operator, address tokenHolder) external view returns (bool); /** * @dev Make an account an operator of the caller. * * See {isOperatorFor}. * * Emits an {AuthorizedOperator} event. * * Requirements * * - `operator` cannot be calling address. */ function authorizeOperator(address operator) external; /** * @dev Revoke an account's operator status for the caller. * * See {isOperatorFor} and {defaultOperators}. * * Emits a {RevokedOperator} event. * * Requirements * * - `operator` cannot be calling address. */ function revokeOperator(address operator) external; /** * @dev Returns the list of default operators. These accounts are operators * for all token holders, even if {authorizeOperator} was never called on * them. * * This list is immutable, but individual holders may revoke these via * {revokeOperator}, in which case {isOperatorFor} will return false. */ function defaultOperators() external view returns (address[] memory); /** * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must * be an operator of `sender`. * * If send or receive hooks are registered for `sender` and `recipient`, * the corresponding functions will be called with `data` and * `operatorData`. See {IERC777Sender} and {IERC777Recipient}. * * Emits a {Sent} event. * * Requirements * * - `sender` cannot be the zero address. * - `sender` must have at least `amount` tokens. * - the caller must be an operator for `sender`. * - `recipient` cannot be the zero address. * - if `recipient` is a contract, it must implement the {IERC777Recipient} * interface. */ function operatorSend( address sender, address recipient, uint256 amount, bytes calldata data, bytes calldata operatorData ) external; /** * @dev Destroys `amount` tokens from `account`, reducing the total supply. * The caller must be an operator of `account`. * * If a send hook is registered for `account`, the corresponding function * will be called with `data` and `operatorData`. See {IERC777Sender}. * * Emits a {Burned} event. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. * - the caller must be an operator for `account`. */ function operatorBurn( address account, uint256 amount, bytes calldata data, bytes calldata operatorData ) external; event Sent( address indexed operator, address indexed from, address indexed to, uint256 amount, bytes data, bytes operatorData ); event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData); event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData); event AuthorizedOperator(address indexed operator, address indexed tokenHolder); event RevokedOperator(address indexed operator, address indexed tokenHolder); } // File @openzeppelin/contracts/token/ERC777/[email protected] pragma solidity ^0.6.0; /** * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP. * * Accounts can be notified of {IERC777} tokens being sent to them by having a * contract implement this interface (contract holders can be their own * implementer) and registering it on the * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry]. * * See {IERC1820Registry} and {ERC1820Implementer}. */ interface IERC777Recipient { /** * @dev Called by an {IERC777} token contract whenever tokens are being * moved or created into a registered account (`to`). The type of operation * is conveyed by `from` being the zero address or not. * * This call occurs _after_ the token contract's state is updated, so * {IERC777-balanceOf}, etc., can be used to query the post-operation state. * * This function may revert to prevent the operation from being executed. */ function tokensReceived( address operator, address from, address to, uint256 amount, bytes calldata userData, bytes calldata operatorData ) external; } // File @openzeppelin/contracts/token/ERC777/[email protected] pragma solidity ^0.6.0; /** * @dev Interface of the ERC777TokensSender standard as defined in the EIP. * * {IERC777} Token holders can be notified of operations performed on their * tokens by having a contract implement this interface (contract holders can be * their own implementer) and registering it on the * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry]. * * See {IERC1820Registry} and {ERC1820Implementer}. */ interface IERC777Sender { /** * @dev Called by an {IERC777} token contract whenever a registered holder's * (`from`) tokens are about to be moved or destroyed. The type of operation * is conveyed by `to` being the zero address or not. * * This call occurs _before_ the token contract's state is updated, so * {IERC777-balanceOf}, etc., can be used to query the pre-operation state. * * This function may revert to prevent the operation from being executed. */ function tokensToSend( address operator, address from, address to, uint256 amount, bytes calldata userData, bytes calldata operatorData ) external; } // File @openzeppelin/contracts/token/ERC20/[email protected] 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 @openzeppelin/contracts/math/[email protected] 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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/introspection/[email protected] pragma solidity ^0.6.0; /** * @dev Interface of the global ERC1820 Registry, as defined in the * https://eips.ethereum.org/EIPS/eip-1820[EIP]. Accounts may register * implementers for interfaces in this registry, as well as query support. * * Implementers may be shared by multiple accounts, and can also implement more * than a single interface for each account. Contracts can implement interfaces * for themselves, but externally-owned accounts (EOA) must delegate this to a * contract. * * {IERC165} interfaces can also be queried via the registry. * * For an in-depth explanation and source code analysis, see the EIP text. */ interface IERC1820Registry { /** * @dev Sets `newManager` as the manager for `account`. A manager of an * account is able to set interface implementers for it. * * By default, each account is its own manager. Passing a value of `0x0` in * `newManager` will reset the manager to this initial state. * * Emits a {ManagerChanged} event. * * Requirements: * * - the caller must be the current manager for `account`. */ function setManager(address account, address newManager) external; /** * @dev Returns the manager for `account`. * * See {setManager}. */ function getManager(address account) external view returns (address); /** * @dev Sets the `implementer` contract as ``account``'s implementer for * `interfaceHash`. * * `account` being the zero address is an alias for the caller's address. * The zero address can also be used in `implementer` to remove an old one. * * See {interfaceHash} to learn how these are created. * * Emits an {InterfaceImplementerSet} event. * * Requirements: * * - the caller must be the current manager for `account`. * - `interfaceHash` must not be an {IERC165} interface id (i.e. it must not * end in 28 zeroes). * - `implementer` must implement {IERC1820Implementer} and return true when * queried for support, unless `implementer` is the caller. See * {IERC1820Implementer-canImplementInterfaceForAddress}. */ function setInterfaceImplementer(address account, bytes32 interfaceHash, address implementer) external; /** * @dev Returns the implementer of `interfaceHash` for `account`. If no such * implementer is registered, returns the zero address. * * If `interfaceHash` is an {IERC165} interface id (i.e. it ends with 28 * zeroes), `account` will be queried for support of it. * * `account` being the zero address is an alias for the caller's address. */ function getInterfaceImplementer(address account, bytes32 interfaceHash) external view returns (address); /** * @dev Returns the interface hash for an `interfaceName`, as defined in the * corresponding * https://eips.ethereum.org/EIPS/eip-1820#interface-name[section of the EIP]. */ function interfaceHash(string calldata interfaceName) external pure returns (bytes32); /** * @notice Updates the cache with whether the contract implements an ERC165 interface or not. * @param account Address of the contract for which to update the cache. * @param interfaceId ERC165 interface for which to update the cache. */ function updateERC165Cache(address account, bytes4 interfaceId) external; /** * @notice Checks whether a contract implements an ERC165 interface or not. * If the result is not cached a direct lookup on the contract address is performed. * If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling * {updateERC165Cache} with the contract address. * @param account Address of the contract to check. * @param interfaceId ERC165 interface to check. * @return True if `account` implements `interfaceId`, false otherwise. */ function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool); /** * @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache. * @param account Address of the contract to check. * @param interfaceId ERC165 interface to check. * @return True if `account` implements `interfaceId`, false otherwise. */ function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool); event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer); event ManagerChanged(address indexed account, address indexed newManager); } // File contracts/openzeppelin-contracts/ERC777.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC777} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * Support for ERC20 is included in this contract, as specified by the EIP: both * the ERC777 and ERC20 interfaces can be safely used when interacting with it. * Both {IERC777-Sent} and {IERC20-Transfer} events are emitted on token * movements. * * Additionally, the {IERC777-granularity} value is hard-coded to `1`, meaning that there * are no special restrictions in the amount of tokens that created, moved, or * destroyed. This makes integration with ERC20 applications seamless. */ contract ERC777 is Context, IERC777, IERC20 { using SafeMath for uint256; using Address for address; IERC1820Registry constant internal _ERC1820_REGISTRY = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24); mapping(address => uint256) private _balances; uint256 private _totalSupply; string private _name; string private _symbol; // We inline the result of the following hashes because Solidity doesn't resolve them at compile time. // See https://github.com/ethereum/solidity/issues/4024. // keccak256("ERC777TokensSender") bytes32 constant private _TOKENS_SENDER_INTERFACE_HASH = 0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895; // keccak256("ERC777TokensRecipient") bytes32 constant private _TOKENS_RECIPIENT_INTERFACE_HASH = 0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b; // This isn't ever read from - it's only used to respond to the defaultOperators query. address[] private _defaultOperatorsArray; // Immutable, but accounts may revoke them (tracked in __revokedDefaultOperators). mapping(address => bool) private _defaultOperators; // For each account, a mapping of its operators and revoked default operators. mapping(address => mapping(address => bool)) private _operators; mapping(address => mapping(address => bool)) private _revokedDefaultOperators; // ERC20-allowances mapping (address => mapping (address => uint256)) private _allowances; /** * @dev `defaultOperators` may be an empty array. */ constructor( string memory name_, string memory symbol_, address[] memory defaultOperators_ ) public { _name = name_; _symbol = symbol_; _defaultOperatorsArray = defaultOperators_; for (uint256 i = 0; i < _defaultOperatorsArray.length; i++) { _defaultOperators[_defaultOperatorsArray[i]] = true; } // register interfaces _ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC777Token"), address(this)); _ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC20Token"), address(this)); } /** * @dev See {IERC777-name}. */ function name() public view override returns (string memory) { return _name; } /** * @dev See {IERC777-symbol}. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev See {ERC20-decimals}. * * Always returns 18, as per the * [ERC777 EIP](https://eips.ethereum.org/EIPS/eip-777#backward-compatibility). */ function decimals() public pure returns (uint8) { return 18; } /** * @dev See {IERC777-granularity}. * * This implementation always returns `1`. */ function granularity() public view override returns (uint256) { return 1; } /** * @dev See {IERC777-totalSupply}. */ function totalSupply() public view override(IERC20, IERC777) returns (uint256) { return _totalSupply; } /** * @dev Returns the amount of tokens owned by an account (`tokenHolder`). */ function balanceOf(address tokenHolder) public view override(IERC20, IERC777) returns (uint256) { return _balances[tokenHolder]; } /** * @dev See {IERC777-send}. * * Also emits a {IERC20-Transfer} event for ERC20 compatibility. */ function send(address recipient, uint256 amount, bytes memory data) public virtual override { _send(_msgSender(), recipient, amount, data, "", true); } /** * @dev See {IERC20-transfer}. * * Unlike `send`, `recipient` is _not_ required to implement the {IERC777Recipient} * interface if it is a contract. * * Also emits a {Sent} event. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { require(recipient != address(0), "ERC777: transfer to the zero address"); address from = _msgSender(); _callTokensToSend(from, from, recipient, amount, "", ""); _move(from, from, recipient, amount, "", ""); _callTokensReceived(from, from, recipient, amount, "", "", false); return true; } /** * @dev See {IERC777-burn}. * * Also emits a {IERC20-Transfer} event for ERC20 compatibility. */ function burn(uint256 amount, bytes memory data) public virtual override { _burn(_msgSender(), amount, data, ""); } /** * @dev See {IERC777-isOperatorFor}. */ function isOperatorFor(address operator, address tokenHolder) public view override returns (bool) { return operator == tokenHolder || (_defaultOperators[operator] && !_revokedDefaultOperators[tokenHolder][operator]) || _operators[tokenHolder][operator]; } /** * @dev See {IERC777-authorizeOperator}. */ function authorizeOperator(address operator) public virtual override { require(_msgSender() != operator, "ERC777: authorizing self as operator"); if (_defaultOperators[operator]) { delete _revokedDefaultOperators[_msgSender()][operator]; } else { _operators[_msgSender()][operator] = true; } emit AuthorizedOperator(operator, _msgSender()); } /** * @dev See {IERC777-revokeOperator}. */ function revokeOperator(address operator) public virtual override { require(operator != _msgSender(), "ERC777: revoking self as operator"); if (_defaultOperators[operator]) { _revokedDefaultOperators[_msgSender()][operator] = true; } else { delete _operators[_msgSender()][operator]; } emit RevokedOperator(operator, _msgSender()); } /** * @dev See {IERC777-defaultOperators}. */ function defaultOperators() public view override returns (address[] memory) { return _defaultOperatorsArray; } /** * @dev See {IERC777-operatorSend}. * * Emits {Sent} and {IERC20-Transfer} events. */ function operatorSend( address sender, address recipient, uint256 amount, bytes memory data, bytes memory operatorData ) public virtual override { require(isOperatorFor(_msgSender(), sender), "ERC777: caller is not an operator for holder"); _send(sender, recipient, amount, data, operatorData, true); } /** * @dev See {IERC777-operatorBurn}. * * Emits {Burned} and {IERC20-Transfer} events. */ function operatorBurn(address account, uint256 amount, bytes memory data, bytes memory operatorData) public virtual override { require(isOperatorFor(_msgSender(), account), "ERC777: caller is not an operator for holder"); _burn(account, amount, data, operatorData); } /** * @dev See {IERC20-allowance}. * * Note that operator and allowance concepts are orthogonal: operators may * not have allowance, and accounts with allowance may not be operators * themselves. */ function allowance(address holder, address spender) public view override returns (uint256) { return _allowances[holder][spender]; } /** * @dev See {IERC20-approve}. * * Note that accounts cannot have allowance issued by their operators. */ function approve(address spender, uint256 value) public virtual override returns (bool) { address holder = _msgSender(); _approve(holder, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Note that operator and allowance concepts are orthogonal: operators cannot * call `transferFrom` (unless they have allowance), and accounts with * allowance cannot call `operatorSend` (unless they are operators). * * Emits {Sent}, {IERC20-Transfer} and {IERC20-Approval} events. */ function transferFrom(address holder, address recipient, uint256 amount) public virtual override returns (bool) { require(recipient != address(0), "ERC777: transfer to the zero address"); require(holder != address(0), "ERC777: transfer from the zero address"); address spender = _msgSender(); _callTokensToSend(spender, holder, recipient, amount, "", ""); _move(spender, holder, recipient, amount, "", ""); _approve(holder, spender, _allowances[holder][spender].sub(amount, "ERC777: transfer amount exceeds allowance")); _callTokensReceived(spender, holder, recipient, amount, "", "", false); return true; } /** * @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * If a send hook is registered for `account`, the corresponding function * will be called with `operator`, `data` and `operatorData`. * * See {IERC777Sender} and {IERC777Recipient}. * * Emits {Minted} and {IERC20-Transfer} events. * * Requirements * * - `account` cannot be the zero address. * - if `account` is a contract, it must implement the {IERC777Recipient} * interface. */ function _mint( address account, uint256 amount, bytes memory userData, bytes memory operatorData ) internal virtual { require(account != address(0), "ERC777: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, amount); // Update state variables _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); _callTokensReceived(operator, address(0), account, amount, userData, operatorData, true); emit Minted(operator, account, amount, userData, operatorData); emit Transfer(address(0), account, amount); } /** * @dev Send tokens * @param from address token holder address * @param to address recipient address * @param amount uint256 amount of tokens to transfer * @param userData bytes extra information provided by the token holder (if any) * @param operatorData bytes extra information provided by the operator (if any) * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient */ function _send( address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData, bool requireReceptionAck ) internal virtual { require(from != address(0), "ERC777: send from the zero address"); require(to != address(0), "ERC777: send to the zero address"); address operator = _msgSender(); _callTokensToSend(operator, from, to, amount, userData, operatorData); _move(operator, from, to, amount, userData, operatorData); _callTokensReceived(operator, from, to, amount, userData, operatorData, requireReceptionAck); } /** * @dev Burn tokens * @param from address token holder address * @param amount uint256 amount of tokens to burn * @param data bytes extra information provided by the token holder * @param operatorData bytes extra information provided by the operator (if any) */ function _burn( address from, uint256 amount, bytes memory data, bytes memory operatorData ) internal virtual { require(from != address(0), "ERC777: burn from the zero address"); address operator = _msgSender(); _callTokensToSend(operator, from, address(0), amount, data, operatorData); _beforeTokenTransfer(operator, from, address(0), amount); // Update state variables _balances[from] = _balances[from].sub(amount, "ERC777: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Burned(operator, from, amount, data, operatorData); emit Transfer(from, address(0), amount); } function _move( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData ) private { _beforeTokenTransfer(operator, from, to, amount); _balances[from] = _balances[from].sub(amount, "ERC777: transfer amount exceeds balance"); _balances[to] = _balances[to].add(amount); emit Sent(operator, from, to, amount, userData, operatorData); emit Transfer(from, to, amount); } /** * @dev See {ERC20-_approve}. * * Note that accounts cannot have allowance issued by their operators. */ function _approve(address holder, address spender, uint256 value) internal { require(holder != address(0), "ERC777: approve from the zero address"); require(spender != address(0), "ERC777: approve to the zero address"); _allowances[holder][spender] = value; emit Approval(holder, spender, value); } /** * @dev Call from.tokensToSend() if the interface is registered * @param operator address operator requesting the transfer * @param from address token holder address * @param to address recipient address * @param amount uint256 amount of tokens to transfer * @param userData bytes extra information provided by the token holder (if any) * @param operatorData bytes extra information provided by the operator (if any) */ function _callTokensToSend( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData ) private { address implementer = _ERC1820_REGISTRY.getInterfaceImplementer(from, _TOKENS_SENDER_INTERFACE_HASH); if (implementer != address(0)) { IERC777Sender(implementer).tokensToSend(operator, from, to, amount, userData, operatorData); } } /** * @dev Call to.tokensReceived() if the interface is registered. Reverts if the recipient is a contract but * tokensReceived() was not registered for the recipient * @param operator address operator requesting the transfer * @param from address token holder address * @param to address recipient address * @param amount uint256 amount of tokens to transfer * @param userData bytes extra information provided by the token holder (if any) * @param operatorData bytes extra information provided by the operator (if any) * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient */ function _callTokensReceived( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData, bool requireReceptionAck ) private { address implementer = _ERC1820_REGISTRY.getInterfaceImplementer(to, _TOKENS_RECIPIENT_INTERFACE_HASH); if (implementer != address(0)) { IERC777Recipient(implementer).tokensReceived(operator, from, to, amount, userData, operatorData); } else if (requireReceptionAck) { require(!to.isContract(), "ERC777: token recipient contract has no implementer for ERC777TokensRecipient"); } } /** * @dev Hook that is called before any token transfer. This includes * calls to {send}, {transfer}, {operatorSend}, 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 operator, address from, address to, uint256 amount) internal virtual { } } // File contracts/ERC777/ERC777Snapshot.sol // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.0; /** * @dev This contract extends an ERC777 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {updateValueAtNow} function. * To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with a block number. * To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with a block number * and the account address. */ abstract contract ERC777Snapshot is ERC777 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minime/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using SafeMath for uint256; /** * @dev `Snapshot` is the structure that attaches a block number to a * given value, the block number attached is the one that last changed the * value */ struct Snapshot { // `fromBlock` is the block number that the value was generated from uint128 fromBlock; // `value` is the amount of tokens at a specific block number uint128 value; } // `accountSnapshots` is the map that tracks the balance of each address, in this // contract when the balance changes the block number that the change // occurred is also included in the map mapping (address => Snapshot[]) public accountSnapshots; // Tracks the history of the `totalSupply` of the token Snapshot[] public totalSupplySnapshots; /** * @dev Queries the balance of `_owner` at a specific `_blockNumber` * @param _owner The address from which the balance will be retrieved * @param _blockNumber The block number when the balance is queried * @return The balance at `_blockNumber` */ function balanceOfAt(address _owner, uint128 _blockNumber) external view returns (uint256) { return _valueAt(accountSnapshots[_owner], _blockNumber); } /** * @notice Total amount of tokens at a specific `_blockNumber`. * @param _blockNumber The block number when the totalSupply is queried * @return The total amount of tokens at `_blockNumber` */ function totalSupplyAt(uint128 _blockNumber) external view returns(uint256) { return _valueAt(totalSupplySnapshots, _blockNumber); } // Update balance and/or total supply snapshots before the values are modified. This is implemented // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations. function _beforeTokenTransfer(address operator, address from, address to, uint256 amount) internal virtual override { if (from == address(0)) { // mint updateValueAtNow(accountSnapshots[to], balanceOf(to).add(amount)); updateValueAtNow(totalSupplySnapshots, totalSupply().add(amount)); } else if (to == address(0)) { // burn updateValueAtNow(accountSnapshots[from], balanceOf(from).sub(amount)); updateValueAtNow(totalSupplySnapshots, totalSupply().sub(amount)); } else if (from != to) { // transfer updateValueAtNow(accountSnapshots[from], balanceOf(from).sub(amount)); updateValueAtNow(accountSnapshots[to], balanceOf(to).add(amount)); } } /** * @dev `_valueAt` retrieves the number of tokens at a given block number * @param snapshots The history of values being queried * @param _block The block number to retrieve the value at * @return The number of tokens being queried */ function _valueAt( Snapshot[] storage snapshots, uint128 _block ) view internal returns (uint256) { uint256 lenSnapshots = snapshots.length; if (lenSnapshots == 0) return 0; // Shortcut for the actual value if (_block >= snapshots[lenSnapshots - 1].fromBlock) { return snapshots[lenSnapshots - 1].value; } if (_block < snapshots[0].fromBlock) { return 0; } // Binary search of the value in the array uint256 min = 0; uint256 max = lenSnapshots - 1; while (max > min) { uint256 mid = (max + min + 1) / 2; uint256 midSnapshotFrom = snapshots[mid].fromBlock; if (midSnapshotFrom == _block) { return snapshots[mid].value; } else if (midSnapshotFrom < _block) { min = mid; } else { max = mid - 1; } } return snapshots[min].value; } /** * @dev `updateValueAtNow` used to update the `balances` map and the * `totalSupplySnapshots` * @param snapshots The history of data being updated * @param _value The new number of tokens */ function updateValueAtNow(Snapshot[] storage snapshots, uint256 _value) internal { require(_value <= uint128(-1), "casting overflow"); uint256 lenSnapshots = snapshots.length; if ( (lenSnapshots == 0) || (snapshots[lenSnapshots - 1].fromBlock < block.number) ) { snapshots.push( Snapshot( uint128(block.number), uint128(_value) ) ); } else { snapshots[lenSnapshots - 1].value = uint128(_value); } } } // File contracts/HoprToken.sol // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.0; contract HoprToken is AccessControl, ERC777Snapshot { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); constructor() public ERC777("HOPR Token", "HOPR", new address[](0)) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint( address account, uint256 amount, bytes memory userData, bytes memory operatorData ) public { require(hasRole(MINTER_ROLE, msg.sender), "HoprToken: caller does not have minter role"); _mint(account, amount, userData, operatorData); } }
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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"AuthorizedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","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"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"RevokedOperator","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":"operator","type":"address"},{"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"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Sent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"accountSnapshots","outputs":[{"internalType":"uint128","name":"fromBlock","type":"uint128"},{"internalType":"uint128","name":"value","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"authorizeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint128","name":"_blockNumber","type":"uint128"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"defaultOperators","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","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":[],"name":"granularity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"operator","type":"address"},{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"isOperatorFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"userData","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorSend","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":"operator","type":"address"}],"name":"revokeOperator","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"send","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":"uint128","name":"_blockNumber","type":"uint128"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupplySnapshots","outputs":[{"internalType":"uint128","name":"fromBlock","type":"uint128"},{"internalType":"uint128","name":"value","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600a8152692427a829102a37b5b2b760b11b60208083019182528351808501855260048152632427a82960e11b81830152845160008152918201909452825192939290916200006e91600391906200037f565b508151620000849060049060208501906200037f565b5080516200009a90600590602084019062000404565b5060005b600554811015620000fa5760016006600060058481548110620000bd57fe5b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff19169115159190911790556001016200009e565b50604080516a22a9219b9b9baa37b5b2b760a91b8152815190819003600b0181206329965a1d60e01b82523060048301819052602483019190915260448201529051731820a4b7618bde71dce8cdc73aab6c95905fad24916329965a1d91606480830192600092919082900301818387803b1580156200017957600080fd5b505af11580156200018e573d6000803e3d6000fd5b5050604080516922a92199182a37b5b2b760b11b8152815190819003600a0181206329965a1d60e01b82523060048301819052602483019190915260448201529051731820a4b7618bde71dce8cdc73aab6c95905fad2493506329965a1d9250606480830192600092919082900301818387803b1580156200020f57600080fd5b505af115801562000224573d6000803e3d6000fd5b50505050505050620002406000801b336200024660201b60201c565b620004ae565b6200025b82826001600160e01b036200025f16565b5050565b600082815260208181526040909120620002849183906200328e620002e1821b17901c565b156200025b576200029d6001600160e01b036200030a16565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000301836001600160a01b0384166001600160e01b036200030f16565b90505b92915050565b335b90565b60006200032683836001600160e01b036200036716565b6200035e5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000304565b50600062000304565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003c257805160ff1916838001178555620003f2565b82800160010185558215620003f2579182015b82811115620003f2578251825591602001919060010190620003d5565b50620004009291506200046a565b5090565b8280548282559060005260206000209081019282156200045c579160200282015b828111156200045c57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000425565b506200040092915062000487565b6200030c91905b8082111562000400576000815560010162000471565b6200030c91905b80821115620004005780546001600160a01b03191681556001016200048e565b61399480620004be6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063959b8c3f1161010f578063d547741f116100a2578063f772a09211610071578063f772a09214610a58578063fad8b32a14610aa3578063fc673c4f14610ad6578063fe9d930314610c25576101f0565b8063d547741f1461085a578063d95b637114610893578063dcdc7dd0146108ce578063dd62ed3e14610a1d576101f0565b8063a9059cbb116100de578063a9059cbb146107df578063b7d78b1a14610818578063ca15c87314610835578063d539139314610852576101f0565b8063959b8c3f146106d457806395d89b41146107075780639bd9bbc61461070f578063a217fddf146107d7576101f0565b8063313ce5671161018757806370a082311161015657806370a08231146105ed5780639010d07c1461062057806391d148541461066c578063947975d9146106a5576101f0565b8063313ce5671461043457806336568abe14610452578063556f0dc71461048b57806362ad1b8314610493576101f0565b806323b872dd116101c357806323b872dd14610331578063248a9ca3146103745780632497aee6146103915780632f2ff15d146103f9576101f0565b806306e48538146101f557806306fdde031461024d578063095ea7b3146102ca57806318160ddd14610317575b600080fd5b6101fd610cd2565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610239578181015183820152602001610221565b505050509050019250505060405180910390f35b610255610d41565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610303600480360360408110156102e057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610dec565b604080519115158252519081900360200190f35b61031f610e10565b60408051918252519081900360200190f35b6103036004803603606081101561034757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610e16565b61031f6004803603602081101561038a57600080fd5b5035610ff4565b6103ca600480360360408110156103a757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611009565b604080516fffffffffffffffffffffffffffffffff938416815291909216602082015281519081900390910190f35b6104326004803603604081101561040f57600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff1661105f565b005b61043c6110e5565b6040805160ff9092168252519081900360200190f35b6104326004803603604081101561046857600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff166110ea565b61031f61117f565b610432600480360360a08110156104a957600080fd5b73ffffffffffffffffffffffffffffffffffffffff8235811692602081013590911691604082013591908101906080810160608201356401000000008111156104f157600080fd5b82018360208201111561050357600080fd5b8035906020019184600183028401116401000000008311171561052557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561057857600080fd5b82018360208201111561058a57600080fd5b803590602001918460018302840111640100000000831117156105ac57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611184945050505050565b61031f6004803603602081101561060357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611200565b6106436004803603604081101561063657600080fd5b5080359060200135611228565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103036004803603604081101561068257600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff1661124d565b61031f600480360360208110156106bb57600080fd5b50356fffffffffffffffffffffffffffffffff1661126b565b610432600480360360208110156106ea57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611278565b610255611475565b6104326004803603606081101561072557600080fd5b73ffffffffffffffffffffffffffffffffffffffff8235169160208101359181019060608101604082013564010000000081111561076257600080fd5b82018360208201111561077457600080fd5b8035906020019184600183028401116401000000008311171561079657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506114f4945050505050565b61031f61151e565b610303600480360360408110156107f557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611523565b6103ca6004803603602081101561082e57600080fd5b5035611623565b61031f6004803603602081101561084b57600080fd5b503561166b565b61031f611682565b6104326004803603604081101561087057600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff166116b7565b610303600480360360408110156108a957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602001351661172a565b610432600480360360808110156108e457600080fd5b73ffffffffffffffffffffffffffffffffffffffff8235169160208101359181019060608101604082013564010000000081111561092157600080fd5b82018360208201111561093357600080fd5b8035906020019184600183028401116401000000008311171561095557600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156109a857600080fd5b8201836020820111156109ba57600080fd5b803590602001918460018302840111640100000000831117156109dc57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061180c945050505050565b61031f60048036036040811015610a3357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166118af565b61031f60048036036040811015610a6e57600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff1690602001356fffffffffffffffffffffffffffffffff166118e7565b61043260048036036020811015610ab957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611916565b61043260048036036080811015610aec57600080fd5b73ffffffffffffffffffffffffffffffffffffffff82351691602081013591810190606081016040820135640100000000811115610b2957600080fd5b820183602082011115610b3b57600080fd5b80359060200191846001830284011164010000000083111715610b5d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050640100000000811115610bb057600080fd5b820183602082011115610bc257600080fd5b80359060200191846001830284011164010000000083111715610be457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611b13945050505050565b61043260048036036040811015610c3b57600080fd5b81359190810190604081016020820135640100000000811115610c5d57600080fd5b820183602082011115610c6f57600080fd5b80359060200191846001830284011164010000000083111715610c9157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611b85945050505050565b60606005805480602002602001604051908101604052809291908181526020018280548015610d3757602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311610d0c575b5050505050905090565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d375780601f10610dc057610100808354040283529160200191610d37565b820191906000526020600020905b815481529060010190602001808311610dce57509395945050505050565b600080610df7611ba7565b9050610e04818585611bab565b60019150505b92915050565b60025490565b600073ffffffffffffffffffffffffffffffffffffffff8316610e84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061384b6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416610ef0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806138c46026913960400191505060405180910390fd5b6000610efa611ba7565b9050610f28818686866040518060200160405280600081525060405180602001604052806000815250611cf2565b610f54818686866040518060200160405280600081525060405180602001604052806000815250611fc8565b610fbb8582610fb68660405180606001604052806029815260200161389b6029913973ffffffffffffffffffffffffffffffffffffffff808c166000908152600960209081526040808320938b1683529290522054919063ffffffff61226316565b611bab565b610fe98186868660405180602001604052806000815250604051806020016040528060008152506000612314565b506001949350505050565b60009081526020819052604090206002015490565b600a602052816000526040600020818154811061102257fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff808216935070010000000000000000000000000000000090910416905082565b6000828152602081905260409020600201546110829061107d611ba7565b61124d565b6110d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806136ca602f913960400191505060405180910390fd5b6110e18282612669565b5050565b601290565b6110f2611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613930602f913960400191505060405180910390fd5b6110e182826126f2565b600190565b61119561118f611ba7565b8661172a565b6111ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061386f602c913960400191505060405180910390fd5b6111f98585858585600161277b565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6000828152602081905260408120611246908363ffffffff6128a016565b9392505050565b6000828152602081905260408120611246908363ffffffff6128ac16565b6000610e0a600b836128ce565b8073ffffffffffffffffffffffffffffffffffffffff16611297611ba7565b73ffffffffffffffffffffffffffffffffffffffff161415611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806137896024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604090205460ff161561139f576008600061133e611ba7565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091851681529252902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055611411565b6001600760006113ad611ba7565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091861681529252902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790555b611419611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d375780601f10610dc057610100808354040283529160200191610d37565b6115196114ff611ba7565b84848460405180602001604052806000815250600161277b565b505050565b600081565b600073ffffffffffffffffffffffffffffffffffffffff8316611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061384b6024913960400191505060405180910390fd5b600061159b611ba7565b90506115c9818286866040518060200160405280600081525060405180602001604052806000815250611cf2565b6115f5818286866040518060200160405280600081525060405180602001604052806000815250611fc8565b610e048182868660405180602001604052806000815250604051806020016040528060008152506000612314565b600b818154811061163057fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff80821692507001000000000000000000000000000000009091041682565b6000818152602081905260408120610e0a90612ada565b604080517f4d494e5445525f524f4c450000000000000000000000000000000000000000008152905190819003600b01902081565b6000828152602081905260409020600201546116d59061107d611ba7565b611175576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806137ad6030913960400191505060405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117c9575073ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090205460ff1680156117c9575073ffffffffffffffffffffffffffffffffffffffff80831660009081526008602090815260408083209387168352929052205460ff16155b8061124657505073ffffffffffffffffffffffffffffffffffffffff90811660009081526007602090815260408083209490931682529290925290205460ff1690565b604080517f4d494e5445525f524f4c450000000000000000000000000000000000000000008152905190819003600b019020611848903361124d565b61189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061367d602b913960400191505060405180910390fd5b6118a984848484612ae5565b50505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260096020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a6020526040812061124690836128ce565b61191e611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806137dd6021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604090205460ff1615611a46576001600860006119de611ba7565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091861681529252902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055611aaf565b60076000611a52611ba7565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091851681529252902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b611ab7611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b611b24611b1e611ba7565b8561172a565b611b79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061386f602c913960400191505060405180910390fd5b6118a984848484612dab565b6110e1611b90611ba7565b838360405180602001604052806000815250612dab565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316611c17576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806136f96025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611c83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061390d6023913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080517faabbb8ca00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b158015611d9c57600080fd5b505afa158015611db0573d6000803e3d6000fd5b505050506040513d6020811015611dc657600080fd5b5051905073ffffffffffffffffffffffffffffffffffffffff811615611fbf578073ffffffffffffffffffffffffffffffffffffffff166375ab97828888888888886040518763ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611ef4578181015183820152602001611edc565b50505050905090810190601f168015611f215780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611f54578181015183820152602001611f3c565b50505050905090810190601f168015611f815780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611fa657600080fd5b505af1158015611fba573d6000803e3d6000fd5b505050505b50505050505050565b611fd486868686613059565b612024836040518060600160405280602781526020016137406027913973ffffffffffffffffffffffffffffffffffffffff8816600090815260016020526040902054919063ffffffff61226316565b73ffffffffffffffffffffffffffffffffffffffff8087166000908152600160205260408082209390935590861681522054612066908463ffffffff6131de16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015612159578181015183820152602001612141565b50505050905090810190601f1680156121865780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156121b95781810151838201526020016121a1565b50505050905090810190601f1680156121e65780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a48373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b6000818484111561230c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122d15781810151838201526020016122b9565b50505050905090810190601f1680156122fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b604080517faabbb8ca00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b1580156123be57600080fd5b505afa1580156123d2573d6000803e3d6000fd5b505050506040513d60208110156123e857600080fd5b5051905073ffffffffffffffffffffffffffffffffffffffff8116156125e4578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156125155781810151838201526020016124fd565b50505050905090810190601f1680156125425780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561257557818101518382015260200161255d565b50505050905090810190601f1680156125a25780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156125c757600080fd5b505af11580156125db573d6000803e3d6000fd5b5050505061265f565b811561265f576126098673ffffffffffffffffffffffffffffffffffffffff16613252565b1561265f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d8152602001806137fe604d913960600191505060405180910390fd5b5050505050505050565b6000828152602081905260409020612687908263ffffffff61328e16565b156110e157612694611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081905260409020612710908263ffffffff6132b016565b156110e15761271d611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b73ffffffffffffffffffffffffffffffffffffffff86166127e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061371e6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff851661286957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6000612873611ba7565b9050612883818888888888611cf2565b612891818888888888611fc8565b611fbf81888888888888612314565b600061124683836132d2565b60006112468373ffffffffffffffffffffffffffffffffffffffff8416613350565b8154600090806128e2576000915050610e0a565b8360018203815481106128f157fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff908116908416106129635783600182038154811061292857fe5b60009182526020909120015470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff169150610e0a9050565b8360008154811061297057fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff90811690841610156129a3576000915050610e0a565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b81811115612a92576000600260018385010104905060008782815481106129ec57fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff90811691508716811415612a6257878281548110612a2357fe5b60009182526020909120015470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff169550610e0a945050505050565b866fffffffffffffffffffffffffffffffff16811015612a8457819350612a8b565b6001820392505b50506129c9565b858281548110612a9e57fe5b60009182526020909120015470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff169695505050505050565b6000610e0a82613368565b73ffffffffffffffffffffffffffffffffffffffff8416612b6757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6000612b71611ba7565b9050612b808160008787613059565b600254612b93908563ffffffff6131de16565b60025573ffffffffffffffffffffffffffffffffffffffff8516600090815260016020526040902054612bcc908563ffffffff6131de16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c20816000878787876001612314565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015612cb9578181015183820152602001612ca1565b50505050905090810190601f168015612ce65780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015612d19578181015183820152602001612d01565b50505050905090810190601f168015612d465780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a360408051858152905173ffffffffffffffffffffffffffffffffffffffff8716916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b73ffffffffffffffffffffffffffffffffffffffff8416612e17576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806137676022913960400191505060405180910390fd5b6000612e21611ba7565b9050612e3281866000878787611cf2565b612e3f8186600087613059565b612e8f846040518060600160405280602381526020016138ea6023913973ffffffffffffffffffffffffffffffffffffffff8816600090815260016020526040902054919063ffffffff61226316565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260016020526040902055600254612ec8908563ffffffff61336c16565b6002819055508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015612f67578181015183820152602001612f4f565b50505050905090810190601f168015612f945780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015612fc7578181015183820152602001612faf565b50505050905090810190601f168015612ff45780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a360408051858152905160009173ffffffffffffffffffffffffffffffffffffffff8816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b73ffffffffffffffffffffffffffffffffffffffff83166130d15773ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090206130bb906130b6836130aa86611200565b9063ffffffff6131de16565b6133ae565b6130cc600b6130b6836130aa610e10565b6118a9565b73ffffffffffffffffffffffffffffffffffffffff821661313f5773ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020526040902061312e906130b68361312287611200565b9063ffffffff61336c16565b6130cc600b6130b683613122610e10565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146118a95773ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090206131a8906130b68361312287611200565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090206118a9906130b6836130aa86611200565b60008282018381101561124657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061328657508115155b949350505050565b60006112468373ffffffffffffffffffffffffffffffffffffffff841661354e565b60006112468373ffffffffffffffffffffffffffffffffffffffff8416613598565b8154600090821061332e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806136a86022913960400191505060405180910390fd5b82600001828154811061333d57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600061124683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612263565b6fffffffffffffffffffffffffffffffff81111561342d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f63617374696e67206f766572666c6f7700000000000000000000000000000000604482015290519081900360640190fd5b815480158061346757504383600183038154811061344757fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff16105b156134fd5760408051808201909152436fffffffffffffffffffffffffffffffff90811682528381166020808401918252865460018101885560008881529190912093519301805491517fffffffffffffffffffffffffffffffff000000000000000000000000000000009092169383169390931782167001000000000000000000000000000000009190921602179055611519565b8183600183038154811061350d57fe5b600091825260209091200180546fffffffffffffffffffffffffffffffff928316700100000000000000000000000000000000029216919091179055505050565b600061355a8383613350565b61359057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e0a565b506000610e0a565b600081815260018301602052604081205480156136725783547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80830191908101906000908790839081106135e957fe5b906000526020600020015490508087600001848154811061360657fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061363657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610e0a565b6000915050610e0a56fe486f7072546f6b656e3a2063616c6c657220646f6573206e6f742068617665206d696e74657220726f6c65456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433737373a20617070726f76652066726f6d20746865207a65726f20616464726573734552433737373a2073656e642066726f6d20746865207a65726f20616464726573734552433737373a207472616e7366657220616d6f756e7420657863656564732062616c616e63654552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f72416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a206275726e20616d6f756e7420657863656564732062616c616e63654552433737373a20617070726f766520746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220390a28fa8069140ab3fa17935c1941cfa66495f73b64d3262a85cb032eb768e764736f6c63430006060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063959b8c3f1161010f578063d547741f116100a2578063f772a09211610071578063f772a09214610a58578063fad8b32a14610aa3578063fc673c4f14610ad6578063fe9d930314610c25576101f0565b8063d547741f1461085a578063d95b637114610893578063dcdc7dd0146108ce578063dd62ed3e14610a1d576101f0565b8063a9059cbb116100de578063a9059cbb146107df578063b7d78b1a14610818578063ca15c87314610835578063d539139314610852576101f0565b8063959b8c3f146106d457806395d89b41146107075780639bd9bbc61461070f578063a217fddf146107d7576101f0565b8063313ce5671161018757806370a082311161015657806370a08231146105ed5780639010d07c1461062057806391d148541461066c578063947975d9146106a5576101f0565b8063313ce5671461043457806336568abe14610452578063556f0dc71461048b57806362ad1b8314610493576101f0565b806323b872dd116101c357806323b872dd14610331578063248a9ca3146103745780632497aee6146103915780632f2ff15d146103f9576101f0565b806306e48538146101f557806306fdde031461024d578063095ea7b3146102ca57806318160ddd14610317575b600080fd5b6101fd610cd2565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610239578181015183820152602001610221565b505050509050019250505060405180910390f35b610255610d41565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610303600480360360408110156102e057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610dec565b604080519115158252519081900360200190f35b61031f610e10565b60408051918252519081900360200190f35b6103036004803603606081101561034757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610e16565b61031f6004803603602081101561038a57600080fd5b5035610ff4565b6103ca600480360360408110156103a757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611009565b604080516fffffffffffffffffffffffffffffffff938416815291909216602082015281519081900390910190f35b6104326004803603604081101561040f57600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff1661105f565b005b61043c6110e5565b6040805160ff9092168252519081900360200190f35b6104326004803603604081101561046857600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff166110ea565b61031f61117f565b610432600480360360a08110156104a957600080fd5b73ffffffffffffffffffffffffffffffffffffffff8235811692602081013590911691604082013591908101906080810160608201356401000000008111156104f157600080fd5b82018360208201111561050357600080fd5b8035906020019184600183028401116401000000008311171561052557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561057857600080fd5b82018360208201111561058a57600080fd5b803590602001918460018302840111640100000000831117156105ac57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611184945050505050565b61031f6004803603602081101561060357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611200565b6106436004803603604081101561063657600080fd5b5080359060200135611228565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103036004803603604081101561068257600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff1661124d565b61031f600480360360208110156106bb57600080fd5b50356fffffffffffffffffffffffffffffffff1661126b565b610432600480360360208110156106ea57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611278565b610255611475565b6104326004803603606081101561072557600080fd5b73ffffffffffffffffffffffffffffffffffffffff8235169160208101359181019060608101604082013564010000000081111561076257600080fd5b82018360208201111561077457600080fd5b8035906020019184600183028401116401000000008311171561079657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506114f4945050505050565b61031f61151e565b610303600480360360408110156107f557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611523565b6103ca6004803603602081101561082e57600080fd5b5035611623565b61031f6004803603602081101561084b57600080fd5b503561166b565b61031f611682565b6104326004803603604081101561087057600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff166116b7565b610303600480360360408110156108a957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602001351661172a565b610432600480360360808110156108e457600080fd5b73ffffffffffffffffffffffffffffffffffffffff8235169160208101359181019060608101604082013564010000000081111561092157600080fd5b82018360208201111561093357600080fd5b8035906020019184600183028401116401000000008311171561095557600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156109a857600080fd5b8201836020820111156109ba57600080fd5b803590602001918460018302840111640100000000831117156109dc57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061180c945050505050565b61031f60048036036040811015610a3357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166118af565b61031f60048036036040811015610a6e57600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff1690602001356fffffffffffffffffffffffffffffffff166118e7565b61043260048036036020811015610ab957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611916565b61043260048036036080811015610aec57600080fd5b73ffffffffffffffffffffffffffffffffffffffff82351691602081013591810190606081016040820135640100000000811115610b2957600080fd5b820183602082011115610b3b57600080fd5b80359060200191846001830284011164010000000083111715610b5d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050640100000000811115610bb057600080fd5b820183602082011115610bc257600080fd5b80359060200191846001830284011164010000000083111715610be457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611b13945050505050565b61043260048036036040811015610c3b57600080fd5b81359190810190604081016020820135640100000000811115610c5d57600080fd5b820183602082011115610c6f57600080fd5b80359060200191846001830284011164010000000083111715610c9157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611b85945050505050565b60606005805480602002602001604051908101604052809291908181526020018280548015610d3757602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311610d0c575b5050505050905090565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d375780601f10610dc057610100808354040283529160200191610d37565b820191906000526020600020905b815481529060010190602001808311610dce57509395945050505050565b600080610df7611ba7565b9050610e04818585611bab565b60019150505b92915050565b60025490565b600073ffffffffffffffffffffffffffffffffffffffff8316610e84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061384b6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416610ef0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806138c46026913960400191505060405180910390fd5b6000610efa611ba7565b9050610f28818686866040518060200160405280600081525060405180602001604052806000815250611cf2565b610f54818686866040518060200160405280600081525060405180602001604052806000815250611fc8565b610fbb8582610fb68660405180606001604052806029815260200161389b6029913973ffffffffffffffffffffffffffffffffffffffff808c166000908152600960209081526040808320938b1683529290522054919063ffffffff61226316565b611bab565b610fe98186868660405180602001604052806000815250604051806020016040528060008152506000612314565b506001949350505050565b60009081526020819052604090206002015490565b600a602052816000526040600020818154811061102257fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff808216935070010000000000000000000000000000000090910416905082565b6000828152602081905260409020600201546110829061107d611ba7565b61124d565b6110d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806136ca602f913960400191505060405180910390fd5b6110e18282612669565b5050565b601290565b6110f2611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613930602f913960400191505060405180910390fd5b6110e182826126f2565b600190565b61119561118f611ba7565b8661172a565b6111ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061386f602c913960400191505060405180910390fd5b6111f98585858585600161277b565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6000828152602081905260408120611246908363ffffffff6128a016565b9392505050565b6000828152602081905260408120611246908363ffffffff6128ac16565b6000610e0a600b836128ce565b8073ffffffffffffffffffffffffffffffffffffffff16611297611ba7565b73ffffffffffffffffffffffffffffffffffffffff161415611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806137896024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604090205460ff161561139f576008600061133e611ba7565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091851681529252902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055611411565b6001600760006113ad611ba7565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091861681529252902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790555b611419611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d375780601f10610dc057610100808354040283529160200191610d37565b6115196114ff611ba7565b84848460405180602001604052806000815250600161277b565b505050565b600081565b600073ffffffffffffffffffffffffffffffffffffffff8316611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061384b6024913960400191505060405180910390fd5b600061159b611ba7565b90506115c9818286866040518060200160405280600081525060405180602001604052806000815250611cf2565b6115f5818286866040518060200160405280600081525060405180602001604052806000815250611fc8565b610e048182868660405180602001604052806000815250604051806020016040528060008152506000612314565b600b818154811061163057fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff80821692507001000000000000000000000000000000009091041682565b6000818152602081905260408120610e0a90612ada565b604080517f4d494e5445525f524f4c450000000000000000000000000000000000000000008152905190819003600b01902081565b6000828152602081905260409020600201546116d59061107d611ba7565b611175576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806137ad6030913960400191505060405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117c9575073ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090205460ff1680156117c9575073ffffffffffffffffffffffffffffffffffffffff80831660009081526008602090815260408083209387168352929052205460ff16155b8061124657505073ffffffffffffffffffffffffffffffffffffffff90811660009081526007602090815260408083209490931682529290925290205460ff1690565b604080517f4d494e5445525f524f4c450000000000000000000000000000000000000000008152905190819003600b019020611848903361124d565b61189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061367d602b913960400191505060405180910390fd5b6118a984848484612ae5565b50505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260096020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a6020526040812061124690836128ce565b61191e611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806137dd6021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604090205460ff1615611a46576001600860006119de611ba7565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091861681529252902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055611aaf565b60076000611a52611ba7565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091851681529252902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b611ab7611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b611b24611b1e611ba7565b8561172a565b611b79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061386f602c913960400191505060405180910390fd5b6118a984848484612dab565b6110e1611b90611ba7565b838360405180602001604052806000815250612dab565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316611c17576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806136f96025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611c83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061390d6023913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080517faabbb8ca00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b158015611d9c57600080fd5b505afa158015611db0573d6000803e3d6000fd5b505050506040513d6020811015611dc657600080fd5b5051905073ffffffffffffffffffffffffffffffffffffffff811615611fbf578073ffffffffffffffffffffffffffffffffffffffff166375ab97828888888888886040518763ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611ef4578181015183820152602001611edc565b50505050905090810190601f168015611f215780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611f54578181015183820152602001611f3c565b50505050905090810190601f168015611f815780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611fa657600080fd5b505af1158015611fba573d6000803e3d6000fd5b505050505b50505050505050565b611fd486868686613059565b612024836040518060600160405280602781526020016137406027913973ffffffffffffffffffffffffffffffffffffffff8816600090815260016020526040902054919063ffffffff61226316565b73ffffffffffffffffffffffffffffffffffffffff8087166000908152600160205260408082209390935590861681522054612066908463ffffffff6131de16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015612159578181015183820152602001612141565b50505050905090810190601f1680156121865780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156121b95781810151838201526020016121a1565b50505050905090810190601f1680156121e65780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a48373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b6000818484111561230c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122d15781810151838201526020016122b9565b50505050905090810190601f1680156122fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b604080517faabbb8ca00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b1580156123be57600080fd5b505afa1580156123d2573d6000803e3d6000fd5b505050506040513d60208110156123e857600080fd5b5051905073ffffffffffffffffffffffffffffffffffffffff8116156125e4578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156125155781810151838201526020016124fd565b50505050905090810190601f1680156125425780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561257557818101518382015260200161255d565b50505050905090810190601f1680156125a25780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156125c757600080fd5b505af11580156125db573d6000803e3d6000fd5b5050505061265f565b811561265f576126098673ffffffffffffffffffffffffffffffffffffffff16613252565b1561265f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d8152602001806137fe604d913960600191505060405180910390fd5b5050505050505050565b6000828152602081905260409020612687908263ffffffff61328e16565b156110e157612694611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081905260409020612710908263ffffffff6132b016565b156110e15761271d611ba7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b73ffffffffffffffffffffffffffffffffffffffff86166127e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061371e6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff851661286957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6000612873611ba7565b9050612883818888888888611cf2565b612891818888888888611fc8565b611fbf81888888888888612314565b600061124683836132d2565b60006112468373ffffffffffffffffffffffffffffffffffffffff8416613350565b8154600090806128e2576000915050610e0a565b8360018203815481106128f157fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff908116908416106129635783600182038154811061292857fe5b60009182526020909120015470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff169150610e0a9050565b8360008154811061297057fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff90811690841610156129a3576000915050610e0a565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b81811115612a92576000600260018385010104905060008782815481106129ec57fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff90811691508716811415612a6257878281548110612a2357fe5b60009182526020909120015470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff169550610e0a945050505050565b866fffffffffffffffffffffffffffffffff16811015612a8457819350612a8b565b6001820392505b50506129c9565b858281548110612a9e57fe5b60009182526020909120015470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff169695505050505050565b6000610e0a82613368565b73ffffffffffffffffffffffffffffffffffffffff8416612b6757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6000612b71611ba7565b9050612b808160008787613059565b600254612b93908563ffffffff6131de16565b60025573ffffffffffffffffffffffffffffffffffffffff8516600090815260016020526040902054612bcc908563ffffffff6131de16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c20816000878787876001612314565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015612cb9578181015183820152602001612ca1565b50505050905090810190601f168015612ce65780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015612d19578181015183820152602001612d01565b50505050905090810190601f168015612d465780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a360408051858152905173ffffffffffffffffffffffffffffffffffffffff8716916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b73ffffffffffffffffffffffffffffffffffffffff8416612e17576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806137676022913960400191505060405180910390fd5b6000612e21611ba7565b9050612e3281866000878787611cf2565b612e3f8186600087613059565b612e8f846040518060600160405280602381526020016138ea6023913973ffffffffffffffffffffffffffffffffffffffff8816600090815260016020526040902054919063ffffffff61226316565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260016020526040902055600254612ec8908563ffffffff61336c16565b6002819055508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015612f67578181015183820152602001612f4f565b50505050905090810190601f168015612f945780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015612fc7578181015183820152602001612faf565b50505050905090810190601f168015612ff45780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a360408051858152905160009173ffffffffffffffffffffffffffffffffffffffff8816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b73ffffffffffffffffffffffffffffffffffffffff83166130d15773ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090206130bb906130b6836130aa86611200565b9063ffffffff6131de16565b6133ae565b6130cc600b6130b6836130aa610e10565b6118a9565b73ffffffffffffffffffffffffffffffffffffffff821661313f5773ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020526040902061312e906130b68361312287611200565b9063ffffffff61336c16565b6130cc600b6130b683613122610e10565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146118a95773ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090206131a8906130b68361312287611200565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090206118a9906130b6836130aa86611200565b60008282018381101561124657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061328657508115155b949350505050565b60006112468373ffffffffffffffffffffffffffffffffffffffff841661354e565b60006112468373ffffffffffffffffffffffffffffffffffffffff8416613598565b8154600090821061332e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806136a86022913960400191505060405180910390fd5b82600001828154811061333d57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600061124683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612263565b6fffffffffffffffffffffffffffffffff81111561342d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f63617374696e67206f766572666c6f7700000000000000000000000000000000604482015290519081900360640190fd5b815480158061346757504383600183038154811061344757fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff16105b156134fd5760408051808201909152436fffffffffffffffffffffffffffffffff90811682528381166020808401918252865460018101885560008881529190912093519301805491517fffffffffffffffffffffffffffffffff000000000000000000000000000000009092169383169390931782167001000000000000000000000000000000009190921602179055611519565b8183600183038154811061350d57fe5b600091825260209091200180546fffffffffffffffffffffffffffffffff928316700100000000000000000000000000000000029216919091179055505050565b600061355a8383613350565b61359057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e0a565b506000610e0a565b600081815260018301602052604081205480156136725783547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80830191908101906000908790839081106135e957fe5b906000526020600020015490508087600001848154811061360657fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061363657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610e0a565b6000915050610e0a56fe486f7072546f6b656e3a2063616c6c657220646f6573206e6f742068617665206d696e74657220726f6c65456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433737373a20617070726f76652066726f6d20746865207a65726f20616464726573734552433737373a2073656e642066726f6d20746865207a65726f20616464726573734552433737373a207472616e7366657220616d6f756e7420657863656564732062616c616e63654552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f72416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a206275726e20616d6f756e7420657863656564732062616c616e63654552433737373a20617070726f766520746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220390a28fa8069140ab3fa17935c1941cfa66495f73b64d3262a85cb032eb768e764736f6c63430006060033
Deployed Bytecode Sourcemap
65772:773:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;65772:773:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;48855:124:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;48855:124:0;;;;;;;;;;;;;;;;;45021:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;45021:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50468:201;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;50468:201:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45815:117;;;:::i;:::-;;;;;;;;;;;;;;;;51045:694;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;51045:694:0;;;;;;;;;;;;;;;;;;:::i;16722:114::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16722:114:0;;:::i;61489:55::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;61489:55:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17098:227;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17098:227:0;;;;;;;;;:::i;:::-;;45462:76;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18307:209;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18307:209:0;;;;;;;;;:::i;45660:89::-;;;:::i;49105:407::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;49105:407:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;49105:407:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;49105:407:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49105:407:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;49105:407:0;;;;;;;;-1:-1:-1;49105:407:0;;-1:-1:-1;;27:11;11:28;;8:2;;;52:1;49;42:12;8:2;49105:407:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;49105:407:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49105:407:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;49105:407:0;;-1:-1:-1;49105:407:0;;-1:-1:-1;;;;;49105:407:0:i;46037:144::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46037:144:0;;;;:::i;16395:138::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16395:138:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15356:139;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15356:139:0;;;;;;;;;:::i;62345:146::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;62345:146:0;;;;:::i;47878:423::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;47878:423:0;;;;:::i;45174:96::-;;;:::i;46318:166::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;46318:166:0;;;;;;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;46318:166:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;46318:166:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46318:166:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;46318:166:0;;-1:-1:-1;46318:166:0;;-1:-1:-1;;;;;46318:166:0:i;14524:49::-;;;:::i;46725:451::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46725:451:0;;;;;;;;;:::i;61614:38::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;61614:38:0;;:::i;15669:127::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15669:127:0;;:::i;65831:62::-;;;:::i;17570:230::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17570:230:0;;;;;;;;;:::i;47511:295::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;47511:295:0;;;;;;;;;;;:::i;66231:311::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;66231:311:0;;;;;;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;66231:311:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;66231:311:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;66231:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;66231:311:0;;;;;;;;-1:-1:-1;66231:311:0;;-1:-1:-1;;27:11;11:28;;8:2;;;52:1;49;42:12;8:2;66231:311:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;66231:311:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;66231:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;66231:311:0;;-1:-1:-1;66231:311:0;;-1:-1:-1;;;;;66231:311:0:i;50178:145::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;50178:145:0;;;;;;;;;;;:::i;61947:165::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;61947:165:0;;;;;;;;;;;:::i;48370:414::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;48370:414:0;;;;:::i;49640:290::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;49640:290:0;;;;;;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;49640:290:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;49640:290:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49640:290:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;49640:290:0;;;;;;;;-1:-1:-1;49640:290:0;;-1:-1:-1;;27:11;11:28;;8:2;;;52:1;49;42:12;8:2;49640:290:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;49640:290:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49640:290:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;49640:290:0;;-1:-1:-1;49640:290:0;;-1:-1:-1;;;;;49640:290:0:i;47313:130::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;47313:130:0;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;47313:130:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;47313:130:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47313:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;47313:130:0;;-1:-1:-1;47313:130:0;;-1:-1:-1;;;;;47313:130:0:i;48855:124::-;48913:16;48949:22;48942:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48855:124;:::o;45021:92::-;45100:5;45093:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45067:13;;45093:12;;45100:5;;45093:12;;45100:5;45093:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45093:12:0;;45021:92;-1:-1:-1;;;;;45021:92:0:o;50468:201::-;50550:4;50567:14;50584:12;:10;:12::i;:::-;50567:29;;50607:32;50616:6;50624:7;50633:5;50607:8;:32::i;:::-;50657:4;50650:11;;;50468:201;;;;;:::o;45815:117::-;45912:12;;45815:117;:::o;51045:694::-;51151:4;51176:23;;;51168:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51259:20;;;51251:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51335:15;51353:12;:10;:12::i;:::-;51335:30;;51378:61;51396:7;51405:6;51413:9;51424:6;51378:61;;;;;;;;;;;;;;;;;;;;;;;;:17;:61::i;:::-;51452:49;51458:7;51467:6;51475:9;51486:6;51452:49;;;;;;;;;;;;;;;;;;;;;;;;:5;:49::i;:::-;51512:112;51521:6;51529:7;51538:85;51571:6;51538:85;;;;;;;;;;;;;;;;;:19;;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;:85;;:32;:85;:::i;:::-;51512:8;:112::i;:::-;51637:70;51657:7;51666:6;51674:9;51685:6;51637:70;;;;;;;;;;;;;;;;;;;;;;;;51701:5;51637:19;:70::i;:::-;-1:-1:-1;51727:4:0;;51045:694;-1:-1:-1;;;;51045:694:0:o;16722:114::-;16779:7;16806:12;;;;;;;;;;:22;;;;16722:114::o;61489:55::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61489:55:0;;;;;;-1:-1:-1;61489:55:0;:::o;17098:227::-;17190:6;:12;;;;;;;;;;:22;;;17182:45;;17214:12;:10;:12::i;:::-;17182:7;:45::i;:::-;17174:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17292:25;17303:4;17309:7;17292:10;:25::i;:::-;17098:227;;:::o;45462:76::-;45528:2;45462:76;:::o;18307:209::-;18405:12;:10;:12::i;:::-;18394:23;;:7;:23;;;18386:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18482:26;18494:4;18500:7;18482:11;:26::i;45660:89::-;45740:1;45660:89;:::o;49105:407::-;49351:35;49365:12;:10;:12::i;:::-;49379:6;49351:13;:35::i;:::-;49343:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49446:58;49452:6;49460:9;49471:6;49479:4;49485:12;49499:4;49446:5;:58::i;:::-;49105:407;;;;;:::o;46037:144::-;46151:22;;46124:7;46151:22;;;:9;:22;;;;;;;46037:144::o;16395:138::-;16468:7;16495:12;;;;;;;;;;:30;;16519:5;16495:30;:23;:30;:::i;:::-;16488:37;16395:138;-1:-1:-1;;;16395:138:0:o;15356:139::-;15425:4;15449:12;;;;;;;;;;:38;;15479:7;15449:38;:29;:38;:::i;62345:146::-;62412:7;62439:44;62448:20;62470:12;62439:8;:44::i;47878:423::-;47983:8;47967:24;;:12;:10;:12::i;:::-;:24;;;;47959:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48049:27;;;;;;;:17;:27;;;;;;;;48045:189;;;48100:24;:38;48125:12;:10;:12::i;:::-;48100:38;;;;;;;;;;;;;;;;;;-1:-1:-1;48100:38:0;;;:48;;;;;;;;;48093:55;;;;;;48045:189;;;48218:4;48181:10;:24;48192:12;:10;:12::i;:::-;48181:24;;;;;;;;;;;;;;;;;;-1:-1:-1;48181:24:0;;;:34;;;;;;;;;:41;;;;;;;;;;;;;48045:189;48280:12;:10;:12::i;:::-;48251:42;;48270:8;48251:42;;;;;;;;;;;;47878:423;:::o;45174:96::-;45255:7;45248:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45222:13;;45248:14;;45255:7;;45248:14;;45255:7;45248:14;;;;;;;;;;;;;;;;;;;;;;;;46318:166;46422:54;46428:12;:10;:12::i;:::-;46442:9;46453:6;46461:4;46422:54;;;;;;;;;;;;46471:4;46422:5;:54::i;:::-;46318:166;;;:::o;14524:49::-;14569:4;14524:49;:::o;46725:451::-;46811:4;46836:23;;;46828:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46913:12;46928;:10;:12::i;:::-;46913:27;;46953:56;46971:4;46977;46983:9;46994:6;46953:56;;;;;;;;;;;;;;;;;;;;;;;;:17;:56::i;:::-;47022:44;47028:4;47034;47040:9;47051:6;47022:44;;;;;;;;;;;;;;;;;;;;;;;;:5;:44::i;:::-;47079:65;47099:4;47105;47111:9;47122:6;47079:65;;;;;;;;;;;;;;;;;;;;;;;;47138:5;47079:19;:65::i;61614:38::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61614:38:0;;;;;;:::o;15669:127::-;15732:7;15759:12;;;;;;;;;;:29;;:27;:29::i;65831:62::-;65869:24;;;;;;;;;;;;;;;;65831:62;:::o;17570:230::-;17663:6;:12;;;;;;;;;;:22;;;17655:45;;17687:12;:10;:12::i;17655:45::-;17647:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47511:295;47603:4;47639:11;47627:23;;:8;:23;;;:121;;;-1:-1:-1;47668:27:0;;;;;;;:17;:27;;;;;;;;:79;;;;-1:-1:-1;47700:37:0;;;;;;;;:24;:37;;;;;;;;:47;;;;;;;;;;;;47699:48;47668:79;47627:171;;;-1:-1:-1;;47765:23:0;;;;;;;;:10;:23;;;;;;;;:33;;;;;;;;;;;;;;;;47511:295::o;66231:311::-;65869:24;;;;;;;;;;;;;;;;66397:32;;66418:10;66397:7;:32::i;:::-;66389:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66488:46;66494:7;66503:6;66511:8;66521:12;66488:5;:46::i;:::-;66231:311;;;;:::o;50178:145::-;50287:19;;;;50260:7;50287:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;50178:145::o;61947:165::-;62065:24;;;62029:7;62065:24;;;:16;:24;;;;;62056:48;;62091:12;62056:8;:48::i;48370:414::-;48468:12;:10;:12::i;:::-;48456:24;;:8;:24;;;;48448:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48535:27;;;;;;;:17;:27;;;;;;;;48531:189;;;48630:4;48579:24;:38;48604:12;:10;:12::i;:::-;48579:38;;;;;;;;;;;;;;;;;;-1:-1:-1;48579:38:0;;;:48;;;;;;;;;:55;;;;;;;;;;;;;48531:189;;;48674:10;:24;48685:12;:10;:12::i;:::-;48674:24;;;;;;;;;;;;;;;;;;-1:-1:-1;48674:24:0;;;:34;;;;;;;;;48667:41;;;;;;48531:189;48763:12;:10;:12::i;:::-;48737:39;;48753:8;48737:39;;;;;;;;;;;;48370:414;:::o;49640:290::-;49784:36;49798:12;:10;:12::i;:::-;49812:7;49784:13;:36::i;:::-;49776:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49880:42;49886:7;49895:6;49903:4;49909:12;49880:5;:42::i;47313:130::-;47398:37;47404:12;:10;:12::i;:::-;47418:6;47426:4;47398:37;;;;;;;;;;;;:5;:37::i;12463:106::-;12551:10;12463:106;:::o;56034:341::-;56128:20;;;56120:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56209:21;;;56201:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56283:19;;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:36;;;56335:32;;;;;;;;;;;;;;;;;56034:341;;;:::o;56859:498::-;57112:78;;;;;;:41;:78;;;;;;43336:66;57112:78;;;;;;57090:19;;42857:42;;57112:41;;:78;;;;;;;;;;;;;;;42857:42;57112:78;;;2:2:-1;;;;27:1;24;17:12;2:2;57112:78:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;57112:78:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;57112:78:0;;-1:-1:-1;57205:25:0;;;;57201:149;;57261:11;57247:39;;;57287:8;57297:4;57303:2;57307:6;57315:8;57325:12;57247:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;57247:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57247:91:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;57247:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57247:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;57247:91:0;;;;57201:149;56859:498;;;;;;;:::o;55345:544::-;55564:48;55585:8;55595:4;55601:2;55605:6;55564:20;:48::i;:::-;55643:70;55663:6;55643:70;;;;;;;;;;;;;;;;;:15;;;;;;;:9;:15;;;;;;;:70;;:19;:70;:::i;:::-;55625:15;;;;;;;;:9;:15;;;;;;:88;;;;55740:13;;;;;;;:25;;55758:6;55740:25;:17;:25;:::i;:::-;55724:9;:13;55734:2;55724:13;;;;;;;;;;;;;;;:41;;;;55804:2;55783:56;;55798:4;55783:56;;55788:8;55783:56;;;55808:6;55816:8;55826:12;55783:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;55783:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55783:56:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;55783:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55870:2;55855:26;;55864:4;55855:26;;;55874:6;55855:26;;;;;;;;;;;;;;;;;;55345:544;;;;;;:::o;33298:192::-;33384:7;33420:12;33412:6;;;;33404:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33404:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33456:5:0;;;33298:192::o;58059:705::-;58349:79;;;;;;:41;:79;;;;;;43523:66;58349:79;;;;;;58327:19;;42857:42;;58349:41;;:79;;;;;;;;;;;;;;;42857:42;58349:79;;;2:2:-1;;;;27:1;24;17:12;2:2;58349:79:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;58349:79:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;58349:79:0;;-1:-1:-1;58443:25:0;;;;58439:318;;58502:11;58485:44;;;58530:8;58540:4;58546:2;58550:6;58558:8;58568:12;58485:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;58485:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58485:96:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;58485:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58485:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;58485:96:0;;;;58439:318;;;58603:19;58599:158;;;58648:15;:2;:13;;;:15::i;:::-;58647:16;58639:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58059:705;;;;;;;;:::o;19427:188::-;19501:6;:12;;;;;;;;;;:33;;19526:7;19501:33;:24;:33;:::i;:::-;19497:111;;;19583:12;:10;:12::i;:::-;19556:40;;19574:7;19556:40;;19568:4;19556:40;;;;;;;;;;19427:188;;:::o;19623:192::-;19698:6;:12;;;;;;;;;;:36;;19726:7;19698:36;:27;:36;:::i;:::-;19694:114;;;19783:12;:10;:12::i;:::-;19756:40;;19774:7;19756:40;;19768:4;19756:40;;;;;;;;;;19623:192;;:::o;53575:691::-;53828:18;;;53820:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53904:16;;;53896:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53970:16;53989:12;:10;:12::i;:::-;53970:31;;54014:69;54032:8;54042:4;54048:2;54052:6;54060:8;54070:12;54014:17;:69::i;:::-;54096:57;54102:8;54112:4;54118:2;54122:6;54130:8;54140:12;54096:5;:57::i;:::-;54166:92;54186:8;54196:4;54202:2;54206:6;54214:8;54224:12;54238:19;54166;:92::i;7160:149::-;7234:7;7277:22;7281:3;7293:5;7277:3;:22::i;6455:158::-;6535:4;6559:46;6569:3;6589:14;;;6559:9;:46::i;63788:1034::-;63943:16;;63900:7;;63974:17;63970:31;;64000:1;63993:8;;;;;63970:31;64070:9;64095:1;64080:12;:16;64070:27;;;;;;;;;;;;;;;;;:37;;;;;64060:47;;;;64056:120;;64131:9;64156:1;64141:12;:16;64131:27;;;;;;;;;;;;;;;;;:33;;;;;;;-1:-1:-1;64124:40:0;;-1:-1:-1;64124:40:0;64056:120;64199:9;64209:1;64199:12;;;;;;;;;;;;;;;;;:22;;;;;64190:31;;;;64186:72;;;64245:1;64238:8;;;;;64186:72;64322:11;64362:16;;;64389:386;64402:3;64396;:9;64389:386;;;64422:11;64454:1;64449;64437:9;;;:13;64436:19;64422:33;;64472:23;64498:9;64508:3;64498:14;;;;;;;;;;;;;;;;;:24;;;;;;-1:-1:-1;64541:25:0;;;;64537:227;;;64594:9;64604:3;64594:14;;;;;;;;;;;;;;;;;:20;;;;;;;-1:-1:-1;64587:27:0;;-1:-1:-1;;;;;64587:27:0;64537:227;64658:6;64640:24;;:15;:24;64636:128;;;64691:3;64685:9;;64636:128;;;64747:1;64741:3;:7;64735:13;;64636:128;64389:386;;;;;64794:9;64804:3;64794:14;;;;;;;;;;;;;;;;;:20;;;;;;;63788:1034;-1:-1:-1;;;;;;63788:1034:0:o;6699:117::-;6762:7;6789:19;6797:3;6789:7;:19::i;52328:760::-;52528:21;;;52520:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52599:16;52618:12;:10;:12::i;:::-;52599:31;;52643:59;52664:8;52682:1;52686:7;52695:6;52643:20;:59::i;:::-;52765:12;;:24;;52782:6;52765:24;:16;:24;:::i;:::-;52750:12;:39;52821:18;;;;;;;:9;:18;;;;;;:30;;52844:6;52821:30;:22;:30;:::i;:::-;52800:9;:18;52810:7;52800:18;;;;;;;;;;;;;;;:51;;;;52864:88;52884:8;52902:1;52906:7;52915:6;52923:8;52933:12;52947:4;52864:19;:88::i;:::-;52987:7;52970:57;;52977:8;52970:57;;;52996:6;53004:8;53014:12;52970:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;52970:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52970:57:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;52970:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53043:37;;;;;;;;;;;;53060:1;;53043:37;;;;;;;;;52328:760;;;;;:::o;54580:757::-;54773:18;;;54765:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54843:16;54862:12;:10;:12::i;:::-;54843:31;;54887:73;54905:8;54915:4;54929:1;54933:6;54941:4;54947:12;54887:17;:73::i;:::-;54973:56;54994:8;55004:4;55018:1;55022:6;54973:20;:56::i;:::-;55095:66;55115:6;55095:66;;;;;;;;;;;;;;;;;:15;;;;;;;:9;:15;;;;;;;:66;;:19;:66;:::i;:::-;55077:15;;;;;;;:9;:15;;;;;:84;55187:12;;:24;;55204:6;55187:24;:16;:24;:::i;:::-;55172:12;:39;;;;55246:4;55229:50;;55236:8;55229:50;;;55252:6;55260:4;55266:12;55229:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;55229:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55229:50:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;55229:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55295:34;;;;;;;;55318:1;;55295:34;;;;;;;;;;;;;54580:757;;;;;:::o;62708:799::-;62839:18;;;62835:665;;62912:20;;;;;;;:16;:20;;;;;62895:65;;62934:25;62952:6;62934:13;62929:2;62934:9;:13::i;:::-;:17;:25;:17;:25;:::i;:::-;62895:16;:65::i;:::-;62975;62992:20;63014:25;63032:6;63014:13;:11;:13::i;62975:65::-;62835:665;;;63062:16;;;63058:442;;63133:22;;;;;;;:16;:22;;;;;63116:69;;63157:27;63177:6;63157:15;63150:4;63157:9;:15::i;:::-;:19;:27;:19;:27;:::i;63116:69::-;63200:65;63217:20;63239:25;63257:6;63239:13;:11;:13::i;63058:442::-;63295:2;63287:10;;:4;:10;;;63283:217;;63356:22;;;;;;;:16;:22;;;;;63339:69;;63380:27;63400:6;63380:15;63373:4;63380:9;:15::i;63339:69::-;63440:20;;;;;;;:16;:20;;;;;63423:65;;63462:25;63480:6;63462:13;63457:2;63462:9;:13::i;32411:181::-;32469:7;32501:5;;;32525:6;;;;32517:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9693:619;9753:4;10221:20;;10064:66;10261:23;;;;;;:42;;-1:-1:-1;10288:15:0;;;10261:42;10253:51;9693:619;-1:-1:-1;;;;9693:619:0:o;5901:143::-;5971:4;5995:41;6000:3;6020:14;;;5995:4;:41::i;6220:149::-;6293:4;6317:44;6325:3;6345:14;;;6317:7;:44::i;5443:204::-;5538:18;;5510:7;;5538:26;-1:-1:-1;5530:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621:3;:11;;5633:5;5621:18;;;;;;;;;;;;;;;;5614:25;;5443:204;;;;:::o;4775:129::-;4848:4;4872:19;;;:12;;;;;:19;;;;;;:24;;;4775:129::o;4990:109::-;5073:18;;4990:109::o;32867:136::-;32925:7;32952:43;32956:1;32959;32952:43;;;;;;;;;;;;;;;;;:3;:43::i;65060:600::-;65160:21;;;;65152:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65236:16;;65284:17;;;65283:90;;;65360:12;65320:9;65345:1;65330:12;:16;65320:27;;;;;;;;;;;;;;;;;:37;;;:52;65283:90;65265:388;;;65433:109;;;;;;;;;65472:12;65433:109;;;;;;;;;;;;;;;;27:10:-1;;39:1;23:18;;45:23;;-1:-1;65400:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65265:388;;;65634:6;65590:9;65615:1;65600:12;:16;65590:27;;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;65060:600;;;:::o;2555:414::-;2618:4;2640:21;2650:3;2655:5;2640:9;:21::i;:::-;2635:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;2678:11:0;:23;;;;;;;;;;;;;2861:18;;2839:19;;;:12;;;:19;;;;;;:40;;;;2894:11;;2635:327;-1:-1:-1;2945:5:0;2938:12;;3145:1544;3211:4;3350:19;;;:12;;;:19;;;;;;3386:15;;3382:1300;;3821:18;;3772:14;;;;;3821:22;;;;3748:21;;3821:3;;:22;;4108;;;;;;;;;;;;;;4088:42;;4254:9;4225:3;:11;;4237:13;4225:26;;;;;;;;;;;;;;;;;;;:38;;;;4331:23;;;4373:1;4331:12;;;:23;;;;;;4357:17;;;4331:43;;4483:17;;4331:3;;4483:17;;;;;;;;;;;;;;;;;;;;;;4578:3;:12;;:19;4591:5;4578:19;;;;;;;;;;;4571:26;;;4621:4;4614:11;;;;;;;;3382:1300;4665:5;4658:12;;;;
Swarm Source
ipfs://390a28fa8069140ab3fa17935c1941cfa66495f73b64d3262a85cb032eb768e7
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.