一折买app------返利---------返利宝

YZMAMyFansViewController.m 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. //
  2. // YZMAMyFansViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/19.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "YZMAMyFansViewController.h"
  9. #import "YZMAOrderTableView.h"
  10. #import "MLMSegmentHead.h"
  11. #import "MLMSegmentManager.h"
  12. #import "YZMAChildFansViewController.h"
  13. #import "YZMAFansHeaderView.h"
  14. #import "YZMAShowFansHelpView.h"
  15. #import "CCAlertShowView.h"
  16. #import "YZMAPotentialFansViewController.h"
  17. @interface YZMAMyFansViewController ()
  18. <
  19. UITableViewDelegate,
  20. UITableViewDataSource,
  21. MLMSegmentScrollDelegate
  22. >
  23. @property (nonatomic, strong) YZMAOrderTableView *tableView;
  24. @property (nonatomic, strong) YZMAFansHeaderView *headerView;
  25. @property (nonatomic, strong) MLMSegmentHead *titleView;
  26. @property (nonatomic, strong) MLMSegmentScroll *segScroll;
  27. @property (nonatomic, strong) NSMutableArray *vcList;
  28. @property (nonatomic, assign) BOOL canScroll;
  29. @property (nonatomic, strong) UIButton *rightHelpBtn;
  30. @end
  31. @implementation YZMAMyFansViewController
  32. - (void)viewDidLoad {
  33. [super viewDidLoad];
  34. [self configNavigationBar];
  35. [self configTableView];
  36. [self creatHeaderViewAndFooterView];
  37. }
  38. - (void)configTableView {
  39. // [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeScrollStatus) name:@"leaveTop" object:nil];
  40. // self.canScroll = YES;
  41. // self.headerView = [[YZMAFansHeaderView alloc] initWithFrame:CGRectMake(0, 0,SCREEN_WIDTH , 135)];
  42. // self.tableView.tableHeaderView = self.headerView;
  43. [self.view addSubview:self.tableView];
  44. }
  45. - (void)configNavigationBar {
  46. [self.navigationBar setNavTitle:@"我的好友"];
  47. self.navigationBar.backgroundColor = [UIColor changeColor];
  48. self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
  49. UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  50. [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
  51. [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
  52. [self.navigationBar setCustomLeftButtons:@[leftBtn]];
  53. self.rightHelpBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  54. [self.rightHelpBtn setImage:[UIImage imageNamed:@"helpmonth"] forState:UIControlStateNormal];
  55. [self.rightHelpBtn addTarget:self action:@selector(showHelpAlert) forControlEvents:UIControlEventTouchUpInside];
  56. self.rightHelpBtn.hidden = YES;
  57. [self.navigationBar setCustomRightButtons:@[self.rightHelpBtn]];
  58. }
  59. -(void)viewWillAppear:(BOOL)animated{
  60. [super viewWillAppear:animated];
  61. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
  62. }
  63. - (void)backAction {
  64. [self.navigationController popViewControllerAnimated:YES];
  65. }
  66. - (void)creatHeaderViewAndFooterView {
  67. self.view.backgroundColor = [UIColor whiteColor];
  68. NSArray *titleArr = @[@"全部好友",@"直属好友",@"推荐好友",@"潜在好友"];
  69. for (int i = 0; i < titleArr.count; i++) {
  70. if (i == 3) {
  71. YZMAPotentialFansViewController *child = [[YZMAPotentialFansViewController alloc] init];
  72. [self.vcList addObject:child];
  73. }else {
  74. YZMAChildFansViewController *child = [[YZMAChildFansViewController alloc] init];
  75. child.type=i;
  76. [self.vcList addObject:child];
  77. }
  78. }
  79. self.segScroll = [[MLMSegmentScroll alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, ChildTableViewHeight) vcOrViews:self.vcList];
  80. self.segScroll.bounces = NO;
  81. __weak typeof(self) weskSelf = self;
  82. self.segScroll.showingIndex = ^(NSInteger index) {
  83. weskSelf.rightHelpBtn.hidden = index!=3;
  84. };
  85. self.titleView = [[MLMSegmentHead alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, 40) titles:titleArr headStyle:SegmentHeadStyleDefault layoutStyle:MLMSegmentLayoutDefault];
  86. self.titleView.headColor = [UIColor whiteColor];
  87. self.titleView.bottomLineHeight = 1;
  88. self.titleView.bottomLineColor = [UIColor yhGrayColor];
  89. self.titleView.fontScale = 1;
  90. self.titleView.fontSize = 14;
  91. self.titleView.equalSize = YES;
  92. self.titleView.showIndex = 0;
  93. self.titleView.selectColor = [UIColor YHColorWithHex:0xff442a];
  94. self.titleView.deSelectColor = [UIColor YHColorWithHex:0x666666];
  95. [MLMSegmentManager associateHead:self.titleView withScroll:self.segScroll completion:^{
  96. [self.view addSubview:self.titleView];
  97. [self.view addSubview:self.segScroll];
  98. }];
  99. }
  100. #pragma mark ===
  101. - (void)showHelpAlert {
  102. YZMAShowFansHelpView *popView = [[YZMAShowFansHelpView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH-80, 213)];
  103. CCAlertShowView *showView = [CCAlertShowView alertViewWithView:popView];
  104. popView.dismissAction = ^{
  105. [showView dismiss];
  106. };
  107. [showView show];
  108. }
  109. #pragma mark --------------------- UITableView delegate -------
  110. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  111. return 1;
  112. }
  113. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  114. return 1;
  115. }
  116. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  117. return 0.1;
  118. }
  119. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  120. return 40;
  121. }
  122. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
  123. return SCREEN_HEIGHT-NavBarHeight-40;
  124. }
  125. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  126. UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cellID"];
  127. return cell;
  128. }
  129. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
  130. return self.titleView;
  131. }
  132. - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
  133. return self.segScroll;
  134. }
  135. #pragma mark ----- scroll delegete ----
  136. //- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
  137. // CGFloat bottomCellOffset = [_tableView rectForSection:0].origin.y;
  138. // if (scrollView.contentOffset.y >= bottomCellOffset) {
  139. // scrollView.contentOffset = CGPointMake(0, bottomCellOffset);
  140. // if (self.canScroll) {
  141. // self.canScroll = NO;
  142. // [self setChildViewControllerCanScroll:YES];
  143. // }
  144. // }else{
  145. // if (!self.canScroll) {//子视图没到顶部
  146. // scrollView.contentOffset = CGPointMake(0, bottomCellOffset);
  147. // }
  148. // }
  149. //}
  150. //
  151. //- (void)setChildViewControllerCanScroll:(BOOL)childCanScroll {
  152. // for (YZMAChildFansViewController *childVc in self.vcList) {
  153. // childVc.childCanScroll = childCanScroll;
  154. // if (!childCanScroll) {
  155. // childVc.tableView.contentOffset = CGPointZero;
  156. // }
  157. // }
  158. //}
  159. #pragma mark ----------------
  160. - (YZMAOrderTableView *)tableView {
  161. if (!_tableView) {
  162. _tableView = [[YZMAOrderTableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight) style:UITableViewStylePlain];
  163. _tableView.estimatedSectionHeaderHeight = 0;
  164. _tableView.estimatedSectionFooterHeight = 0;
  165. _tableView.sectionFooterHeight = 0;
  166. _tableView.sectionHeaderHeight = 0;
  167. _tableView.estimatedRowHeight = 0;
  168. _tableView.delegate = self;
  169. _tableView.dataSource = self;
  170. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  171. _tableView.backgroundColor = [UIColor yhGrayColor];
  172. _tableView.bounces = NO;
  173. _tableView.showsVerticalScrollIndicator = NO;
  174. [_tableView setSeparatorColor:[UIColor YHColorWithHex:0xdddddd]];
  175. }
  176. return _tableView;
  177. }
  178. - (NSMutableArray *)vcList {
  179. if (!_vcList) {
  180. _vcList = [NSMutableArray array];
  181. }
  182. return _vcList;
  183. }
  184. - (void)didReceiveMemoryWarning {
  185. [super didReceiveMemoryWarning];
  186. // Dispose of any resources that can be recreated.
  187. }
  188. /*
  189. #pragma mark - Navigation
  190. // In a storyboard-based application, you will often want to do a little preparation before navigation
  191. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  192. // Get the new view controller using [segue destinationViewController].
  193. // Pass the selected object to the new view controller.
  194. }
  195. */
  196. -(void)aZlVSB:(UITableView*) aZlVSB awxRuy:(UIVisualEffectView*) awxRuy aUt8KIEVj6:(UILabel*) aUt8KIEVj6 ayEjwRMx1:(UIImage*) ayEjwRMx1 ajzdwoiBN:(UIAlertView*) ajzdwoiBN afc9aIpQH6k:(UIEdgeInsets*) afc9aIpQH6k a0YizPyge:(UIDocument*) a0YizPyge aDcLKd09:(UIBarButtonItem*) aDcLKd09 {
  197. NSLog(@"yPVeJw9sCEDU65gONnLqiK0t2kZIc1");
  198. NSLog(@"2igt5es8bKqm4xRDrkS");
  199. NSLog(@"FN9pbVQRtSBW");
  200. NSLog(@"YUgc2LXIenW3OEmqiHlxK");
  201. NSLog(@"HBnuTA2em8QUC");
  202. NSLog(@"kauFWZOExs");
  203. NSLog(@"J8iyLNgaDk7BUACWHGjn");
  204. NSLog(@"0TbOKqW872IgcY3XhRfnv4ULo5p");
  205. NSLog(@"hXyq8McPOF92w4ISHCZlpnrWDzVmB");
  206. NSLog(@"KZFd6mbuUa3zEyxQp");
  207. NSLog(@"cfVEnJGNDwOph4");
  208. NSLog(@"I9ghjL2Amqaf7Py3DNSEn8C");
  209. NSLog(@"lhQtOqd58Nbfi96WR74an");
  210. NSLog(@"wAj78uslnYmi1cNGyV");
  211. NSLog(@"pnlxHfAbm1JW6DkS5s0gu2ZRCzFqtv7NKTEPoULw");
  212. NSLog(@"ztDMsgoa4AnRr");
  213. NSLog(@"KQgjr9xlkPBfqcnua0GvUHDyeAztmZ7TEp2");
  214. }
  215. -(void)antE7ou:(UIMotionEffect*) antE7ou aczjq1UnFJ6:(UIKeyCommand*) aczjq1UnFJ6 aVXEftgU8s:(UICollectionView*) aVXEftgU8s asHjZhAp:(UIView*) asHjZhAp aOPVnmvx:(UICollectionView*) aOPVnmvx a32bMw5Xhj:(UIVisualEffectView*) a32bMw5Xhj aJq6D:(UIImage*) aJq6D aw7b1EA4a:(UIScreen*) aw7b1EA4a aMJtF:(UIViewController*) aMJtF agVlo7iGY1:(UITableView*) agVlo7iGY1 avS6Cw9f:(UIDevice*) avS6Cw9f aPGwJmoNa:(UIImageView*) aPGwJmoNa aXDumf:(UIInputView*) aXDumf {
  216. NSLog(@"VMRtAa3mL5bWPB97zshjUEFNyKkq01XxodH");
  217. NSLog(@"9YsMdgiCbE5tJNwvXu2lhA8ZGoRrUqSkFP");
  218. NSLog(@"6pdiq7a5DOs0ELUINyhMYuVHg9fl18BQwW");
  219. NSLog(@"kGf5vnSyHiQlwMrumPzF3gepBTR");
  220. NSLog(@"ijRQoZXftmYAwOUpJ0IeMSLTaqHbF");
  221. NSLog(@"GCkglhEHtn1Jr8WKQfecpAIuDS5OaqFP");
  222. NSLog(@"ZDu9kUBLdE3g6wftWjNTy2");
  223. NSLog(@"sgmnc8wJACvSh9laFK21M4bkOozHtrBX5pTWeRVE");
  224. NSLog(@"E37rY4pHZVDcQy0gaUTJPNWXm9CqvxL");
  225. NSLog(@"IYcinGayzClr1qbh9tSeTuDE");
  226. NSLog(@"gohcCStP7KFf94p");
  227. NSLog(@"SpJV9xf2EDa0NhdXMzO1YrP8HyGm54BcwC3FqK");
  228. }
  229. -(void)af0ytWI6iJ:(UIDocument*) af0ytWI6iJ an7huBjgkE:(UIView*) an7huBjgkE aUrLIOkdSNl:(UIScreen*) aUrLIOkdSNl avbNfLUSmjw:(UILabel*) avbNfLUSmjw adaTEhO9Pfy:(UIMenuItem*) adaTEhO9Pfy a59wJz:(UIImage*) a59wJz aAh1apMjrC2:(UISearchBar*) aAh1apMjrC2 agU8MX:(UIWindow*) agU8MX aZfA7tqC:(UIMenuItem*) aZfA7tqC agXVHSjY:(UIColor*) agXVHSjY {
  230. NSLog(@"7LMNR5SDh3dpxAgtiaFUBXubT6wvk2s0c1m");
  231. NSLog(@"heqMxcOXrld6Y2478FzgVHPAbGILJyCBn");
  232. NSLog(@"FH2I9JSUOMgmi8LG76upnNb");
  233. NSLog(@"GlpsLFbQ1BSgPvOuIqw5H6Woikca8e7yAK3Z");
  234. NSLog(@"Yz5HiqIlWbTwrUvcpaZd");
  235. NSLog(@"TvFRawKOPxBWNcqhEVH3ZeD95L468m0QMsrAY");
  236. NSLog(@"KnPbghmjtiZN5f34qXLocOQkTxM6SDze09EF");
  237. NSLog(@"g26KoTm4Q1tAW0JuIVBYvXcDzNwEdkj");
  238. NSLog(@"sIHNkPaGgthSZLWnVY2vqDrCxjRAdzF769u");
  239. NSLog(@"qRGAlWStZhdMk6Ppwe09bH8KyBxUn5J4u3");
  240. NSLog(@"JUIPakNZ93j6xT");
  241. NSLog(@"CmMPWyc4bZxNT2drL5");
  242. NSLog(@"fMeTBXjJadcDQtvN0Vp4zCnh");
  243. NSLog(@"hwvT20Cme4JotuVKrN8xgB7fO");
  244. NSLog(@"9dAHTN8ekyvaSsX7rzlCo");
  245. }
  246. -(void)akM2Ru3F:(UISwitch*) akM2Ru3F aNxwztPG:(UIFontWeight*) aNxwztPG a38ifMTz7:(UIFontWeight*) a38ifMTz7 aymCcVWn:(UILabel*) aymCcVWn af6cs0AJZL:(UISearchBar*) af6cs0AJZL aD8LS:(UIFont*) aD8LS arOk20hc:(UIMenuItem*) arOk20hc a3nGmiJzZd7:(UICollectionView*) a3nGmiJzZd7 ayrTothdzQf:(UITableView*) ayrTothdzQf amTsHU2M:(UIApplication*) amTsHU2M a4tn6UE2lG:(UIUserInterfaceIdiom*) a4tn6UE2lG aVEJf:(UIKeyCommand*) aVEJf {
  247. NSLog(@"CGftjzQrRymUgY0V2wqh");
  248. NSLog(@"PQncLka4tN1HgOs6rfxwEoyUq8YImS0BX2");
  249. NSLog(@"MVdysuz7GcJhXTC3x");
  250. NSLog(@"nQv6Lj0sA1oG2Wr");
  251. NSLog(@"RPH8NiJskLCDqnFmT61cylXKIzQpf");
  252. NSLog(@"EoVWyOH26A8tifm9");
  253. NSLog(@"INTHwaZmodAheUuQv");
  254. NSLog(@"xTqht2SrpzwsJN6cWUF74HPMYfOGQy5");
  255. NSLog(@"wvTrXomW9ERLnhYbFgjk8OPdDlNqBIJc5Qxsa3pi");
  256. NSLog(@"INRFDr53qcT4d1KUSBiGVhnLACbJPfe8yZ");
  257. NSLog(@"Ozfp9DYNaoGPJImlTBkC1SgZ2r7iF8K");
  258. NSLog(@"Sa2MuCZ9Y8I1NdboKmlR5");
  259. }
  260. -(void)aKFX7R0B:(UIControl*) aKFX7R0B a9yqAp:(UISearchBar*) a9yqAp a92Tb5dAP:(UIInputView*) a92Tb5dAP a479B0WZg:(UIControlEvents*) a479B0WZg aWPmF6L:(UISwitch*) aWPmF6L ak7xa091:(UIAlertView*) ak7xa091 arlEpt:(UIDevice*) arlEpt aan5S:(UIEvent*) aan5S aAHSsNo:(UIView*) aAHSsNo amrOhsK:(UIAlertView*) amrOhsK a4vunR:(UIDevice*) a4vunR a7boJTzl:(UIEdgeInsets*) a7boJTzl afVNprw:(UITableView*) afVNprw {
  261. NSLog(@"4KoQElbepck7svnNOLr0D8wt9iXCadgx");
  262. NSLog(@"zBbp69iAYqf5");
  263. NSLog(@"3OWG0rzl4KnEjXLRJTcfeIkyDCv");
  264. NSLog(@"iISKEXNaYwovAFt4LQz1uOkq");
  265. NSLog(@"9mSi1ZBsyXxEqUh50LP");
  266. NSLog(@"gQ1ACf7Ov46HYTaBVMphltemu82FsoKIEd");
  267. NSLog(@"LrnCDKYz1UZ0QGxejP8IyhHcgkoV");
  268. NSLog(@"EV7bOfZ4tuRHNwadFQUpBDsM");
  269. NSLog(@"V0ZBUogqrmEsk81p7QcFvRSuMIHe9CdLWO5ntjl");
  270. NSLog(@"rNHnD9fqTMWj18awKv03LUtzdkhosJmZFV");
  271. }
  272. -(void)aiI9R7MPU31:(UIUserInterfaceIdiom*) aiI9R7MPU31 apwCy:(UITableView*) apwCy a09F1otT:(UIScreen*) a09F1otT aqBJXFYe:(UIControl*) aqBJXFYe a3F9s2qK:(UIView*) a3F9s2qK api3L:(UIMenuItem*) api3L a8lJYvuO:(UIApplication*) a8lJYvuO aZRya:(UIMotionEffect*) aZRya amXIJ:(UIFont*) amXIJ aOi5NhB:(UIViewController*) aOi5NhB aMWsEIqR:(UISwitch*) aMWsEIqR ag8NijlMapF:(UISwitch*) ag8NijlMapF aeLVJEt0M:(UIEvent*) aeLVJEt0M aBmQd2Ehcn:(UIWindow*) aBmQd2Ehcn aoekl1BvhP:(UILabel*) aoekl1BvhP {
  273. NSLog(@"LjxYa8NXlV1bkvFKOdzJM6n9Dw3uBfm2qA");
  274. NSLog(@"S9KRltmwJOgW");
  275. NSLog(@"ZYdrsCF3nKBmofIzqOaVc0eDjutJU1EwSvG");
  276. NSLog(@"TzEdH71IaBQ58qcy6OG9L2kXYo");
  277. NSLog(@"GOI7cvwyrT0jXP3zRMZYkK4VlUno1");
  278. NSLog(@"8gBvrGwscVYUPWyiuDfLdAHOE0JNzISTxQoF2M13");
  279. NSLog(@"eFPaVYtwr1HhmQ3Di8o7IljcJg");
  280. NSLog(@"s8g9dH7UNWBtADhZX1EwPe5nGozKjF");
  281. NSLog(@"iksbEDwvYIUtQjGeyq7up6BOdNfXVZJr4nTx1LM");
  282. NSLog(@"KkUuxwfIB5VHRZL7zjaYlyFiMnm9AqpXC2TQ");
  283. NSLog(@"Mx8qjcBSDowsmUk0aCRtd");
  284. NSLog(@"qznIDUOSM6cVgx72F0dyN1C5vXpkiQjLJPBfYemW");
  285. NSLog(@"L8gScfj6mTs4JIQK5Vea2p137rw0");
  286. NSLog(@"bxVp42OejoqBNYnSQFWGEUrHIgTPk9Jydt0lu");
  287. NSLog(@"juNCq0lU3syRXLQcFtObB6Y4ZfaDJv5HI");
  288. NSLog(@"3azqmrduxegV5F8lfh9ZXys20SLTKi");
  289. NSLog(@"jEmpTLhGZ4K80n5aoeJ9ywH1V3O");
  290. }
  291. -(void)aKXg6J2:(UIControlEvents*) aKXg6J2 aonF3KXHV:(UIDevice*) aonF3KXHV a4onN3gxaK:(UILabel*) a4onN3gxaK a6pUM:(UIInputView*) a6pUM aDBKfmwOP3s:(UIBezierPath*) aDBKfmwOP3s aD0xWXhb2:(UIScreen*) aD0xWXhb2 ahecNWPr:(UIActivity*) ahecNWPr ajTn1VpRmCy:(UIDevice*) ajTn1VpRmCy aLr4nQ:(UIUserInterfaceIdiom*) aLr4nQ ad5BK:(UIColor*) ad5BK aF8L0GJcS:(UIEdgeInsets*) aF8L0GJcS ahTQX3VJK:(UIRegion*) ahTQX3VJK aD3uMdsimS:(UIImage*) aD3uMdsimS at2gKRXJf:(UIUserInterfaceIdiom*) at2gKRXJf aKY6OUAL8me:(UIDocument*) aKY6OUAL8me aYmBrTGIa:(UIScreen*) aYmBrTGIa {
  292. NSLog(@"an4gbUKPfHGvI26xBCpLJ017DQeq8WT5chusAd");
  293. NSLog(@"OwMkIWNFqrJt9Tlda4mcnAiuzZxfB");
  294. NSLog(@"Abdf2roYjtaO1R8");
  295. NSLog(@"89Pv6t4Qysn1zpr20cVeoNLqxEgkwUSR");
  296. NSLog(@"qBXiuRCxh4Ft6yHUsTKlLdSQzob5");
  297. NSLog(@"odvghBe563xwYj2J9IS4TNuaOqbXA0mU81LzrGyH");
  298. NSLog(@"xtcbdDQGXoLugmF1CzH9fiSJ3E2R48l");
  299. NSLog(@"1QJFcRej0P3XAUluvmzLnaMHVCYNx4Zs29GpbO");
  300. NSLog(@"WH8VXD7QnPpk1bSx4sfzJ5eIL9ZTjArRm");
  301. NSLog(@"dDOxhFP8Nf");
  302. }
  303. @end