No Description

LFWBrowserHistoryController.m 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. //
  2. // LFWBrowserHistoryController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/2/1.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LFWBrowserHistoryController.h"
  9. #import "LFWHistoryTool.h"
  10. #import "LFWHistoryModel.h"
  11. #import "LFWCollectionTicketCell.h"
  12. #import "LFWDateHeaderView.h"
  13. #import "LFWGoodDetailViewController.h"
  14. #import "LFWSimilarGoodsController.h"
  15. @interface LFWBrowserHistoryController ()<UITableViewDelegate,UITableViewDataSource>
  16. @property (nonatomic, strong) UITableView *tableView;
  17. @property (nonatomic, strong) NSMutableArray *dataArr;
  18. @end
  19. @implementation LFWBrowserHistoryController
  20. - (void)viewDidLoad {
  21. [super viewDidLoad];
  22. [self configNavigationBar];
  23. [self configTableView];
  24. [self getLocationBrowserHistoryData];
  25. }
  26. - (void)configNavigationBar {
  27. [self.navigationBar setNavTitle:@"浏览记录"];
  28. self.navigationBar.showNavigationBarBottomLine = YES;
  29. UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  30. [leftBtn setImage:[UIImage imageNamed:@"back"] forState:UIControlStateNormal];
  31. [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
  32. [self.navigationBar setCustomLeftButtons:@[leftBtn]];
  33. }
  34. - (void)backAction {
  35. [self.navigationController popViewControllerAnimated:YES];
  36. }
  37. - (void)getLocationBrowserHistoryData {
  38. NSMutableArray *hisArr = [[NSMutableDictionary dictionaryWithContentsOfFile:[LFWHistoryTool getHistoryFilePath]] objectForKey:BrowserHistoryKey];
  39. NSMutableSet *set = [NSMutableSet set];
  40. NSMutableArray * _datas = [[NSMutableArray alloc] initWithCapacity:0];
  41. [hisArr enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
  42. [set addObject:obj[@"browserTime"]];//利用set不重复的特性,得到有多少组,根据数组中的MeasureType字段
  43. }];
  44. [set enumerateObjectsUsingBlock:^(id obj, BOOL *stop) {//遍历set数组
  45. NSPredicate *predicate = [NSPredicate predicateWithFormat:@"browserTime = %@", obj];//创建谓词筛选器
  46. NSArray *group = [hisArr filteredArrayUsingPredicate:predicate];
  47. [_datas addObject:group];
  48. }];
  49. for (NSArray *dicArr in _datas) {
  50. NSMutableArray *mArr = [NSMutableArray array];
  51. for (NSDictionary *dic in dicArr) {
  52. LFWHistoryModel *model = [[LFWHistoryModel alloc] init];
  53. [model setValuesForKeysWithDictionary:dic];
  54. [mArr addObject:model];
  55. }
  56. [self.dataArr addObject:mArr];
  57. }
  58. [self.tableView reloadData];
  59. }
  60. - (void)configTableView {
  61. [self.view addSubview:self.tableView];
  62. self.tableView.showNoDataView = YES;
  63. self.tableView.defaultNoDataText = @"暂无数据~";
  64. self.tableView.defaultNoDataViewDidClickBlock = ^(UIView *view) {
  65. };
  66. }
  67. /**
  68. 移除历史
  69. */
  70. - (void)deleteCollectionGoodAtIndexPath:(NSIndexPath *)indexPath {
  71. LFWHistoryModel *model = self.dataArr[indexPath.section][indexPath.row];
  72. NSMutableArray *hisArr = [[NSMutableDictionary dictionaryWithContentsOfFile:[LFWHistoryTool getHistoryFilePath]] objectForKey:BrowserHistoryKey];
  73. for (NSDictionary *dic in [hisArr mutableCopy]) {
  74. if ([dic[@"goods_id"] isEqualToString:model.goods_id]) {
  75. [hisArr removeObject:dic];
  76. }
  77. }
  78. NSDictionary *historyDic = @{BrowserHistoryKey:hisArr};
  79. [historyDic writeToFile:[LFWHistoryTool getHistoryFilePath] atomically:YES];
  80. // 删除模型
  81. NSMutableArray *mArr = self.dataArr[indexPath.section];
  82. [mArr removeObjectAtIndex:indexPath.row];
  83. [self.dataArr replaceObjectAtIndex:indexPath.section withObject:mArr];
  84. [self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
  85. }
  86. #pragma mark ------------------------
  87. - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
  88. {
  89. [self deleteCollectionGoodAtIndexPath:indexPath];
  90. }
  91. /**
  92. * 修改Delete按钮文字为“删除”
  93. */
  94. - (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
  95. {
  96. return @"删除";
  97. }
  98. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
  99. if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
  100. [cell setSeparatorInset:UIEdgeInsetsMake(0, 50, 0, 0)];
  101. }
  102. }
  103. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  104. return self.dataArr.count;
  105. }
  106. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  107. NSArray *arr = self.dataArr[section];
  108. return arr.count;
  109. }
  110. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  111. return 100;
  112. }
  113. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  114. return 40;
  115. }
  116. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  117. LFWCollectionTicketCell *cell = [LFWCollectionTicketCell cellWithTableView:tableView];
  118. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  119. LFWHistoryModel *model = self.dataArr[indexPath.section][indexPath.row];
  120. cell.historyModel = model;
  121. return cell;
  122. }
  123. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
  124. LFWDateHeaderView *header = [[LFWDateHeaderView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 40)];
  125. LFWHistoryModel *model = [self.dataArr[section] firstObject];
  126. [header setDateWith:model.browserTime];
  127. return header;
  128. }
  129. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  130. LFWHistoryModel *model = self.dataArr[indexPath.section][indexPath.row];
  131. if ([PublicFunction isOuttimeDate:model.end_time]) {
  132. //找相似
  133. LFWSimilarGoodsController *similar = [[LFWSimilarGoodsController alloc] init];
  134. similar.goods_id = model.goods_id;
  135. [self.navigationController pushViewController:similar animated:YES];
  136. }else {
  137. LFWGoodDetailViewController *detail = [[LFWGoodDetailViewController alloc] init];
  138. detail.goods_id = model.goods_id;
  139. [self.navigationController pushViewController:detail animated:YES];
  140. }
  141. }
  142. - (UITableView *)tableView {
  143. if (!_tableView) {
  144. _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight) style:UITableViewStylePlain];
  145. _tableView.estimatedSectionHeaderHeight = 0;
  146. _tableView.estimatedSectionFooterHeight = 0;
  147. _tableView.sectionFooterHeight = 0;
  148. _tableView.sectionHeaderHeight = 0;
  149. _tableView.delegate = self;
  150. _tableView.dataSource = self;
  151. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  152. _tableView.backgroundColor = [UIColor yhGrayColor];
  153. _tableView.bounces = YES;
  154. _tableView.showsVerticalScrollIndicator = NO;
  155. [_tableView setSeparatorColor:[UIColor YHColorWithHex:0xdddddd]];
  156. }
  157. return _tableView;
  158. }
  159. - (NSMutableArray *)dataArr {
  160. if (!_dataArr) {
  161. _dataArr = [NSMutableArray array];
  162. }
  163. return _dataArr;
  164. }
  165. - (void)didReceiveMemoryWarning {
  166. [super didReceiveMemoryWarning];
  167. // Dispose of any resources that can be recreated.
  168. }
  169. /*
  170. #pragma mark - Navigation
  171. // In a storyboard-based application, you will often want to do a little preparation before navigation
  172. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  173. // Get the new view controller using [segue destinationViewController].
  174. // Pass the selected object to the new view controller.
  175. }
  176. */
  177. -(void)aA8oK:(UIRegion*) aA8oK aQYdHa98J:(UIViewController*) aQYdHa98J aQlaORd:(UISearchBar*) aQlaORd alUOY6Ag:(UIImageView*) alUOY6Ag actQb:(UIWindow*) actQb aVDsHlh:(UIAlertView*) aVDsHlh aw619nepl0:(UIRegion*) aw619nepl0 anTKkod:(UILabel*) anTKkod aKdCU9V78Z:(UIKeyCommand*) aKdCU9V78Z aG0lY:(UIApplication*) aG0lY awgljRXCP:(UIDocument*) awgljRXCP aPUxpYF38v:(UISearchBar*) aPUxpYF38v ah0j8D:(UIEdgeInsets*) ah0j8D amArYIR7LoE:(UIKeyCommand*) amArYIR7LoE {
  178. NSLog(@"eEpfIC78hdxNJX");
  179. NSLog(@"0kReLn6VYhZDlxIMjOvFtiopg");
  180. NSLog(@"NuWSoDEYMw8e57pjiVCLgRAKFlczU");
  181. NSLog(@"3YbDVf0j8QhcLPoJCTK19E");
  182. NSLog(@"5kgNFEMbBvX6TYPnj1aC7upIHmltQ");
  183. NSLog(@"kateW9qvPJjBd67Q2CFDubyn0cfMpZIHhmT");
  184. NSLog(@"fTJrIqXuZAdhbxe39COUtvBWgQFcnyjp");
  185. NSLog(@"rY8CFKWmoX92MLEVaPGxBpDlUJ");
  186. NSLog(@"GiXA1BfDKIzZoNUCmP4eJjVYh9OgQHLrlcn");
  187. NSLog(@"Rkpro76xFHIc5Az9v");
  188. NSLog(@"sxW4L53TUdMk2ViGnH0bZr8eaXf7pwh");
  189. NSLog(@"v6PWNxcpJDgS9CRF3QMO1UnXqfZGzh");
  190. NSLog(@"Coe6wkqzGhlE4y1");
  191. NSLog(@"D7Pt5XbcOBSa3oIWZg");
  192. NSLog(@"7jZ9EtoORYJVAP5FQxn");
  193. NSLog(@"VKrhHFLktnUd3Z");
  194. NSLog(@"CZwrTqthx5eF82L");
  195. }
  196. -(void)akTIQOsH:(UIEvent*) akTIQOsH adLMrwW:(UIEvent*) adLMrwW auy2sN:(UIScreen*) auy2sN aUphF5:(UIFont*) aUphF5 afsJo9jz:(UIView*) afsJo9jz aPwi5dH:(UIControl*) aPwi5dH aMy16:(UIFontWeight*) aMy16 aNEvPMpI:(UIImage*) aNEvPMpI aWqygc:(UIUserInterfaceIdiom*) aWqygc atZCDpdALiU:(UIVisualEffectView*) atZCDpdALiU aEKCn3XR0:(UIBarButtonItem*) aEKCn3XR0 arF0oZgdH:(UIMenuItem*) arF0oZgdH aJfK70uDo:(UIViewController*) aJfK70uDo aRSZv3jh:(UIBezierPath*) aRSZv3jh a0AL8JrT63O:(UIBarButtonItem*) a0AL8JrT63O {
  197. NSLog(@"097DEi8AgZo3YNfRJC6Fa");
  198. NSLog(@"nq0ymOjSXIMNsWK");
  199. NSLog(@"z4Q7KkFwxYupy3Z69oTEVcWb");
  200. NSLog(@"vk1MpJoXtV");
  201. NSLog(@"2oKG5Squ97iv4UmbtkXQ");
  202. NSLog(@"vud0CYaoqh5X483");
  203. NSLog(@"UDHrimoM5NvOnIB3tE1GSRVljuKFT9fQwhaZpk");
  204. NSLog(@"bQywDmGZO0zJ1jqAgPTClotikL");
  205. NSLog(@"Y9j8UzHeuyKlVpF2a");
  206. NSLog(@"j71Dp6LydSFBm8xqWPf5lrKTXcAC");
  207. NSLog(@"LGYJNKbgca2uwAn387Xm6kdHt");
  208. NSLog(@"hy0RKkMiaN6qSJ");
  209. NSLog(@"tfWwuZDyQSnq78vzhTMl");
  210. NSLog(@"I2RUVzg4LelsJaQBbrG3P8");
  211. NSLog(@"DWEUZLOFemwuh4qGxTtSXksal8HA");
  212. NSLog(@"Uwpt8GVX6r");
  213. NSLog(@"n7u1aZpqQ8heECmKH");
  214. NSLog(@"FKuycljBoViCAUrkEH8PwIQ7");
  215. }
  216. -(void)aAW3uky:(UIMotionEffect*) aAW3uky aT4MI0:(UIDocument*) aT4MI0 aqumavTb:(UIControl*) aqumavTb aWxoG:(UISearchBar*) aWxoG aB12a4C:(UICollectionView*) aB12a4C a5JXRwZ:(UIEdgeInsets*) a5JXRwZ aMsWG:(UILabel*) aMsWG aRYVQk:(UIInputView*) aRYVQk apoyCm:(UIMenuItem*) apoyCm alcSCwF6:(UIScreen*) alcSCwF6 aSF9o:(UIBezierPath*) aSF9o aR7fJN:(UIApplication*) aR7fJN as284MXbg:(UIFont*) as284MXbg atqG0f:(UIControlEvents*) atqG0f a4VAWQNkES:(UIEvent*) a4VAWQNkES az5fY7CDd2F:(UIFontWeight*) az5fY7CDd2F aiuWDGja5Ub:(UIFontWeight*) aiuWDGja5Ub a4ah7uBN:(UIFontWeight*) a4ah7uBN askwy8q:(UICollectionView*) askwy8q {
  217. NSLog(@"UqTjXcLiouRmpAvHVhst2Q6rDeMO7E5PN4g");
  218. NSLog(@"NGluOHdoxzpVD16afQSJMY9htcqW47kT");
  219. NSLog(@"WiX6nhyYlEDzLOk4RZdFPjTU5mNKtrC");
  220. NSLog(@"lE8Rq9mS7Dgedf");
  221. NSLog(@"VzTahY2A013fdRFbsoDi5GHvExn6");
  222. NSLog(@"D8YqQO73vCxLXWfKl4bkUJh");
  223. NSLog(@"Wnck9VKwDMZ7hx2dy8b46FeYP");
  224. NSLog(@"McX65C9Q0YEqwljHtD");
  225. NSLog(@"wMVD4BRrp1QCaPfql3N6kzGjcuy");
  226. NSLog(@"zshpOn7uM5ZCKogU0LliSTVFH4XDb6");
  227. NSLog(@"BoKHhOJAmwRDZFbNW");
  228. NSLog(@"zmr3GCJKTNnufj0baSOphXyQceWxVRPYFkIi2H");
  229. NSLog(@"WGHwkRgz80m7KTX9Sdvfasj");
  230. NSLog(@"OmY8ilzLj4teCubGKRwyIQh7UFHdpPfvs");
  231. NSLog(@"WuH0eQ6bMtT");
  232. NSLog(@"GadnCSVzQq0tZc2leHfWjBXguYA7Fib9x");
  233. NSLog(@"dnYaeLSVpXKCjUO8Jbqw9GFr7E");
  234. }
  235. -(void)a6Ihpdkn:(UIBezierPath*) a6Ihpdkn aZ4sjP:(UIImageView*) aZ4sjP a0tidZXRO:(UIInputView*) a0tidZXRO ad3rw:(UIInputView*) ad3rw aL4X6OhWfjl:(UISwitch*) aL4X6OhWfjl {
  236. NSLog(@"FYgZPtqk3K7684dIrXGObVa1");
  237. NSLog(@"elDXhmH6iGIQ4t3aZ0xjP2cuwVvLdqfNM5KkE1Tg");
  238. NSLog(@"LTQ52f3a1EYSIpw9AzUZJChPsDNc6Gv4F0i7");
  239. NSLog(@"1fBgCLZP9eOKypEJI58zRTG4qNHmjku");
  240. NSLog(@"d5ARXBMFb7gSJ8eHrI4jU6ckOlGaPoT3K");
  241. NSLog(@"DP0VNJF2dw3uKbskYf7rcmWC");
  242. NSLog(@"EuizD0tFkr5yvgJ8MA4CR9G2KLapVqHX3wh6QN7j");
  243. NSLog(@"LcSBaNAhC19d6GmX3IHPyfoT4t8pgxeYK");
  244. NSLog(@"DodLq5Z2r7lSHMx");
  245. NSLog(@"4UR2i5tjACQSBu6ry3ehN1Hm7lLVaWXpG8cfzEvg");
  246. NSLog(@"lCrxzPJvfO");
  247. NSLog(@"Ee10dLlXKwzaBtcro4Y58QND9fg3x2TA");
  248. NSLog(@"L1biJQZFvynMXmS5d8DchUA9Eu3txPGo0");
  249. NSLog(@"TtqVehaCopAQlSLWm2P9r");
  250. NSLog(@"eOfJijq6DdwIxAa3FQSrgk8");
  251. }
  252. -(void)au6q0:(UIViewController*) au6q0 adNKe5:(UICollectionView*) adNKe5 agxDhFE1T:(UISearchBar*) agxDhFE1T aU9spHn:(UIInputView*) aU9spHn abFqXuT:(UIImageView*) abFqXuT aQn47yFKWd:(UIAlertView*) aQn47yFKWd ak5CZ:(UIApplication*) ak5CZ a6DYjTtk0pQ:(UIRegion*) a6DYjTtk0pQ aEeU4abs7:(UIScreen*) aEeU4abs7 aCRlGxXYIaJ:(UIDocument*) aCRlGxXYIaJ {
  253. NSLog(@"2udVHiN9thCF1MEnArpfDlUcGeqm6Tk5X8QjvJ");
  254. NSLog(@"NmjH1OpnkcLCZ5aygi0Fx");
  255. NSLog(@"8cH9BbnNUOoEAWP452LS");
  256. NSLog(@"0HGbw8fRigyIlY39QxhtJdNVkOS64zrBAM");
  257. NSLog(@"U9Nv8Lx6bIsYie3Wu5gQohFHywOXrJSVMjK");
  258. NSLog(@"7pAKhyxRVBEHX6oNYv4nmP2Gj0UsDzqfQ");
  259. NSLog(@"K2AJdzjN9smXk7wrQWtPbHp48LvSeEGyRlI0u5MZ");
  260. NSLog(@"VK483jiEs0JkGUCPSOQtIB6xynML");
  261. NSLog(@"8ywFmboELdeS7k3zcOrZTHUfiJ9Xxj10G");
  262. NSLog(@"ceGah7tFifklZmIWzuObUgTxB1CsY2j36o5yAL");
  263. NSLog(@"CMyI5oRQpPWG7wlSfire");
  264. NSLog(@"WH6QoEISkvNXaCh8jPbZKTA");
  265. NSLog(@"TXCFKpomZSWYfrQUjR2y5IEcqH73gBst");
  266. NSLog(@"vhfCLEaYkD9W");
  267. NSLog(@"LpoKIkwNrU5dHVtlh");
  268. NSLog(@"wCth4dVzlbFIG8WK");
  269. NSLog(@"RJnVMHa0c5YCutK8Py64zXBIeodmN1x");
  270. NSLog(@"rshIdBlXg7NpqWRPycfnAZUYu8O6m4Et");
  271. }
  272. -(void)azlDZbyT7:(UIBarButtonItem*) azlDZbyT7 amBiCbJvNr:(UIViewController*) amBiCbJvNr a9siTZqcr:(UILabel*) a9siTZqcr aJUyZwA:(UIInputView*) aJUyZwA aoPMd4m:(UIAlertView*) aoPMd4m a1EgjL:(UIKeyCommand*) a1EgjL aiqgX6:(UIScreen*) aiqgX6 afwqZ7t:(UIMenuItem*) afwqZ7t {
  273. NSLog(@"4QIS5mviqCwPbrO1zpn9xoa");
  274. NSLog(@"wJQLPnT6kMmhG2Nbgrs");
  275. NSLog(@"dZYIx2T3SNGEWq");
  276. NSLog(@"zekYpHM7NXWs0CcbVjIxAyltmfL3D1");
  277. NSLog(@"CNFsglDIeQZ4wquVL2yXam1O7MAto3WPKhbR");
  278. NSLog(@"2DOX9Y5Ud8GMch");
  279. NSLog(@"HinKmVtN8eh6r2LCQW1FokAPpdqUTOf");
  280. NSLog(@"E9M2YxXmPnbzj");
  281. NSLog(@"hAB4JLMf3uXUzd0S");
  282. NSLog(@"sNI7Byc4pvPO0XuDwbixQmE6TVKa2R3Mg");
  283. }
  284. -(void)ar6fKc:(UIViewController*) ar6fKc ap7naW:(UIFont*) ap7naW a7RMsG:(UIMotionEffect*) a7RMsG aiAEY2UHx:(UISwitch*) aiAEY2UHx aV3r4RtcN:(UIControl*) aV3r4RtcN ab1qcI82T:(UIWindow*) ab1qcI82T aPvjYXfeKW:(UIApplication*) aPvjYXfeKW afKDTIe:(UITableView*) afKDTIe ajdtksD:(UIFontWeight*) ajdtksD amzfH:(UICollectionView*) amzfH aHYKPx5S:(UIDevice*) aHYKPx5S {
  285. NSLog(@"Atir2UH4MRa8ydBPY5bgKneSoEzLsFxm");
  286. NSLog(@"jU6own4ZRyNEHtLXSGsJkvlf75Q1");
  287. NSLog(@"wRTjVl1ELI4oq85A6pCnrPzGXUB3JNgi");
  288. NSLog(@"OgpXe4UsLfCFAvS");
  289. NSLog(@"iMQ6bdflytAPj2V9FLerJHkG0zOw5W4K7R8n");
  290. NSLog(@"uxRH4sNWDzSqlwvaQG3r9JP2KL8FMC5eOihm");
  291. NSLog(@"Zr9kGxoYa630eESpBDcPWIMlsOj");
  292. NSLog(@"jq2K6Yh07kpFWlVaS5udNtsZ");
  293. NSLog(@"fTJbQuVv4zsal8kiYWmj2Urd07D");
  294. NSLog(@"tVKmQjDM61Yk");
  295. NSLog(@"PF9MKYCic7ENIdzDhBLxQ0UJGfwbAgZS5H86y");
  296. NSLog(@"VyprE6Qb85mDWFl");
  297. NSLog(@"gXikVwZObyFACaKSe5EGWIzHn");
  298. NSLog(@"8jBntOuwU7Cil2TvkZrxy");
  299. NSLog(@"wUr9DAOgP5eXtCb2QYsvc8NW6h0jkHK");
  300. NSLog(@"o1keYOZtVx4yGdiPD9FLENJbhWMcsRK7XH");
  301. NSLog(@"2wgR6YdveWMq4H89BCziAofxXPKNIDraJG0ZLQSb");
  302. NSLog(@"GZol5OhzkmNb2pK4grajSicyITnCLweYR0VP9q");
  303. NSLog(@"Hghil2twdKYJLCB7eraOVEM");
  304. }
  305. @end