ERC-20
DAO
Overview
Max Total Supply
9,000,000 GCR
Holders
695 (0.00%)
Total Transfers
-
Market
Price
$0.27 @ 0.000086 ETH (+2.13%)
Onchain Market Cap
$2,416,419.00
Circulating Supply Market Cap
$2,684,907.00
Other Info
Token Contract (WITH 4 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GCRToken
Compiler Version
v0.7.3+commit.9bfce1f6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-12 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity >=0.6.0 <0.8.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.3.0, sets of type `bytes32` (`Bytes32Set`), `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]; } // Bytes32Set struct Bytes32Set { 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(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, 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(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set 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(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, 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(uint160(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(uint160(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(uint160(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(uint160(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)); } } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } } pragma solidity >=0.6.0 <0.8.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); } pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 4; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } pragma solidity >=0.6.0 <0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { using SafeMath for uint256; /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } pragma solidity >=0.6.0 <0.8.0; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } } pragma solidity >=0.6.0 <0.8.0; /** * @dev {ERC20} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract ERC20PresetMinterPauser is Context, AccessControl, ERC20Burnable, ERC20Pausable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract. * * See {ERC20-constructor}. */ constructor(string memory name, string memory symbol) public ERC20(name, symbol) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to, uint256 amount) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint"); _mint(to, amount); } /** * @dev Pauses all token transfers. * * See {ERC20Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC20Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) { super._beforeTokenTransfer(from, to, amount); } } pragma solidity >=0.6.0 <0.8.0; // Adds functionality for minting, burining and pausing GCR tokens. contract GCRToken is ERC20PresetMinterPauser, Ownable { uint256[3] public releaseTimes; // releaseTime address public beneficiary; // vesting beneficiary // _amount = 40000000000 (mints 4M tokens right away) // _amount = 30000000000 (Invoke InitialRelease: mints 3M tokens) // _amount = 20000000000 (Invoke SecondRelease: mints 2M tokens) // _amount = 10000000000 (Invoke ThirdRelease: mints 1M tokens) uint256 InitialReleaseTime = 365 days; uint256 SecondReleaseTime = 730 days; uint256 ThirdReleaseTime = 1095 days; constructor( uint256 _amount, address _vestingBeneficiary ) ERC20PresetMinterPauser('Global Coin Research', 'GCR') { beneficiary = _vestingBeneficiary; // releaseTime in seconds releaseTimes = [(block.timestamp + InitialReleaseTime), (block.timestamp + SecondReleaseTime), (block.timestamp + ThirdReleaseTime)]; _mint(_vestingBeneficiary, _amount); } /** * @notice Transfers tokens held by timelock to beneficiary. * Method adopted from TokenTimelock from OpenZepplin */ function InitialRelease(uint256 _amount) public onlyOwner virtual { // solhint-disable-next-line not-rely-on-time require(_amount <= 60000000000, "Total supply must not exceed 10M."); require(block.timestamp >= releaseTimes[0], "Current time is before release time"); _mint(beneficiary, _amount); } /** * @notice Transfers tokens held by timelock to beneficiary. * Method adopted from TokenTimelock from OpenZepplin */ function SecondRelease(uint256 _amount) public onlyOwner virtual { // solhint-disable-next-line not-rely-on-time require(_amount <= 30000000000, "Total supply must not exceed 10M."); require(block.timestamp >= releaseTimes[1], "Current time is before release time"); _mint(beneficiary, _amount); } /** * @notice Transfers tokens held by timelock to beneficiary. * Method adopted from TokenTimelock from OpenZepplin */ function ThirdRelease(uint256 _amount) public onlyOwner virtual { // solhint-disable-next-line not-rely-on-time require(_amount <= 10000000000, "Total supply must not exceed 10M."); require(block.timestamp >= releaseTimes[2], "Current time is before release time"); _mint(beneficiary, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_vestingBeneficiary","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"InitialRelease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SecondRelease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ThirdRelease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"releaseTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526301e13380600b556303c26700600c556305a39a80600d553480156200002957600080fd5b5060405162003a9038038062003a90833981810160405260408110156200004f57600080fd5b8101908080519060200190929190805190602001909291905050506040518060400160405280601481526020017f476c6f62616c20436f696e2052657365617263680000000000000000000000008152506040518060400160405280600381526020017f474352000000000000000000000000000000000000000000000000000000000081525081818160049080519060200190620000f0929190620007ee565b50806005908051906020019062000109929190620007ee565b506004600660006101000a81548160ff021916908360ff16021790555050506000600660016101000a81548160ff021916908315150217905550620001676000801b6200015b6200033160201b60201c565b6200033960201b60201c565b620001a87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200019c6200033160201b60201c565b6200033960201b60201c565b620001e97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001dd6200033160201b60201c565b6200033960201b60201c565b50506000620001fd6200033160201b60201c565b905080600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280600b5442018152602001600c5442018152602001600d54420181525060079060036200031692919062000875565b506200032981836200034f60201b60201c565b5050620008d9565b600033905090565b6200034b82826200052f60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200040760008383620005d260201b60201c565b6200042381600354620005ef60201b62001db21790919060201c565b6003819055506200048281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620005ef60201b62001db21790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6200055d816000808581526020019081526020016000206000016200067860201b62001e3a1790919060201c565b15620005ce57620005736200033160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620005ea838383620006b060201b62001e6a1760201c565b505050565b6000808284019050838110156200066e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000620006a8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200073560201b60201c565b905092915050565b620006c8838383620007af60201b62001ed81760201c565b620006d8620007b460201b60201c565b1562000730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018062003a66602a913960400191505060405180910390fd5b505050565b6000620007498383620007cb60201b60201c565b620007a4578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620007a9565b600090505b92915050565b505050565b6000600660019054906101000a900460ff16905090565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200083157805160ff191683800117855562000862565b8280016001018555821562000862579182015b828111156200086157825182559160200191906001019062000844565b5b509050620008719190620008ba565b5090565b8260038101928215620008a7579160200282015b82811115620008a657825182559160200191906001019062000889565b5b509050620008b69190620008ba565b5090565b5b80821115620008d5576000816000905550600101620008bb565b5090565b61317d80620008e96000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c8063715018a611610125578063a9059cbb116100ad578063d547741f1161007c578063d547741f146109e3578063dd62ed3e14610a31578063e63ab1e914610aa9578063f2fde38b14610ac7578063f626f7c214610b0b57610211565b8063a9059cbb146108f1578063ae2e9c9714610955578063ca15c87314610983578063d5391393146109c557610211565b80639010d07c116100f45780639010d07c1461072657806391d148541461078857806395d89b41146107ec578063a217fddf1461086f578063a457c2d71461088d57610211565b8063715018a61461069057806379cc67901461069a5780638456cb59146106e85780638da5cb5b146106f257610211565b8063313ce567116101a85780633f4ba83a116101775780633f4ba83a1461059257806340c10f191461059c57806342966c68146105ea5780635c975abb1461061857806370a082311461063857610211565b8063313ce5671461048b57806336568abe146104ac57806338af3eed146104fa578063395093511461052e57610211565b80631a6de94b116101e45780631a6de94b1461034957806323b872dd14610377578063248a9ca3146103fb5780632f2ff15d1461043d57610211565b806306fdde0314610216578063095ea7b314610299578063146c3ec9146102fd57806318160ddd1461032b575b600080fd5b61021e610b4d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025e578082015181840152602081019050610243565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e5600480360360408110156102af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bef565b60405180821515815260200191505060405180910390f35b6103296004803603602081101561031357600080fd5b8101908080359060200190929190505050610c0d565b005b610333610db1565b6040518082815260200191505060405180910390f35b6103756004803603602081101561035f57600080fd5b8101908080359060200190929190505050610dbb565b005b6103e36004803603606081101561038d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f5f565b60405180821515815260200191505060405180910390f35b6104276004803603602081101561041157600080fd5b8101908080359060200190929190505050611038565b6040518082815260200191505060405180910390f35b6104896004803603604081101561045357600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611057565b005b6104936110e0565b604051808260ff16815260200191505060405180910390f35b6104f8600480360360408110156104c257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110f7565b005b610502611190565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61057a6004803603604081101561054457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111b6565b60405180821515815260200191505060405180910390f35b61059a611269565b005b6105e8600480360360408110156105b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112f9565b005b6106166004803603602081101561060057600080fd5b810190808035906020019092919050505061138d565b005b6106206113a1565b60405180821515815260200191505060405180910390f35b61067a6004803603602081101561064e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113b8565b6040518082815260200191505060405180910390f35b610698611401565b005b6106e6600480360360408110156106b057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611571565b005b6106f06115d3565b005b6106fa611663565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61075c6004803603604081101561073c57600080fd5b81019080803590602001909291908035906020019092919050505061168d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107d46004803603604081101561079e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116be565b60405180821515815260200191505060405180910390f35b6107f46116ef565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610834578082015181840152602081019050610819565b50505050905090810190601f1680156108615780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610877611791565b6040518082815260200191505060405180910390f35b6108d9600480360360408110156108a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611798565b60405180821515815260200191505060405180910390f35b61093d6004803603604081101561090757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611865565b60405180821515815260200191505060405180910390f35b6109816004803603602081101561096b57600080fd5b8101908080359060200190929190505050611883565b005b6109af6004803603602081101561099957600080fd5b8101908080359060200190929190505050611a27565b6040518082815260200191505060405180910390f35b6109cd611a4d565b6040518082815260200191505060405180910390f35b610a2f600480360360408110156109f957600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a71565b005b610a9360048036036040811015610a4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611afa565b6040518082815260200191505060405180910390f35b610ab1611b81565b6040518082815260200191505060405180910390f35b610b0960048036036020811015610add57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ba5565b005b610b3760048036036020811015610b2157600080fd5b8101908080359060200190929190505050611d9a565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b5050505050905090565b6000610c03610bfc611edd565b8484611ee5565b6001905092915050565b610c15611edd565b73ffffffffffffffffffffffffffffffffffffffff16610c33611663565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b640df8475800811115610d1a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130a96021913960400191505060405180910390fd5b6007600060038110610d2857fe5b0154421015610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f336023913960400191505060405180910390fd5b610dae600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120dc565b50565b6000600354905090565b610dc3611edd565b73ffffffffffffffffffffffffffffffffffffffff16610de1611663565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6402540be400811115610ec8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130a96021913960400191505060405180910390fd5b6007600260038110610ed657fe5b0154421015610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f336023913960400191505060405180910390fd5b610f5c600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120dc565b50565b6000610f6c8484846122a5565b61102d84610f78611edd565b61102885604051806060016040528060288152602001612f8660289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fde611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256a9092919063ffffffff16565b611ee5565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b61107d60008084815260200190815260200160002060020154611078611edd565b6116be565b6110d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612e3b602f913960400191505060405180910390fd5b6110dc828261262a565b5050565b6000600660009054906101000a900460ff16905090565b6110ff611edd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806130ef602f913960400191505060405180910390fd5b61118c82826126bd565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061125f6111c3611edd565b8461125a85600260006111d4611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db290919063ffffffff16565b611ee5565b6001905092915050565b61129a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611295611edd565b6116be565b6112ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180612e8c6039913960400191505060405180910390fd5b6112f7612750565b565b61132a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6611325611edd565b6116be565b61137f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180612fae6036913960400191505060405180910390fd5b61138982826120dc565b5050565b61139e611398611edd565b82612843565b50565b6000600660019054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611409611edd565b73ffffffffffffffffffffffffffffffffffffffff16611427611663565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006115b082604051806060016040528060248152602001612fe4602491396115a18661159c611edd565b611afa565b61256a9092919063ffffffff16565b90506115c4836115be611edd565b83611ee5565b6115ce8383612843565b505050565b6116047f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6115ff611edd565b6116be565b611659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806130726037913960400191505060405180910390fd5b611661612a09565b565b6000600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006116b682600080868152602001908152602001600020600001612afd90919063ffffffff16565b905092915050565b60006116e782600080868152602001908152602001600020600001612b1790919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117875780601f1061175c57610100808354040283529160200191611787565b820191906000526020600020905b81548152906001019060200180831161176a57829003601f168201915b5050505050905090565b6000801b81565b600061185b6117a5611edd565b84611856856040518060600160405280602581526020016130ca60259139600260006117cf611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256a9092919063ffffffff16565b611ee5565b6001905092915050565b6000611879611872611edd565b84846122a5565b6001905092915050565b61188b611edd565b73ffffffffffffffffffffffffffffffffffffffff166118a9611663565b73ffffffffffffffffffffffffffffffffffffffff1614611932576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6406fc23ac00811115611990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130a96021913960400191505060405180910390fd5b600760016003811061199e57fe5b01544210156119f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f336023913960400191505060405180910390fd5b611a24600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120dc565b50565b6000611a46600080848152602001908152602001600020600001612b47565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611a9760008084815260200190815260200160002060020154611a92611edd565b6116be565b611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612f566030913960400191505060405180910390fd5b611af682826126bd565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b611bad611edd565b73ffffffffffffffffffffffffffffffffffffffff16611bcb611663565b73ffffffffffffffffffffffffffffffffffffffff1614611c54576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612ec56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60078160038110611da757fe5b016000915090505481565b600080828401905083811015611e30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611e62836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612b5c565b905092915050565b611e75838383611ed8565b611e7d6113a1565b15611ed3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061311e602a913960400191505060405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061304e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612eeb6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561217f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61218b60008383612bcc565b6121a081600354611db290919063ffffffff16565b6003819055506121f881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561232b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806130296025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612e186023913960400191505060405180910390fd5b6123bc838383612bcc565b61242881604051806060016040528060268152602001612f0d60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256a9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124bd81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612617576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125dc5780820151818401526020810190506125c1565b50505050905090810190601f1680156126095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61265181600080858152602001908152602001600020600001611e3a90919063ffffffff16565b156126b95761265e611edd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6126e481600080858152602001908152602001600020600001612bdc90919063ffffffff16565b1561274c576126f1611edd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600660019054906101000a900460ff166127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612816611edd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130086021913960400191505060405180910390fd5b6128d582600083612bcc565b61294181604051806060016040528060228152602001612e6a60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256a9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061299981600354612c0c90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600660019054906101000a900460ff1615612a8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ad0611edd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000612b0c8360000183612c56565b60001c905092915050565b6000612b3f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612cd9565b905092915050565b6000612b5582600001612cfc565b9050919050565b6000612b688383612cd9565b612bc1578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612bc6565b600090505b92915050565b612bd7838383611e6a565b505050565b6000612c04836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d0d565b905092915050565b6000612c4e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061256a565b905092915050565b600081836000018054905011612cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612df66022913960400191505060405180910390fd5b826000018281548110612cc657fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114612de95760006001820390506000600186600001805490500390506000866000018281548110612d5857fe5b9060005260206000200154905080876000018481548110612d7557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612dad57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612def565b60009150505b9291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e70617573654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636543757272656e742074696d65206973206265666f72652072656c656173652074696d65416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f207061757365546f74616c20737570706c79206d757374206e6f74206578636565642031304d2e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a264697066735822122099af77f0365ff5c8fa26b8eb1e965f0ac03d611ba65cbdd062bcc6af2be0609f64736f6c6343000703003345524332305061757361626c653a20746f6b656e207472616e73666572207768696c652070617573656400000000000000000000000000000000000000000000000000000009502f90000000000000000000000000009057e3b928e0b0b9ca2767a68538b3adb290bc85
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102115760003560e01c8063715018a611610125578063a9059cbb116100ad578063d547741f1161007c578063d547741f146109e3578063dd62ed3e14610a31578063e63ab1e914610aa9578063f2fde38b14610ac7578063f626f7c214610b0b57610211565b8063a9059cbb146108f1578063ae2e9c9714610955578063ca15c87314610983578063d5391393146109c557610211565b80639010d07c116100f45780639010d07c1461072657806391d148541461078857806395d89b41146107ec578063a217fddf1461086f578063a457c2d71461088d57610211565b8063715018a61461069057806379cc67901461069a5780638456cb59146106e85780638da5cb5b146106f257610211565b8063313ce567116101a85780633f4ba83a116101775780633f4ba83a1461059257806340c10f191461059c57806342966c68146105ea5780635c975abb1461061857806370a082311461063857610211565b8063313ce5671461048b57806336568abe146104ac57806338af3eed146104fa578063395093511461052e57610211565b80631a6de94b116101e45780631a6de94b1461034957806323b872dd14610377578063248a9ca3146103fb5780632f2ff15d1461043d57610211565b806306fdde0314610216578063095ea7b314610299578063146c3ec9146102fd57806318160ddd1461032b575b600080fd5b61021e610b4d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025e578082015181840152602081019050610243565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e5600480360360408110156102af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bef565b60405180821515815260200191505060405180910390f35b6103296004803603602081101561031357600080fd5b8101908080359060200190929190505050610c0d565b005b610333610db1565b6040518082815260200191505060405180910390f35b6103756004803603602081101561035f57600080fd5b8101908080359060200190929190505050610dbb565b005b6103e36004803603606081101561038d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f5f565b60405180821515815260200191505060405180910390f35b6104276004803603602081101561041157600080fd5b8101908080359060200190929190505050611038565b6040518082815260200191505060405180910390f35b6104896004803603604081101561045357600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611057565b005b6104936110e0565b604051808260ff16815260200191505060405180910390f35b6104f8600480360360408110156104c257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110f7565b005b610502611190565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61057a6004803603604081101561054457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111b6565b60405180821515815260200191505060405180910390f35b61059a611269565b005b6105e8600480360360408110156105b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112f9565b005b6106166004803603602081101561060057600080fd5b810190808035906020019092919050505061138d565b005b6106206113a1565b60405180821515815260200191505060405180910390f35b61067a6004803603602081101561064e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113b8565b6040518082815260200191505060405180910390f35b610698611401565b005b6106e6600480360360408110156106b057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611571565b005b6106f06115d3565b005b6106fa611663565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61075c6004803603604081101561073c57600080fd5b81019080803590602001909291908035906020019092919050505061168d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107d46004803603604081101561079e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116be565b60405180821515815260200191505060405180910390f35b6107f46116ef565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610834578082015181840152602081019050610819565b50505050905090810190601f1680156108615780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610877611791565b6040518082815260200191505060405180910390f35b6108d9600480360360408110156108a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611798565b60405180821515815260200191505060405180910390f35b61093d6004803603604081101561090757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611865565b60405180821515815260200191505060405180910390f35b6109816004803603602081101561096b57600080fd5b8101908080359060200190929190505050611883565b005b6109af6004803603602081101561099957600080fd5b8101908080359060200190929190505050611a27565b6040518082815260200191505060405180910390f35b6109cd611a4d565b6040518082815260200191505060405180910390f35b610a2f600480360360408110156109f957600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a71565b005b610a9360048036036040811015610a4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611afa565b6040518082815260200191505060405180910390f35b610ab1611b81565b6040518082815260200191505060405180910390f35b610b0960048036036020811015610add57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ba5565b005b610b3760048036036020811015610b2157600080fd5b8101908080359060200190929190505050611d9a565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b5050505050905090565b6000610c03610bfc611edd565b8484611ee5565b6001905092915050565b610c15611edd565b73ffffffffffffffffffffffffffffffffffffffff16610c33611663565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b640df8475800811115610d1a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130a96021913960400191505060405180910390fd5b6007600060038110610d2857fe5b0154421015610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f336023913960400191505060405180910390fd5b610dae600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120dc565b50565b6000600354905090565b610dc3611edd565b73ffffffffffffffffffffffffffffffffffffffff16610de1611663565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6402540be400811115610ec8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130a96021913960400191505060405180910390fd5b6007600260038110610ed657fe5b0154421015610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f336023913960400191505060405180910390fd5b610f5c600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120dc565b50565b6000610f6c8484846122a5565b61102d84610f78611edd565b61102885604051806060016040528060288152602001612f8660289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fde611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256a9092919063ffffffff16565b611ee5565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b61107d60008084815260200190815260200160002060020154611078611edd565b6116be565b6110d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612e3b602f913960400191505060405180910390fd5b6110dc828261262a565b5050565b6000600660009054906101000a900460ff16905090565b6110ff611edd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806130ef602f913960400191505060405180910390fd5b61118c82826126bd565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061125f6111c3611edd565b8461125a85600260006111d4611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db290919063ffffffff16565b611ee5565b6001905092915050565b61129a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611295611edd565b6116be565b6112ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180612e8c6039913960400191505060405180910390fd5b6112f7612750565b565b61132a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6611325611edd565b6116be565b61137f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180612fae6036913960400191505060405180910390fd5b61138982826120dc565b5050565b61139e611398611edd565b82612843565b50565b6000600660019054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611409611edd565b73ffffffffffffffffffffffffffffffffffffffff16611427611663565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006115b082604051806060016040528060248152602001612fe4602491396115a18661159c611edd565b611afa565b61256a9092919063ffffffff16565b90506115c4836115be611edd565b83611ee5565b6115ce8383612843565b505050565b6116047f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6115ff611edd565b6116be565b611659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806130726037913960400191505060405180910390fd5b611661612a09565b565b6000600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006116b682600080868152602001908152602001600020600001612afd90919063ffffffff16565b905092915050565b60006116e782600080868152602001908152602001600020600001612b1790919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117875780601f1061175c57610100808354040283529160200191611787565b820191906000526020600020905b81548152906001019060200180831161176a57829003601f168201915b5050505050905090565b6000801b81565b600061185b6117a5611edd565b84611856856040518060600160405280602581526020016130ca60259139600260006117cf611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256a9092919063ffffffff16565b611ee5565b6001905092915050565b6000611879611872611edd565b84846122a5565b6001905092915050565b61188b611edd565b73ffffffffffffffffffffffffffffffffffffffff166118a9611663565b73ffffffffffffffffffffffffffffffffffffffff1614611932576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6406fc23ac00811115611990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130a96021913960400191505060405180910390fd5b600760016003811061199e57fe5b01544210156119f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f336023913960400191505060405180910390fd5b611a24600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120dc565b50565b6000611a46600080848152602001908152602001600020600001612b47565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611a9760008084815260200190815260200160002060020154611a92611edd565b6116be565b611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612f566030913960400191505060405180910390fd5b611af682826126bd565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b611bad611edd565b73ffffffffffffffffffffffffffffffffffffffff16611bcb611663565b73ffffffffffffffffffffffffffffffffffffffff1614611c54576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612ec56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60078160038110611da757fe5b016000915090505481565b600080828401905083811015611e30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611e62836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612b5c565b905092915050565b611e75838383611ed8565b611e7d6113a1565b15611ed3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061311e602a913960400191505060405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061304e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612eeb6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561217f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61218b60008383612bcc565b6121a081600354611db290919063ffffffff16565b6003819055506121f881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561232b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806130296025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612e186023913960400191505060405180910390fd5b6123bc838383612bcc565b61242881604051806060016040528060268152602001612f0d60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256a9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124bd81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612617576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125dc5780820151818401526020810190506125c1565b50505050905090810190601f1680156126095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61265181600080858152602001908152602001600020600001611e3a90919063ffffffff16565b156126b95761265e611edd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6126e481600080858152602001908152602001600020600001612bdc90919063ffffffff16565b1561274c576126f1611edd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600660019054906101000a900460ff166127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612816611edd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130086021913960400191505060405180910390fd5b6128d582600083612bcc565b61294181604051806060016040528060228152602001612e6a60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256a9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061299981600354612c0c90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600660019054906101000a900460ff1615612a8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ad0611edd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000612b0c8360000183612c56565b60001c905092915050565b6000612b3f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612cd9565b905092915050565b6000612b5582600001612cfc565b9050919050565b6000612b688383612cd9565b612bc1578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612bc6565b600090505b92915050565b612bd7838383611e6a565b505050565b6000612c04836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d0d565b905092915050565b6000612c4e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061256a565b905092915050565b600081836000018054905011612cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612df66022913960400191505060405180910390fd5b826000018281548110612cc657fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114612de95760006001820390506000600186600001805490500390506000866000018281548110612d5857fe5b9060005260206000200154905080876000018481548110612d7557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612dad57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612def565b60009150505b9291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e70617573654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636543757272656e742074696d65206973206265666f72652072656c656173652074696d65416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f207061757365546f74616c20737570706c79206d757374206e6f74206578636565642031304d2e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a264697066735822122099af77f0365ff5c8fa26b8eb1e965f0ac03d611ba65cbdd062bcc6af2be0609f64736f6c63430007030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000009502f90000000000000000000000000009057e3b928e0b0b9ca2767a68538b3adb290bc85
-----Decoded View---------------
Arg [0] : _amount (uint256): 40000000000
Arg [1] : _vestingBeneficiary (address): 0x9057e3B928E0b0b9cA2767a68538B3ADB290bc85
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000009502f9000
Arg [1] : 0000000000000000000000009057e3b928e0b0b9ca2767a68538b3adb290bc85
Deployed Bytecode Sourcemap
54137:2475:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38412:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40518:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55285:339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39487:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56272:337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41169:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25007:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25383:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39339:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26592:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54251:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41899:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53653:178;;;:::i;:::-;;52844:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47688:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49428:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39650:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2635:148;;;:::i;:::-;;48098:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53263:172;;;:::i;:::-;;1984:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24680:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23641:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38614:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22386:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42620:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39982:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55779:338;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23954:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52079:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25855:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40220:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52148:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2938:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54198:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38412:83;38449:13;38482:5;38475:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38412:83;:::o;40518:169::-;40601:4;40618:39;40627:12;:10;:12::i;:::-;40641:7;40650:6;40618:8;:39::i;:::-;40675:4;40668:11;;40518:169;;;;:::o;55285:339::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55436:11:::1;55425:7;:22;;55417:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55523:12;55536:1;55523:15;;;;;;;;;55504;:34;;55496:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55589:27;55595:11;;;;;;;;;;;55608:7;55589:5;:27::i;:::-;55285:339:::0;:::o;39487:100::-;39540:7;39567:12;;39560:19;;39487:100;:::o;56272:337::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56421:11:::1;56410:7;:22;;56402:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56508:12;56521:1;56508:15;;;;;;;;;56489;:34;;56481:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56574:27;56580:11;;;;;;;;;;;56593:7;56574:5;:27::i;:::-;56272:337:::0;:::o;41169:321::-;41275:4;41292:36;41302:6;41310:9;41321:6;41292:9;:36::i;:::-;41339:121;41348:6;41356:12;:10;:12::i;:::-;41370:89;41408:6;41370:89;;;;;;;;;;;;;;;;;:11;:19;41382:6;41370:19;;;;;;;;;;;;;;;:33;41390:12;:10;:12::i;:::-;41370:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;41339:8;:121::i;:::-;41478:4;41471:11;;41169:321;;;;;:::o;25007:114::-;25064:7;25091:6;:12;25098:4;25091:12;;;;;;;;;;;:22;;;25084:29;;25007:114;;;:::o;25383:227::-;25467:45;25475:6;:12;25482:4;25475:12;;;;;;;;;;;:22;;;25499:12;:10;:12::i;:::-;25467:7;:45::i;:::-;25459:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25577:25;25588:4;25594:7;25577:10;:25::i;:::-;25383:227;;:::o;39339:83::-;39380:5;39405:9;;;;;;;;;;;39398:16;;39339:83;:::o;26592:209::-;26690:12;:10;:12::i;:::-;26679:23;;:7;:23;;;26671:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26767:26;26779:4;26785:7;26767:11;:26::i;:::-;26592:209;;:::o;54251:26::-;;;;;;;;;;;;;:::o;41899:218::-;41987:4;42004:83;42013:12;:10;:12::i;:::-;42027:7;42036:50;42075:10;42036:11;:25;42048:12;:10;:12::i;:::-;42036:25;;;;;;;;;;;;;;;:34;42062:7;42036:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;42004:8;:83::i;:::-;42105:4;42098:11;;41899:218;;;;:::o;53653:178::-;53706:34;52186:24;53727:12;:10;:12::i;:::-;53706:7;:34::i;:::-;53698:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53813:10;:8;:10::i;:::-;53653:178::o;52844:205::-;52920:34;52117:24;52941:12;:10;:12::i;:::-;52920:7;:34::i;:::-;52912:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53024:17;53030:2;53034:6;53024:5;:17::i;:::-;52844:205;;:::o;47688:91::-;47744:27;47750:12;:10;:12::i;:::-;47764:6;47744:5;:27::i;:::-;47688:91;:::o;49428:78::-;49467:4;49491:7;;;;;;;;;;;49484:14;;49428:78;:::o;39650:119::-;39716:7;39743:9;:18;39753:7;39743:18;;;;;;;;;;;;;;;;39736:25;;39650:119;;;:::o;2635:148::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2742:1:::1;2705:40;;2726:6;;;;;;;;;;;2705:40;;;;;;;;;;;;2773:1;2756:6;;:19;;;;;;;;;;;;;;;;;;2635:148::o:0;48098:295::-;48175:26;48204:84;48241:6;48204:84;;;;;;;;;;;;;;;;;:32;48214:7;48223:12;:10;:12::i;:::-;48204:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;48175:113;;48301:51;48310:7;48319:12;:10;:12::i;:::-;48333:18;48301:8;:51::i;:::-;48363:22;48369:7;48378:6;48363:5;:22::i;:::-;48098:295;;;:::o;53263:172::-;53314:34;52186:24;53335:12;:10;:12::i;:::-;53314:7;:34::i;:::-;53306:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53419:8;:6;:8::i;:::-;53263:172::o;1984:87::-;2030:7;2057:6;;;;;;;;;;;2050:13;;1984:87;:::o;24680:138::-;24753:7;24780:30;24804:5;24780:6;:12;24787:4;24780:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;24773:37;;24680:138;;;;:::o;23641:139::-;23710:4;23734:38;23764:7;23734:6;:12;23741:4;23734:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;23727:45;;23641:139;;;;:::o;38614:87::-;38653:13;38686:7;38679:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38614:87;:::o;22386:49::-;22431:4;22386:49;;;:::o;42620:269::-;42713:4;42730:129;42739:12;:10;:12::i;:::-;42753:7;42762:96;42801:15;42762:96;;;;;;;;;;;;;;;;;:11;:25;42774:12;:10;:12::i;:::-;42762:25;;;;;;;;;;;;;;;:34;42788:7;42762:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;42730:8;:129::i;:::-;42877:4;42870:11;;42620:269;;;;:::o;39982:175::-;40068:4;40085:42;40095:12;:10;:12::i;:::-;40109:9;40120:6;40085:9;:42::i;:::-;40145:4;40138:11;;39982:175;;;;:::o;55779:338::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55929:11:::1;55918:7;:22;;55910:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56016:12;56029:1;56016:15;;;;;;;;;55997;:34;;55989:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56082:27;56088:11;;;;;;;;;;;56101:7;56082:5;:27::i;:::-;55779:338:::0;:::o;23954:127::-;24017:7;24044:29;:6;:12;24051:4;24044:12;;;;;;;;;;;:20;;:27;:29::i;:::-;24037:36;;23954:127;;;:::o;52079:62::-;52117:24;52079:62;:::o;25855:230::-;25940:45;25948:6;:12;25955:4;25948:12;;;;;;;;;;;:22;;;25972:12;:10;:12::i;:::-;25940:7;:45::i;:::-;25932:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26051:26;26063:4;26069:7;26051:11;:26::i;:::-;25855:230;;:::o;40220:151::-;40309:7;40336:11;:18;40348:5;40336:18;;;;;;;;;;;;;;;:27;40355:7;40336:27;;;;;;;;;;;;;;;;40329:34;;40220:151;;;;:::o;52148:62::-;52186:24;52148:62;:::o;2938:244::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3047:1:::1;3027:22;;:8;:22;;;;3019:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3137:8;3108:38;;3129:6;;;;;;;;;;;3108:38;;;;;;;;;;;;3166:8;3157:6;;:17;;;;;;;;;;;;;;;;;;2938:244:::0;:::o;54198:30::-;;;;;;;;;;;;;;;;;;:::o;31853:181::-;31911:7;31931:9;31947:1;31943;:5;31931:17;;31972:1;31967;:6;;31959:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32025:1;32018:8;;;31853:181;;;;:::o;17721:152::-;17791:4;17815:50;17820:3;:10;;17856:5;17840:23;;17832:32;;17815:4;:50::i;:::-;17808:57;;17721:152;;;;:::o;51122:238::-;51231:44;51258:4;51264:2;51268:6;51231:26;:44::i;:::-;51297:8;:6;:8::i;:::-;51296:9;51288:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51122:238;;;:::o;47138:92::-;;;;:::o;613:106::-;666:15;701:10;694:17;;613:106;:::o;45767:346::-;45886:1;45869:19;;:5;:19;;;;45861:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45967:1;45948:21;;:7;:21;;;;45940:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46051:6;46021:11;:18;46033:5;46021:18;;;;;;;;;;;;;;;:27;46040:7;46021:27;;;;;;;;;;;;;;;:36;;;;46089:7;46073:32;;46082:5;46073:32;;;46098:6;46073:32;;;;;;;;;;;;;;;;;;45767:346;;;:::o;44200:378::-;44303:1;44284:21;;:7;:21;;;;44276:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44354:49;44383:1;44387:7;44396:6;44354:20;:49::i;:::-;44431:24;44448:6;44431:12;;:16;;:24;;;;:::i;:::-;44416:12;:39;;;;44487:30;44510:6;44487:9;:18;44497:7;44487:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;44466:9;:18;44476:7;44466:18;;;;;;;;;;;;;;;:51;;;;44554:7;44533:37;;44550:1;44533:37;;;44563:6;44533:37;;;;;;;;;;;;;;;;;;44200:378;;:::o;43379:539::-;43503:1;43485:20;;:6;:20;;;;43477:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43587:1;43566:23;;:9;:23;;;;43558:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43642:47;43663:6;43671:9;43682:6;43642:20;:47::i;:::-;43722:71;43744:6;43722:71;;;;;;;;;;;;;;;;;:9;:17;43732:6;43722:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;43702:9;:17;43712:6;43702:17;;;;;;;;;;;;;;;:91;;;;43827:32;43852:6;43827:9;:20;43837:9;43827:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;43804:9;:20;43814:9;43804:20;;;;;;;;;;;;;;;:55;;;;43892:9;43875:35;;43884:6;43875:35;;;43903:6;43875:35;;;;;;;;;;;;;;;;;;43379:539;;;:::o;32756:192::-;32842:7;32875:1;32870;:6;;32878:12;32862:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32902:9;32918:1;32914;:5;32902:17;;32939:1;32932:8;;;32756:192;;;;;:::o;27835:188::-;27909:33;27934:7;27909:6;:12;27916:4;27909:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;27905:111;;;27991:12;:10;:12::i;:::-;27964:40;;27982:7;27964:40;;27976:4;27964:40;;;;;;;;;;27905:111;27835:188;;:::o;28031:192::-;28106:36;28134:7;28106:6;:12;28113:4;28106:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;28102:114;;;28191:12;:10;:12::i;:::-;28164:40;;28182:7;28164:40;;28176:4;28164:40;;;;;;;;;;28102:114;28031:192;;:::o;50477:120::-;50022:7;;;;;;;;;;;50014:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50546:5:::1;50536:7;;:15;;;;;;;;;;;;;;;;;;50567:22;50576:12;:10;:12::i;:::-;50567:22;;;;;;;;;;;;;;;;;;;;50477:120::o:0;44911:418::-;45014:1;44995:21;;:7;:21;;;;44987:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45067:49;45088:7;45105:1;45109:6;45067:20;:49::i;:::-;45150:68;45173:6;45150:68;;;;;;;;;;;;;;;;;:9;:18;45160:7;45150:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;45129:9;:18;45139:7;45129:18;;;;;;;;;;;;;;;:89;;;;45244:24;45261:6;45244:12;;:16;;:24;;;;:::i;:::-;45229:12;:39;;;;45310:1;45284:37;;45293:7;45284:37;;;45314:6;45284:37;;;;;;;;;;;;;;;;;;44911:418;;:::o;50218:118::-;49746:7;;;;;;;;;;;49745:8;49737:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50288:4:::1;50278:7;;:14;;;;;;;;;;;;;;;;;;50308:20;50315:12;:10;:12::i;:::-;50308:20;;;;;;;;;;;;;;;;;;;;50218:118::o:0;19007:158::-;19081:7;19132:22;19136:3;:10;;19148:5;19132:3;:22::i;:::-;19124:31;;19101:56;;19007:158;;;;:::o;18293:167::-;18373:4;18397:55;18407:3;:10;;18443:5;18427:23;;18419:32;;18397:9;:55::i;:::-;18390:62;;18293:167;;;;:::o;18546:117::-;18609:7;18636:19;18644:3;:10;;18636:7;:19::i;:::-;18629:26;;18546:117;;;:::o;12785:414::-;12848:4;12870:21;12880:3;12885:5;12870:9;:21::i;:::-;12865:327;;12908:3;:11;;12925:5;12908:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13091:3;:11;;:18;;;;13069:3;:12;;:19;13082:5;13069:19;;;;;;;;;;;:40;;;;13131:4;13124:11;;;;12865:327;13175:5;13168:12;;12785:414;;;;;:::o;53839:183::-;53970:44;53997:4;54003:2;54007:6;53970:26;:44::i;:::-;53839:183;;;:::o;18049:158::-;18122:4;18146:53;18154:3;:10;;18190:5;18174:23;;18166:32;;18146:7;:53::i;:::-;18139:60;;18049:158;;;;:::o;32317:136::-;32375:7;32402:43;32406:1;32409;32402:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;32395:50;;32317:136;;;;:::o;15673:204::-;15740:7;15789:5;15768:3;:11;;:18;;;;:26;15760:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15851:3;:11;;15863:5;15851:18;;;;;;;;;;;;;;;;15844:25;;15673:204;;;;:::o;15005:129::-;15078:4;15125:1;15102:3;:12;;:19;15115:5;15102:19;;;;;;;;;;;;:24;;15095:31;;15005:129;;;;:::o;15220:109::-;15276:7;15303:3;:11;;:18;;;;15296:25;;15220:109;;;:::o;13375:1544::-;13441:4;13559:18;13580:3;:12;;:19;13593:5;13580:19;;;;;;;;;;;;13559:40;;13630:1;13616:10;:15;13612:1300;;13978:21;14015:1;14002:10;:14;13978:38;;14031:17;14072:1;14051:3;:11;;:18;;;;:22;14031:42;;14318:17;14338:3;:11;;14350:9;14338:22;;;;;;;;;;;;;;;;14318:42;;14484:9;14455:3;:11;;14467:13;14455:26;;;;;;;;;;;;;;;:38;;;;14603:1;14587:13;:17;14561:3;:12;;:23;14574:9;14561:23;;;;;;;;;;;:43;;;;14713:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;14808:3;:12;;:19;14821:5;14808:19;;;;;;;;;;;14801:26;;;14851:4;14844:11;;;;;;;;13612:1300;14895:5;14888:12;;;13375:1544;;;;;:::o
Swarm Source
ipfs://99af77f0365ff5c8fa26b8eb1e965f0ac03d611ba65cbdd062bcc6af2be0609f
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.