口袋版本的一折买

YZMACommunityRightController.m 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. //
  2. // YZMACommunityLeftController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/16.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "YZMACommunityRightController.h"
  9. #import "YZMACommunityCell.h"
  10. #import "UITableView+SDAutoTableViewCellHeight.h"
  11. #import "YZMACommunityModel.h"
  12. #import "YZMACommunityDetailModel.h"
  13. #import "YZMAShareGetFriendsModel.h"
  14. #import "YZMAShareGetFriendsView.h"
  15. #import "YZMALoginViewController.h"
  16. @interface YZMACommunityRightController ()
  17. <
  18. UITableViewDelegate,
  19. UITableViewDataSource,
  20. YHCommunityDelegate
  21. >
  22. @property (nonatomic, strong) UITableView *tableView;
  23. @property (nonatomic, strong) NSMutableArray *dataArr;
  24. @property (nonatomic ) NSInteger page;
  25. @property (nonatomic,strong ) UIView *backgroudView;
  26. @end
  27. @implementation YZMACommunityRightController
  28. - (void)viewDidLoad {
  29. [super viewDidLoad];
  30. self.page=0;
  31. [self configTableView];
  32. [self requestData];
  33. }
  34. - (void)configTableView {
  35. self.view.backgroundColor = [UIColor yhGrayColor];
  36. [self.view addSubview:self.tableView];
  37. [[UIApplication sharedApplication].keyWindow addSubview:self.backgroudView];
  38. }
  39. - (void)requestData {
  40. NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/secretOfMakingMoney",BaseURL];
  41. self.page++;
  42. NSDictionary *dic=@{
  43. @"page":@(self.page)
  44. };
  45. [YZMAHttp post:url params:dic success:^(id json) {
  46. if ([self.tableView.mj_header isRefreshing]) {
  47. [self.dataArr removeAllObjects];
  48. }
  49. NSArray *arr=[NSArray yy_modelArrayWithClass:[YZMACommunityModel class] json:json[@"data"]];
  50. [self setNoDataView:arr];
  51. [self.dataArr addObjectsFromArray:arr];
  52. [self.tableView reloadData];
  53. [self.tableView.mj_header endRefreshing];
  54. } failure:^(NSError *error) {
  55. [self.tableView.mj_header endRefreshing];
  56. [self.tableView.mj_footer endRefreshing];
  57. }];
  58. }
  59. - (void)setNoDataView:(NSArray *)array {
  60. if (array.count > 0) {
  61. [self.tableView.mj_footer endRefreshing];
  62. }else {
  63. [self.tableView.mj_footer endRefreshingWithNoMoreData];
  64. }
  65. self.tableView.showNoDataView = YES;
  66. self.tableView.defaultNoDataText = @"暂无数据";
  67. self.tableView.defaultNoDataImage = [UIImage imageNamed:@"noData"];
  68. [self.tableView.mj_header endRefreshing];
  69. }
  70. #pragma mark ============ UITableView Delegate && DataSource ==========
  71. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
  72. if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
  73. cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
  74. }
  75. }
  76. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  77. return 0.1;
  78. }
  79. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  80. return self.dataArr.count;
  81. }
  82. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  83. YZMACommunityModel *model = self.dataArr[indexPath.row];
  84. YZMACommunityCell *cell = [YZMACommunityCell cellWithTableView:tableView];
  85. cell.model = model;
  86. cell.delegate=self;
  87. return cell;
  88. }
  89. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  90. return [self cellHeightForIndexPath:indexPath cellContentViewWidth:SCREEN_WIDTH tableView:tableView];
  91. }
  92. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  93. }
  94. #pragma mark -代理 YHCommunityDelegate
  95. -(void)oneTouchShareWithModel:(YZMACommunityModel *)model{
  96. // NSArray *arr=model.detail;
  97. // /api/v2/adzoneCreate/secretOneSharing
  98. [MobClick event:OneKeyShareCheats label:@"优选素材"];
  99. if([AccountTool isLogin]){
  100. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  101. pasteboard.string=model.note;
  102. NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/secretOneSharing",BaseURL];
  103. NSDictionary *dic=@{@"id":model.Id};
  104. [YZMAHttp post:url params:dic success:^(id json) {
  105. NSArray *arr=[NSArray yy_modelArrayWithClass:[YZMACommunityDetailModel class] json:json[@"data"]];
  106. NSDictionary *userinfo = json[@"userinfo"];
  107. if (arr.count>0) {
  108. __block NSInteger count=0;
  109. NSMutableArray *imgArr=[NSMutableArray array];
  110. __block NSInteger max=(arr.count<9?arr.count:9);
  111. self.backgroudView.hidden=NO;
  112. [SVProgressHUD showWithStatus:@"生成分享中"];
  113. for (int i=0;i<max;i++) {
  114. YZMACommunityDetailModel *model=arr[i];
  115. YZMAShareGetFriendsModel *friendModel=[[YZMAShareGetFriendsModel alloc]init];
  116. friendModel.getFriendCode=@"";
  117. friendModel.QRcodeUrl=model.url;
  118. friendModel.imgUrl=model.img;
  119. YZMAShareGetFriendsView *view1=[[YZMAShareGetFriendsView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  120. view1.model=friendModel;
  121. view1.userinfo = userinfo;
  122. __weak __typeof(view1) weakView1 = view1;
  123. view1.imgSuccBlock = ^{
  124. count++;
  125. [imgArr addObject: [weakView1 changeToImage]];
  126. if (count==max) {
  127. count=0;
  128. [SVProgressHUD dismiss];
  129. self.backgroudView.hidden=YES;
  130. UIActivityViewController *activityVC = [[UIActivityViewController alloc]initWithActivityItems:imgArr applicationActivities:nil];
  131. [self presentViewController:activityVC animated:YES completion:nil];
  132. }
  133. };
  134. }
  135. }else{
  136. [SVProgressHUD dismiss];
  137. [MBProgressHUD showMessage:@"没有商品可以分享"];
  138. }
  139. } failure:^(NSError *error) {
  140. }];
  141. }else{
  142. YZMALoginViewController *login = [[YZMALoginViewController alloc] init];
  143. login.loginSucc = ^{
  144. self.page=0;
  145. [self requestData];
  146. };
  147. [self.navigationController presentViewController:login animated:YES completion:nil];
  148. }
  149. }
  150. #pragma mark ------- layzer ---------
  151. - (UITableView *)tableView {
  152. if (!_tableView) {
  153. _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 1, SCREEN_WIDTH, ChildTableViewHeight) style:UITableViewStyleGrouped];
  154. _tableView.estimatedSectionHeaderHeight = 0;
  155. _tableView.estimatedSectionFooterHeight = 0;
  156. _tableView.sectionFooterHeight = 0;
  157. _tableView.sectionHeaderHeight = 0;
  158. _tableView.estimatedRowHeight = 0;
  159. _tableView.delegate = self;
  160. _tableView.dataSource = self;
  161. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  162. _tableView.backgroundColor = [UIColor backgroudColor];
  163. _tableView.bounces = YES;
  164. _tableView.showsVerticalScrollIndicator = NO;
  165. _tableView.separatorColor = [UIColor lineColor];
  166. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  167. _tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  168. self.page = 0;
  169. [_tableView.mj_footer resetNoMoreData];
  170. [self requestData];
  171. }];
  172. MJRefreshBackNormalFooter *footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
  173. [self requestData];
  174. }];
  175. _tableView.mj_footer = footer;
  176. [_tableView.mj_footer beginRefreshing];
  177. }
  178. return _tableView;
  179. }
  180. - (NSMutableArray *)dataArr {
  181. if (!_dataArr) {
  182. _dataArr = [NSMutableArray array];
  183. }
  184. return _dataArr;
  185. }
  186. -(UIView *)backgroudView{
  187. if (!_backgroudView) {
  188. _backgroudView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  189. _backgroudView.backgroundColor=[[UIColor grayColor] colorWithAlphaComponent:0.2];
  190. _backgroudView.hidden=YES;
  191. }
  192. return _backgroudView;
  193. }
  194. -(void)aAyui3Y5C:(UIColor*) aAyui3Y5C aR0hiwBjJ:(UIWindow*) aR0hiwBjJ ajQTe:(UIBarButtonItem*) ajQTe acG6PQ7abFv:(UITableView*) acG6PQ7abFv azeC3:(UIColor*) azeC3 aXhZiK:(UIApplication*) aXhZiK avCkweu:(UIInputView*) avCkweu aVZ90N:(UIViewController*) aVZ90N aRkuV8aA:(UIColor*) aRkuV8aA axfqT:(UIMenuItem*) axfqT {
  195. NSLog(@"B43gauU2CNGstH7Ov");
  196. NSLog(@"H3OzAIsq1XVuklZGRPC6iWpUDYaS9jgN2cMnB");
  197. NSLog(@"F4vPs1tVdqS8crEO5UMbRYuom");
  198. NSLog(@"3uGP81tILy");
  199. NSLog(@"mkuswc1qIDdGv7btS80xQep9VKRfFOUCl");
  200. NSLog(@"I8vLfQGUW4dEgqZT1slKM6Ack");
  201. NSLog(@"jYSsG2TgDxP9KUOn");
  202. NSLog(@"84q297hzxGiRUFA01jYv3weWPb");
  203. NSLog(@"Ib3AgzFBEM2Z8TYiu");
  204. NSLog(@"A2aSCGpvbRkUsiOh");
  205. NSLog(@"ydFKtZ0goJ1riPLkfGScVaQE32qUYTl4OuNADp95");
  206. NSLog(@"W6OyT5dDN8Ebv91C34nJzUPF02Yt");
  207. NSLog(@"ZVaDEoUWy9rdXNOSeun7Bklp2");
  208. NSLog(@"cYoX1AnWL3wUHvT");
  209. NSLog(@"jyoCrRdkxtVEv0F");
  210. NSLog(@"L2RCznDStgyTp");
  211. NSLog(@"dnZSRH1wqJE9o6ls");
  212. NSLog(@"BPzsUItW8wd1fEMVjrgLR0vG3Km");
  213. NSLog(@"m2aTfZvSxDW4bwsUqKolL3pAeuC6khE5tFd");
  214. NSLog(@"aGqiQxRsylpWHgOft23VNDYdKrch5Z");
  215. }
  216. -(void)ahVjeN:(UIColor*) ahVjeN aukF0:(UIFontWeight*) aukF0 aUuy5qQH2b:(UIEvent*) aUuy5qQH2b aqSWOtv:(UIFont*) aqSWOtv aChyH:(UIWindow*) aChyH ayudWZjkeL:(UIViewController*) ayudWZjkeL aquz82Op:(UISearchBar*) aquz82Op anDl0vkUub:(UIRegion*) anDl0vkUub aNdv9Z:(UIControl*) aNdv9Z {
  217. NSLog(@"nUZYkdgBLHmcrJV4QCP");
  218. NSLog(@"TgAxknmlUrvbHSX5wPi2C6DYduINJREfKW");
  219. NSLog(@"8qYLIyfBNZpkuigcXxT");
  220. NSLog(@"pvQD9PI1F4caX2");
  221. NSLog(@"qoeyH1Via9sLFZglbGEdTmQWAr02v");
  222. NSLog(@"BYPwy64jUpsga3hmcLzVOkdnx7tE8K2fTAob1X0");
  223. NSLog(@"r6wNQcCfbeL1M7giXzRBTpxtGAuHvD0asJ");
  224. NSLog(@"ujS61QF3KTGk9J4fZErn8LR");
  225. NSLog(@"yq5bhtMoe1W");
  226. NSLog(@"lrVI2SpoTsj3fCunQvcMR0");
  227. NSLog(@"eVowK3tI126jfFL8lkMaQAqxrW");
  228. NSLog(@"cCGbuegBnX2i16UWyI0jtZoFslOfT");
  229. NSLog(@"PCKoivrlMdFSG89e3fb");
  230. NSLog(@"go7hqNsrczJDXfnB3yvEFPZ4");
  231. NSLog(@"GBk82vrnLOWSR0DVcZzN4w7qCs6fi5A3d");
  232. }
  233. -(void)aX0eBk5jhiO:(UISwitch*) aX0eBk5jhiO a9fQ7ZNc:(UIEvent*) a9fQ7ZNc a1cvmbLAxTO:(UIMotionEffect*) a1cvmbLAxTO aScCu5qR0r:(UIDevice*) aScCu5qR0r aGuxCoP:(UIViewController*) aGuxCoP aYnHWjm:(UIImageView*) aYnHWjm asbFm9U41y:(UIMenuItem*) asbFm9U41y aCg7KmtHNk:(UIViewController*) aCg7KmtHNk aCLUuoPr:(UIView*) aCLUuoPr acnQJAW:(UICollectionView*) acnQJAW {
  234. NSLog(@"KLwTZzYiJ2Ev6MGb7g");
  235. NSLog(@"XgkqF7H2oe4QIw9McV6K1CLTu0yABROnG");
  236. NSLog(@"0KFYIZGLtDEuARjxV5lXg");
  237. NSLog(@"Ek5sgnG0p4DHAIXZw8QWydix");
  238. NSLog(@"z5mlvqfBegDoWhNi6OMS4Y0");
  239. NSLog(@"AIUGZl0i2csdpn1EMyJuL");
  240. NSLog(@"dBetC0QTXMKrma7LG4c6ySEwDz");
  241. NSLog(@"VOypd0ZEwHrq9ftMG8T1RCBuLUD");
  242. NSLog(@"YMLzVrv3bXamhlxp1");
  243. NSLog(@"v2mD7ObieKF1");
  244. NSLog(@"lbAecMZzPXqpnJEvT4I1HYGfo7L0C");
  245. NSLog(@"EahwgAM2tdnT4PqLo65HFkbiQeyvcu0r");
  246. NSLog(@"iyVIDbcnm8Yl0PM2v63otTrjCwQSXf5FJ4asg1");
  247. NSLog(@"VNAaFouyvXWT671c09wYJZkgxBzSim4eIrLntGj");
  248. NSLog(@"xZ5TD6Ao2Y98bjcUMElsaWSh");
  249. NSLog(@"D32szbQ4oXE6C");
  250. }
  251. -(void)avIdJyjaG:(UIColor*) avIdJyjaG amsJz:(UIAlertView*) amsJz aO8c0b:(UIDocument*) aO8c0b avJ4joI:(UIAlertView*) avJ4joI abqXUoGT:(UIImageView*) abqXUoGT aWHRU9G17:(UIDevice*) aWHRU9G17 aLM8uPYSC2:(UIImage*) aLM8uPYSC2 afBgk:(UIMotionEffect*) afBgk arM6tOfJS:(UISearchBar*) arM6tOfJS aLoTQtbwhYj:(UIControlEvents*) aLoTQtbwhYj aQtBM:(UITableView*) aQtBM aJfGAUID:(UISearchBar*) aJfGAUID aaIxvbyMYzk:(UIBarButtonItem*) aaIxvbyMYzk aCLuEJ:(UIBarButtonItem*) aCLuEJ ap8JO5r:(UIScreen*) ap8JO5r awztVc:(UIMenuItem*) awztVc aWNJS:(UIControl*) aWNJS a2EbW:(UIActivity*) a2EbW aBqf6KadH1:(UIBarButtonItem*) aBqf6KadH1 {
  252. NSLog(@"Iv37kVRUTcW2dsDFQiGKEtygSl1LZwpqPa");
  253. NSLog(@"UWxprLoJq6cK0iwgVGMIsyFQ5");
  254. NSLog(@"465SqUvsYNoVbBe2kO9tl1m");
  255. NSLog(@"ty5Nx1Z98XvD0WQkBfj3AbnYC");
  256. NSLog(@"54zykRldE9mhJ");
  257. NSLog(@"YWai65EHFjvx");
  258. NSLog(@"L45D6rJil1Z0knG");
  259. NSLog(@"bIYuAMgfBF5jS2Rr1qsDnohJiX6OH");
  260. NSLog(@"9bdUOD8PnaIXo3r2LzhQxmtEFVJG0i7Asyk");
  261. NSLog(@"TwYrFNhLvsu");
  262. NSLog(@"Ti14jandJm9Sh");
  263. NSLog(@"BqXkmIOnRcpfFPL4ziC5Kb");
  264. NSLog(@"VK0lHnZyYGJPDLEUO6Nm35Qrg");
  265. }
  266. -(void)ash3k:(UIVisualEffectView*) ash3k aVNhyjlUzS:(UISearchBar*) aVNhyjlUzS aoWade:(UIRegion*) aoWade aLWSB1rUX3:(UIViewController*) aLWSB1rUX3 aUQKPcl:(UILabel*) aUQKPcl aQc20YC43G1:(UIEdgeInsets*) aQc20YC43G1 {
  267. NSLog(@"0osEpXJ6C2FWInVHm9UbhNBOPGYxLa5");
  268. NSLog(@"y6G0nHzKm4hi3VXaIuf8OUjErDsclAB2");
  269. NSLog(@"ns78WLM2vxgBXYfu");
  270. NSLog(@"MSzQKwnNOGtkPm170YlrTaXsuopDfg4FBbVR5LA");
  271. NSLog(@"Upxsa5Roj30NDrvSPiMh");
  272. NSLog(@"etkrBJQFaLlWX4vogmI36sdZTuV0CMHc");
  273. NSLog(@"t0vaEimPbBSe2Us3CyNXOuHJTcgM9ZAhIpzWD");
  274. NSLog(@"rE7FTH9Y2l");
  275. NSLog(@"VDnAoUJFj9zYyfH5");
  276. NSLog(@"vnW2LmcihDslM1CYwf");
  277. NSLog(@"YIyFR5sGE6JWw0H4XmpzieTag2tnQOCD7K");
  278. NSLog(@"yxKUOPERh9TDozv2nAdl4GIuVpwbfMZ");
  279. NSLog(@"3DwWzQXgYJ1d8C");
  280. NSLog(@"zyj1FK7BG0Lbx3vHU5tMo8AT2gr");
  281. NSLog(@"ZrjcBEQ9UPSDoCaeh1O0yH");
  282. NSLog(@"20eyUdbksGn");
  283. NSLog(@"xBbcZRrNQD1gsGCA3UehzJLvudOF");
  284. NSLog(@"cQoJpAPbsdXej3URv16filS");
  285. }
  286. -(void)aH4Pv6JIB0M:(UIBarButtonItem*) aH4Pv6JIB0M aVAvja7pNM:(UICollectionView*) aVAvja7pNM aiekP8:(UITableView*) aiekP8 abi6eP:(UIEvent*) abi6eP aHPCrD:(UITableView*) aHPCrD aONozR912ZI:(UILabel*) aONozR912ZI a51KeAM8:(UIVisualEffectView*) a51KeAM8 av3sumq:(UIInputView*) av3sumq aa9uDHhb:(UIImage*) aa9uDHhb a6WSewrQFf:(UITableView*) a6WSewrQFf a5e0Qn1:(UIInputView*) a5e0Qn1 aInwB01joD:(UISwitch*) aInwB01joD aMkEF9a:(UIVisualEffectView*) aMkEF9a aowvW:(UIBezierPath*) aowvW aTuMfFHNdq:(UIColor*) aTuMfFHNdq am6qGCJc:(UIEvent*) am6qGCJc {
  287. NSLog(@"d2ME1RZFLtnzPfuoe8lyaUgb76NADhciVwTC0pW");
  288. NSLog(@"jSR0sQemW8z6wUH7Y1dhpn4xfCGbA5Br");
  289. NSLog(@"gsE3QqSJBCwI6lcn9PFuvtbzkKo7L4TN508iUXM");
  290. NSLog(@"9yYHof4rMasxJwvPlpO");
  291. NSLog(@"EQMar3LD0kUtAlPNgwXWFZTvJH52R7O");
  292. NSLog(@"2F7uThYVqN1CEc6dArWX");
  293. NSLog(@"CJ1h3LRauef2dT4qA0XUlEg");
  294. NSLog(@"fJpvwsSb8qlj9euiAyDdLTgRWY");
  295. NSLog(@"V3wIGaxiZUhoMCKf1rXdBYDAW");
  296. NSLog(@"h6qQcDxXiCobHGlN50E3");
  297. NSLog(@"WoIsYgwBPejLTDM59fxHukd713rRzthyAN0bn");
  298. NSLog(@"MwSNt0b84ld7DynF52zrKjOikfRQLuWUpVXgIJ9");
  299. NSLog(@"F7LwjkBqcghzP5");
  300. NSLog(@"uXlzHFjZryQCIM1KoeLAd");
  301. NSLog(@"3m8P6D5ycoTdbAs70SB");
  302. NSLog(@"USvz15qKixf4bCQIoW7De3P8mRATplJEhn6gX");
  303. NSLog(@"yU62fQ5FLro4b9z");
  304. NSLog(@"Y3u720XSfmtsJrIvCwiMKLyQP4oOh");
  305. NSLog(@"DPkrmIl148NMt2eZVqp");
  306. NSLog(@"cOlCgImHa5yMe0FtNhD3RK91AQPSnb");
  307. }
  308. -(void)aJ1hZ87vstX:(UIInputView*) aJ1hZ87vstX adVXWS2:(UIFont*) adVXWS2 aXHRT4rLC:(UIImage*) aXHRT4rLC aTKPINRHlB:(UIEvent*) aTKPINRHlB aZYVoj:(UIApplication*) aZYVoj acruLV0:(UIMotionEffect*) acruLV0 a4nCsG8czO9:(UIViewController*) a4nCsG8czO9 aZgOAoHm8:(UIScreen*) aZgOAoHm8 a5mte0y:(UIApplication*) a5mte0y acMJwh7lQ:(UIScreen*) acMJwh7lQ {
  309. NSLog(@"S62OQ5o7BV1Wqt4ulnNJkwaHLPEFxjcYrIh");
  310. NSLog(@"gvXEb0OicLfx6GnYotRekK");
  311. NSLog(@"0268cydZ3pnGPUKFE4u1NVaqL7o");
  312. NSLog(@"m5kbW0DRZxa1492yYehNIQdXGL");
  313. NSLog(@"Ov7HjZW8YkUuCtPqEwg");
  314. NSLog(@"wzqmPDRNBAiS5c94ZUHs");
  315. NSLog(@"5VCihAYsI61Fa9OfLD8lZjext2mzoBuGU");
  316. NSLog(@"acljCek1LFVpKPSn6yW2t");
  317. NSLog(@"UnjhAL1QlBmFf5pxeJ4TsywKS");
  318. NSLog(@"jTzYt29rAbI5mOKeCZ7vH48iSLXn3fck");
  319. NSLog(@"1DYzdbAp0qHPBh2UEVTQLIyOS4CmjsKtfN");
  320. NSLog(@"VwYebtB4NgQd9qoDy8nu7Ap2mS6F3Gka5lP");
  321. NSLog(@"1C9LWJ8sqpO5V6v");
  322. }
  323. @end