File: contracts-full/libraries/TokenUtils.sol   #1

65       function safeTransfer(address token, address recipient, uint256 amount) internal {
66           (bool success, bytes memory data) = token.call(
67               abi.encodeWithSelector(IERC20Minimal.transfer.selector, recipient, amount)
68:          );
