api_domains.dart 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. import 'dart:convert';
  2. import 'dart:io';
  3. import 'package:dio/dio.dart';
  4. import 'package:dio/io.dart';
  5. import 'package:nomo/app/api/router/api_router.dart';
  6. import 'package:shared_preferences/shared_preferences.dart';
  7. import '../../utils/crypto.dart';
  8. import '../../utils/developer/ix_developer_tools.dart';
  9. import '../../utils/log/logger.dart';
  10. import '../api/core/api_core.dart';
  11. import '../api/file/api_file.dart';
  12. import '../api/log/api_log.dart';
  13. import 'configs.dart';
  14. import '../data/models/launch/launch.dart';
  15. import 'keys.dart';
  16. class ApiDomains {
  17. static final ApiDomains _instance = ApiDomains._internal();
  18. static ApiDomains get instance => _instance;
  19. factory ApiDomains() => _instance;
  20. ApiDomains._internal();
  21. // 常量定义
  22. static const String _STORAGE_API_URLS = 'api_urls';
  23. static const String _STORAGE_ROUTER_URLS = 'router_urls';
  24. static const String _STORAGE_LOG_URLS = 'log_urls';
  25. static const String _STORAGE_FILE_URLS = 'file_urls';
  26. static const String _STORAGE_BACKUP_URLS = 'backup_api_urls';
  27. static const String _STORAGE_API_URLS_INDEX = 'api_urls_index';
  28. static const String _STORAGE_ROUTER_URLS_INDEX = 'router_urls_index';
  29. static const String _STORAGE_LOG_URLS_INDEX = 'log_urls_index';
  30. static const String _STORAGE_FILE_URLS_INDEX = 'file_urls_index';
  31. static const String _STORAGE_IS_HARDCODED = 'is_hardcoded';
  32. static const int RETRY_COUNT_PER_LAUNCH = 2;
  33. final Dio dio = Dio(
  34. BaseOptions(
  35. connectTimeout: const Duration(seconds: 30),
  36. receiveTimeout: const Duration(seconds: 30),
  37. sendTimeout: const Duration(seconds: 30),
  38. ),
  39. );
  40. // 标记是否已经添加了监控拦截器
  41. bool _monitorInterceptorAdded = false;
  42. setProxy(String proxy) {
  43. dio.httpClientAdapter = IOHttpClientAdapter(
  44. createHttpClient: () {
  45. final client = HttpClient();
  46. client.findProxy = (uri) => proxy;
  47. client.badCertificateCallback =
  48. (X509Certificate cert, String host, int port) => true;
  49. return client;
  50. },
  51. );
  52. }
  53. // 默认API URL列表
  54. final List<String> _defaultApiUrls = [
  55. "https://d2aphju2iq7g2g.cloudfront.net",
  56. "https://api.turboaccel.website",
  57. "https://d1rvevafipy7o6.cloudfront.net",
  58. "https://api.speedboost.website",
  59. "https://dqmkongldmyxf.cloudfront.net",
  60. "https://api.fastforward.website",
  61. "https://d2cvqygi5xlqp3.cloudfront.net",
  62. "https://api.odyxighs.com",
  63. "https://service.fkey.club",
  64. ];
  65. // 默认Router URL列表
  66. final List<String> _defaultRouterUrls = [];
  67. // 默认LOG API URL列表
  68. final List<String> _defaultLogUrls = ['https://stat.fkey.win'];
  69. // 默认FILE API URL列表
  70. final List<String> _defaultFileUrls = [];
  71. // 默认备用URL列表(txt文件地址)
  72. final List<String> _defaultBackupApiUrls = [
  73. 'https://drive.google.com/uc?export=download&id=1YMEZiAHPhlAg_xZqD7dSDt0WjlcogwVz',
  74. 'https://fkey.win/.well-known/backup/backup_fk.data',
  75. ];
  76. // 当前使用的URL列表
  77. List<String> _apiUrls = [];
  78. // 当前使用的Router URL列表
  79. List<String> _routerUrls = [];
  80. // 当前使用的LogURL列表
  81. List<String> _logUrls = [];
  82. // 当前使用的FILE URL列表
  83. List<String> _fileUrls = [];
  84. // 当前使用的备用URL列表
  85. List<String> _backupApiUrls = [];
  86. // 当前尝试的索引
  87. int _currentIndex = 0;
  88. // 当前使用的Router URL索引
  89. int _currentRouterIndex = 0;
  90. // 当前使用的LogURL索引
  91. int _currentLogIndex = 0;
  92. // 当前使用的FILE URL索引
  93. int _currentFileIndex = 0;
  94. // 当前正在使用的备用列表索引
  95. int _currentBackupListIndex = 0;
  96. // 添加标志位,标识是否使用的是硬编码URL
  97. bool _isUsingHardcodedUrls = true;
  98. // 添加标志位,记录硬编码请求次数
  99. int _hardcodedRequestCount = 0;
  100. // 初始化方法
  101. Future<void> init() async {
  102. initUrls();
  103. // 尝试加载保存的URLs
  104. await _loadSavedUrls();
  105. }
  106. void initUrls() {
  107. if (Configs.debug) {
  108. _apiUrls = [
  109. // 'https://api.znomo.com', // 测试环境
  110. "https://nomo-api.clickto.dev", // 开发环境
  111. ];
  112. _routerUrls = [];
  113. _logUrls = [];
  114. _fileUrls = [];
  115. _backupApiUrls = [];
  116. } else {
  117. _apiUrls = List.from(_defaultApiUrls);
  118. _routerUrls = List.from(_defaultRouterUrls);
  119. _logUrls = List.from(_defaultLogUrls);
  120. _fileUrls = List.from(_defaultFileUrls);
  121. _backupApiUrls = List.from(_defaultBackupApiUrls);
  122. }
  123. }
  124. // 修改加载保存的URL方法,返回是否成功加载
  125. Future<void> _loadSavedUrls() async {
  126. try {
  127. final prefs = await SharedPreferences.getInstance();
  128. _currentIndex = prefs.getInt(_STORAGE_API_URLS_INDEX) ?? 0;
  129. _currentRouterIndex = prefs.getInt(_STORAGE_ROUTER_URLS_INDEX) ?? 0;
  130. _currentLogIndex = prefs.getInt(_STORAGE_LOG_URLS_INDEX) ?? 0;
  131. _currentFileIndex = prefs.getInt(_STORAGE_FILE_URLS_INDEX) ?? 0;
  132. _isUsingHardcodedUrls = prefs.getBool(_STORAGE_IS_HARDCODED) ?? true;
  133. final savedApiUrls = prefs.getStringList(_STORAGE_API_URLS);
  134. final savedRouterUrls = prefs.getStringList(_STORAGE_ROUTER_URLS);
  135. final savedBackupUrls = prefs.getStringList(_STORAGE_BACKUP_URLS);
  136. final savedLogUrls = prefs.getStringList(_STORAGE_LOG_URLS);
  137. final savedFileUrls = prefs.getStringList(_STORAGE_FILE_URLS);
  138. if (savedApiUrls != null && savedApiUrls.isNotEmpty) {
  139. _apiUrls = savedApiUrls;
  140. }
  141. if (savedRouterUrls != null && savedRouterUrls.isNotEmpty) {
  142. _routerUrls = savedRouterUrls;
  143. }
  144. if (savedBackupUrls != null && savedBackupUrls.isNotEmpty) {
  145. _backupApiUrls = savedBackupUrls;
  146. }
  147. if (savedLogUrls != null && savedLogUrls.isNotEmpty) {
  148. _logUrls = savedLogUrls;
  149. }
  150. if (savedFileUrls != null && savedFileUrls.isNotEmpty) {
  151. _fileUrls = savedFileUrls;
  152. }
  153. log(
  154. 'ApiDomains',
  155. 'Loaded saved URLs: ${_apiUrls.length} APIs, ${_backupApiUrls.length} backups, ${_logUrls.length} logs, ${_fileUrls.length} files',
  156. );
  157. } catch (e) {
  158. log('ApiDomains', 'Error loading saved URLs: $e');
  159. }
  160. }
  161. Future<void> setApiUrls(List<String> urls) async {
  162. try {
  163. final prefs = await SharedPreferences.getInstance();
  164. await prefs.setStringList(_STORAGE_API_URLS, urls);
  165. _currentIndex = 0;
  166. await prefs.setInt(_STORAGE_API_URLS_INDEX, _currentIndex);
  167. ApiCore().setbaseUrl(urls[_currentIndex]);
  168. } catch (e) {
  169. log('ApiDomains', 'Error saving URLs: $e');
  170. }
  171. }
  172. // 添加Router URL
  173. Future<void> addRouterUrls(List<String> urls) async {
  174. try {
  175. var routerList = List<String>.from(_routerUrls);
  176. routerList.insertAll(0, urls);
  177. _routerUrls = routerList.toSet().toList();
  178. await _saveRouterUrls();
  179. } catch (e) {
  180. log('ApiDomains', 'Error add Router URL: $e');
  181. }
  182. }
  183. // 添加logUrl
  184. Future<void> addLogUrls(List<String> urls) async {
  185. try {
  186. var logList = List<String>.from(_logUrls);
  187. logList.insertAll(0, urls);
  188. _logUrls = logList.toSet().toList();
  189. await _saveLogUrls();
  190. } catch (e) {
  191. log('ApiDomains', 'Error add Log URL: $e');
  192. }
  193. }
  194. // 添加fileUrl
  195. Future<void> addFileUrls(List<String> urls) async {
  196. try {
  197. var fileList = List<String>.from(_fileUrls);
  198. fileList.insertAll(0, urls);
  199. _fileUrls = fileList.toSet().toList();
  200. await _saveFileUrls();
  201. } catch (e) {
  202. log('ApiDomains', 'Error add File URL: $e');
  203. }
  204. }
  205. // 保存当前URL列表到持久化存储
  206. Future<void> _saveApiUrls() async {
  207. try {
  208. final prefs = await SharedPreferences.getInstance();
  209. await prefs.setStringList(_STORAGE_API_URLS, _apiUrls);
  210. await prefs.setStringList(_STORAGE_BACKUP_URLS, _backupApiUrls);
  211. } catch (e) {
  212. log('ApiDomains', 'Error saving URLs: $e');
  213. }
  214. }
  215. // 保存当前Router URL列表到持久化存储
  216. Future<void> _saveRouterUrls() async {
  217. try {
  218. final prefs = await SharedPreferences.getInstance();
  219. await prefs.setStringList(_STORAGE_ROUTER_URLS, _routerUrls);
  220. } catch (e) {
  221. log('ApiDomains', 'Error saving Router URLs: $e');
  222. }
  223. }
  224. // 保存当前LogURL列表到持久化存储
  225. Future<void> _saveLogUrls() async {
  226. try {
  227. final prefs = await SharedPreferences.getInstance();
  228. await prefs.setStringList(_STORAGE_LOG_URLS, _logUrls);
  229. } catch (e) {
  230. log('ApiDomains', 'Error saving Log URLs: $e');
  231. }
  232. }
  233. // 保存当前FILE URL列表到持久化存储
  234. Future<void> _saveFileUrls() async {
  235. try {
  236. final prefs = await SharedPreferences.getInstance();
  237. await prefs.setStringList(_STORAGE_FILE_URLS, _fileUrls);
  238. } catch (e) {
  239. log('ApiDomains', 'Error saving File URLs: $e');
  240. }
  241. }
  242. // 保存硬编码状态
  243. Future<void> _saveIsHardcodedUrls() async {
  244. try {
  245. final prefs = await SharedPreferences.getInstance();
  246. await prefs.setBool(_STORAGE_IS_HARDCODED, _isUsingHardcodedUrls);
  247. } catch (e) {
  248. log('ApiDomains', 'Error saving is hardcoded URLs: $e');
  249. }
  250. }
  251. // 保存硬编码索引
  252. Future<void> _saveApiUrlsIndex() async {
  253. try {
  254. final prefs = await SharedPreferences.getInstance();
  255. await prefs.setInt(_STORAGE_API_URLS_INDEX, _currentIndex);
  256. } catch (e) {
  257. log('ApiDomains', 'Error saving hardcoded index: $e');
  258. }
  259. }
  260. // 保存硬编码索引
  261. Future<void> _saveRouterUrlsIndex() async {
  262. try {
  263. final prefs = await SharedPreferences.getInstance();
  264. await prefs.setInt(_STORAGE_ROUTER_URLS_INDEX, _currentRouterIndex);
  265. } catch (e) {
  266. log('ApiDomains', 'Error saving Router URLs index: $e');
  267. }
  268. }
  269. // 保存LogURL硬编码索引
  270. Future<void> _saveLogUrlsIndex() async {
  271. try {
  272. final prefs = await SharedPreferences.getInstance();
  273. await prefs.setInt(_STORAGE_LOG_URLS_INDEX, _currentLogIndex);
  274. } catch (e) {
  275. log('ApiDomains', 'Error saving Log URLs index: $e');
  276. }
  277. }
  278. // 保存FILE URL硬编码索引
  279. Future<void> _saveFileUrlsIndex() async {
  280. try {
  281. final prefs = await SharedPreferences.getInstance();
  282. await prefs.setInt(_STORAGE_FILE_URLS_INDEX, _currentFileIndex);
  283. } catch (e) {
  284. log('ApiDomains', 'Error saving File URLs index: $e');
  285. }
  286. }
  287. // 从Launch数据更新URL列表
  288. Future<void> updateFromLaunch(Launch launch) async {
  289. try {
  290. if (launch.appConfig?.apiUrls != null &&
  291. launch.appConfig!.apiUrls!.isNotEmpty) {
  292. _apiUrls = List<String>.from(launch.appConfig!.apiUrls!);
  293. // 如果ApiCore的baseUrl不在launch的apiUrls中,或者使用硬编码的url,则设置ApiCore的baseUrl为launch的apiUrls的第一个
  294. if (!_apiUrls.contains(ApiCore().baseUrl) || _isUsingHardcodedUrls) {
  295. ApiCore().setbaseUrl(_apiUrls[0]);
  296. }
  297. final baseUrl = ApiCore().baseUrl;
  298. _apiUrls.insert(0, baseUrl);
  299. _apiUrls = _apiUrls.toSet().toList();
  300. _currentIndex = 0;
  301. log('ApiDomains', 'Add ApiCore baseUrl to index 0: $baseUrl');
  302. }
  303. if (launch.appConfig?.routerApiUrls != null &&
  304. launch.appConfig!.routerApiUrls!.isNotEmpty) {
  305. _routerUrls = launch.appConfig!.routerApiUrls!;
  306. final baseUrl = _routerUrls[0];
  307. ApiRouter().setbaseUrl(baseUrl);
  308. _currentRouterIndex = 0;
  309. log('ApiDomains', 'Add Router baseUrl to index 0: $baseUrl');
  310. }
  311. if (launch.appConfig?.backupApiUrls != null &&
  312. launch.appConfig!.backupApiUrls!.isNotEmpty) {
  313. _backupApiUrls = launch.appConfig!.backupApiUrls!;
  314. _currentBackupListIndex = 0;
  315. }
  316. if (launch.appConfig?.appStatUrls != null &&
  317. launch.appConfig!.appStatUrls!.isNotEmpty) {
  318. _logUrls = launch.appConfig!.appStatUrls!;
  319. // 设置ApiLog的baseUrl为launch的appStatUrls的第一个
  320. final baseUrl = _logUrls[0];
  321. ApiLog().setbaseUrl(baseUrl);
  322. _currentLogIndex = 0;
  323. log('ApiDomains', 'Add ApiLog baseUrl to index 0: $baseUrl');
  324. }
  325. if (launch.appConfig?.logFileUploadUrls != null &&
  326. launch.appConfig!.logFileUploadUrls!.isNotEmpty) {
  327. _fileUrls = launch.appConfig!.logFileUploadUrls!;
  328. // 设置ApiFile的baseUrl为launch的logFileUploadUrls的第一个
  329. final baseUrl = _fileUrls[0];
  330. ApiFile().setbaseUrl(baseUrl);
  331. _currentFileIndex = 0;
  332. log('ApiDomains', 'Add ApiFile baseUrl to index 0: $baseUrl');
  333. }
  334. _isUsingHardcodedUrls = false;
  335. await _saveIsHardcodedUrls();
  336. await _saveApiUrls();
  337. await _saveApiUrlsIndex();
  338. await _saveRouterUrls();
  339. await _saveRouterUrlsIndex();
  340. await _saveLogUrls();
  341. await _saveLogUrlsIndex();
  342. await _saveFileUrls();
  343. await _saveFileUrlsIndex();
  344. log('ApiDomains', 'Updated URLs from launch data');
  345. } catch (e) {
  346. log('ApiDomains', 'Error updating URLs from launch data: $e');
  347. }
  348. }
  349. // 获取当前ApiURL
  350. String getApiUrl() {
  351. if (_currentIndex >= _apiUrls.length) {
  352. _currentIndex = 0;
  353. }
  354. return _apiUrls[_currentIndex];
  355. }
  356. // 获取当前Router URL
  357. String getRouterUrl() {
  358. if (_currentRouterIndex >= _routerUrls.length) {
  359. _currentRouterIndex = 0;
  360. }
  361. return _routerUrls[_currentRouterIndex];
  362. }
  363. // 获取当前LogURL
  364. String getLogUrl() {
  365. if (_currentLogIndex >= _logUrls.length) {
  366. _currentLogIndex = 0;
  367. }
  368. return _logUrls[_currentLogIndex];
  369. }
  370. // 获取当前FILE URL
  371. String getFileUrl() {
  372. if (_currentFileIndex >= _fileUrls.length) {
  373. _currentFileIndex = 0;
  374. }
  375. return _fileUrls[_currentFileIndex];
  376. }
  377. Future<bool> isHardcodedUrls() async {
  378. return _isUsingHardcodedUrls;
  379. }
  380. // 获取下一次要尝试的URL
  381. Future<String> getNextApiUrl() async {
  382. // 使用硬编码URLs的情况
  383. if (_isUsingHardcodedUrls) {
  384. // 如果硬编码请求次数大于等于最大重试次数,返回空字符串
  385. if (_hardcodedRequestCount >= RETRY_COUNT_PER_LAUNCH) {
  386. _hardcodedRequestCount = 0;
  387. return '';
  388. }
  389. // 获取下一个索引
  390. int nextIndex = _currentIndex + 1;
  391. if (nextIndex >= _apiUrls.length) {
  392. if (_hardcodedRequestCount < RETRY_COUNT_PER_LAUNCH) {
  393. final isSuccess = await _switchToBackupList();
  394. if (isSuccess) {
  395. return getApiUrl();
  396. } else {
  397. _hardcodedRequestCount = 0;
  398. return '';
  399. }
  400. }
  401. return '';
  402. }
  403. final url = _apiUrls[nextIndex];
  404. _currentIndex++;
  405. _hardcodedRequestCount++;
  406. await _saveApiUrlsIndex();
  407. return url;
  408. }
  409. // 使用Launch数据的情况
  410. else {
  411. // 如果当前列表已用完
  412. int nextIndex = _currentIndex + 1;
  413. if (nextIndex >= _apiUrls.length) {
  414. // 尝试切换到备用列表
  415. final isSuccess = await _switchToBackupList();
  416. if (isSuccess) {
  417. return getApiUrl();
  418. } else {
  419. return '';
  420. }
  421. }
  422. // 返回当前URL
  423. final url = _apiUrls[nextIndex];
  424. _currentIndex++;
  425. await _saveApiUrlsIndex();
  426. return url;
  427. }
  428. }
  429. // 获取下一次要尝试的Router URL
  430. Future<String> getNextRouterUrl() async {
  431. // 获取下一个索引
  432. int nextIndex = _currentRouterIndex + 1;
  433. if (nextIndex >= _routerUrls.length) {
  434. _currentRouterIndex = 0;
  435. await _saveRouterUrlsIndex();
  436. return '';
  437. }
  438. // 返回所有剩余的URL
  439. final url = _routerUrls[nextIndex];
  440. _currentRouterIndex++;
  441. await _saveRouterUrlsIndex();
  442. return url;
  443. }
  444. // 获取下一次要尝试的LogURL
  445. Future<String> getNextLogUrl() async {
  446. // 获取下一个索引
  447. int nextIndex = _currentLogIndex + 1;
  448. if (nextIndex >= _logUrls.length) {
  449. _currentLogIndex = 0;
  450. await _saveLogUrlsIndex();
  451. return '';
  452. }
  453. // 返回所有剩余的URL
  454. final url = _logUrls[nextIndex];
  455. _currentLogIndex++;
  456. await _saveLogUrlsIndex();
  457. return url;
  458. }
  459. // 获取下一次要尝试的FILE URL
  460. Future<String> getNextFileUrl() async {
  461. // 获取下一个索引
  462. int nextIndex = _currentFileIndex + 1;
  463. if (nextIndex >= _fileUrls.length) {
  464. _currentFileIndex = 0;
  465. await _saveFileUrlsIndex();
  466. return '';
  467. }
  468. // 返回所有剩余的URL
  469. final url = _fileUrls[nextIndex];
  470. _currentFileIndex++;
  471. await _saveFileUrlsIndex();
  472. return url;
  473. }
  474. // 切换到备用列表
  475. Future<bool> _switchToBackupList() async {
  476. while (_currentBackupListIndex < _backupApiUrls.length) {
  477. try {
  478. if (_currentBackupListIndex >= _backupApiUrls.length) {
  479. log('ApiDomains', 'Error: Backup URL index out of bounds');
  480. break;
  481. }
  482. final backupUrl = _backupApiUrls[_currentBackupListIndex];
  483. log('ApiDomains', 'Trying backup URL: $backupUrl');
  484. // 添加talker日志(避免重复添加)
  485. if (!_monitorInterceptorAdded) {
  486. dio.interceptors.add(SimpleNoSignApiMonitorInterceptor());
  487. _monitorInterceptorAdded = true;
  488. }
  489. final response = await dio.get(backupUrl);
  490. if (response.statusCode == 200) {
  491. log('Before decryption: ${response.data}');
  492. final decryptedBytes = Crypto.decryptBytes(
  493. response.data.toString().trim(),
  494. Keys.aesKey,
  495. Keys.aesIv,
  496. );
  497. final jsonText = utf8.decode(decryptedBytes);
  498. log('Decryption results: $jsonText');
  499. final Map<String, dynamic> map = jsonDecode(jsonText);
  500. if (map['apiUrls'] != null) {
  501. final list = List<String>.from(map['apiUrls']);
  502. _apiUrls = list;
  503. _currentIndex = 0;
  504. // 当前备用文件成功,标志可以尝试下一个
  505. _currentBackupListIndex++;
  506. await _saveApiUrls();
  507. await _saveApiUrlsIndex();
  508. log('ApiDomains', 'Switched to backup list: ${list.length} URLs');
  509. return true;
  510. }
  511. }
  512. // 当前备用文件失败,尝试下一个
  513. _currentBackupListIndex++;
  514. } catch (e) {
  515. log('ApiDomains', 'Error switching to backup list: $e');
  516. _currentBackupListIndex++;
  517. }
  518. }
  519. // 如果所有备用URL都失败了,重置为硬编码模式
  520. _isUsingHardcodedUrls = true;
  521. _currentIndex = 0;
  522. _currentBackupListIndex = 0;
  523. initUrls();
  524. await _saveIsHardcodedUrls();
  525. await _saveApiUrls();
  526. await _saveApiUrlsIndex();
  527. return false;
  528. }
  529. // 获取所有logUrl
  530. List<String> getAllLogUrls() {
  531. return _logUrls;
  532. }
  533. }