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

YZMAChildOrderCell.m 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. //
  2. // YZMAChildOrderCell.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/18.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "YZMAChildOrderCell.h"
  9. #import "CCCopyLabel.h"
  10. @interface YZMAChildOrderCell ()
  11. @property (nonatomic, strong) UIImageView *icon;
  12. @property (nonatomic, strong) CCCopyLabel *orderTitle;
  13. @property (nonatomic, strong) UILabel *orderDate;
  14. @property (nonatomic, strong) UILabel *orderPrice;
  15. @property (nonatomic, strong) UILabel *orderType;
  16. @end
  17. @implementation YZMAChildOrderCell
  18. + (instancetype)cellWithTableView:(UITableView *)tableView {
  19. static NSString *cellID = nil;
  20. cellID = NSStringFromClass([self class]);
  21. YZMAChildOrderCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  22. if (!cell) {
  23. cell = [[YZMAChildOrderCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
  24. }
  25. return cell;
  26. }
  27. - (void)awakeFromNib {
  28. [super awakeFromNib];
  29. // Initialization code
  30. }
  31. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
  32. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  33. if (self) {
  34. [self initSubView];
  35. }
  36. return self;
  37. }
  38. - (void)initSubView {
  39. [self.contentView addSubview:self.icon];
  40. [self.contentView addSubview:self.orderTitle];
  41. [self.contentView addSubview:self.orderDate];
  42. [self.contentView addSubview:self.orderPrice];
  43. [self.contentView addSubview:self.orderType];
  44. [self.icon mas_makeConstraints:^(MASConstraintMaker *make) {
  45. make.left.mas_equalTo(15);
  46. make.centerY.mas_equalTo(self.mas_centerY);
  47. make.width.height.mas_equalTo(28);
  48. }];
  49. [self.orderTitle mas_makeConstraints:^(MASConstraintMaker *make) {
  50. make.left.mas_equalTo(self.icon.mas_right).mas_offset(15);
  51. make.top.mas_equalTo(13);
  52. }];
  53. [self.orderDate mas_makeConstraints:^(MASConstraintMaker *make) {
  54. make.left.mas_equalTo(self.orderTitle);
  55. make.top.mas_equalTo(self.orderTitle.mas_bottom).mas_offset(4);
  56. }];
  57. [self.orderPrice mas_makeConstraints:^(MASConstraintMaker *make) {
  58. make.right.mas_equalTo(-15);
  59. make.centerY.mas_equalTo(self);
  60. }];
  61. [self.orderType mas_makeConstraints:^(MASConstraintMaker *make) {
  62. make.left.equalTo(self.orderDate.mas_right).offset(FITSIZE(12));
  63. make.centerY.equalTo(self.orderDate.mas_centerY);
  64. }];
  65. }
  66. - (UILabel *)orderTitle {
  67. if (!_orderTitle) {
  68. _orderTitle = [[CCCopyLabel alloc] init];
  69. _orderTitle.font = [UIFont systemFontOfSize:16];
  70. _orderTitle.text = @"佣金收入";
  71. _orderTitle.textColor = [UIColor YHColorWithHex:0x666666];
  72. }
  73. return _orderTitle;
  74. }
  75. - (UILabel *)orderDate {
  76. if (!_orderDate) {
  77. _orderDate = [[UILabel alloc] init];
  78. _orderDate.textColor = [UIColor YHColorWithHex:0x999999];
  79. _orderDate.font = [UIFont systemFontOfSize:12];
  80. _orderDate.text = @"日期:--";
  81. }
  82. return _orderDate;
  83. }
  84. - (UILabel *)orderPrice {
  85. if (!_orderPrice) {
  86. _orderPrice = [[UILabel alloc] init];
  87. _orderPrice.font = [UIFont systemFontOfSize:18];
  88. _orderPrice.textAlignment = NSTextAlignmentRight;
  89. _orderPrice.text = @"+0.00";
  90. }
  91. return _orderPrice;
  92. }
  93. -(UILabel *)orderType{
  94. if (!_orderType) {
  95. _orderType=[[UILabel alloc]init];
  96. _orderType.textColor = [UIColor YHColorWithHex:0x999999];
  97. _orderType.font = [UIFont systemFontOfSize:12];
  98. _orderType.text = @"";
  99. }
  100. return _orderType;
  101. }
  102. - (UIImageView *)icon {
  103. if (!_icon) {
  104. _icon = [[UIImageView alloc] init];
  105. _icon.image = [UIImage imageNamed:@"comission_left"];
  106. _icon.layer.cornerRadius = 14;
  107. }
  108. return _icon;
  109. }
  110. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  111. [super setSelected:selected animated:animated];
  112. // Configure the view for the selected state
  113. }
  114. -(void)setModel:(YZMAChildOrderModel *)model{
  115. _model=model;
  116. switch ([model.type integerValue]) {
  117. case 0:
  118. {
  119. self.orderTitle.text=@"红包收入";
  120. }
  121. break;
  122. case 1:
  123. case 3:
  124. {
  125. self.orderTitle.text=@"佣金收入";
  126. }
  127. break;
  128. case 2:
  129. {
  130. self.orderTitle.text=@"提现扣除";
  131. }
  132. break;
  133. default:
  134. break;
  135. }
  136. self.orderDate.text=[NSString stringWithFormat:@"%@",model.create_at];
  137. NSString *type=@"+";
  138. if ([model.type integerValue]==2) {
  139. self.orderPrice.textColor=[UIColor YHColorWithHex:0xEC1B1B];
  140. type=@"-"; //提现
  141. switch ([model.state_of_embodiment integerValue]) {
  142. case 0:
  143. {
  144. self.orderType.text=@"申请中";
  145. }
  146. break;
  147. case 1:
  148. {
  149. self.orderType.text=@"已通过";
  150. }
  151. break;
  152. case 2:
  153. {
  154. self.orderType.text=@"未通过";
  155. }
  156. break;
  157. default:
  158. break;
  159. }
  160. }else{
  161. self.orderPrice.textColor=[UIColor YHColorWithHex:0x15CB6C];
  162. self.orderType.text=@"";
  163. }
  164. self.orderPrice.text=[NSString stringWithFormat:@"%@%@",type,model.rebate];
  165. }
  166. -(void)aOH3U:(UIBezierPath*) aOH3U a4aD2YC:(UIImageView*) a4aD2YC a2wuB:(UIDevice*) a2wuB a1qaf4:(UIAlertView*) a1qaf4 avMaWxq268:(UITableView*) avMaWxq268 aGNXCh12:(UILabel*) aGNXCh12 aY2drp:(UIFont*) aY2drp aIinP:(UIDevice*) aIinP aApDNzd0T:(UIScreen*) aApDNzd0T a1Yyi8kb:(UIMotionEffect*) a1Yyi8kb atjMQJf2UN:(UIControlEvents*) atjMQJf2UN aYa3J:(UIAlertView*) aYa3J aMHPlyF:(UIControl*) aMHPlyF aMj1FzA:(UIActivity*) aMj1FzA aIX2ZTyn1:(UIViewController*) aIX2ZTyn1 axTkK:(UIBarButtonItem*) axTkK {
  167. NSLog(@"KuhVs0cxkrMZiSR4DpnlbEO");
  168. NSLog(@"uK4yRWbZoQ0Ig");
  169. NSLog(@"XBRfHMP1QwnSxOiKuLFbsvjYr4c9ehA75CW2");
  170. NSLog(@"fZ6yjeCg0KYkVNrFsHuB5");
  171. NSLog(@"QsVuperHgSFY2PzwOmfn036qhCRi9ckvj");
  172. NSLog(@"gKiOfvdjDEcsYqe3CJzak6Ut04rVb9QXINThBA");
  173. NSLog(@"lNqrIPQgJsBV5X");
  174. NSLog(@"DoW0k9l2stSabUEJq");
  175. NSLog(@"qplKoFr2iWh3PDJzu");
  176. NSLog(@"kP7FLfANRwcDXJSOieutW19zQMG5Er");
  177. NSLog(@"VI0Lj2g513exBlJCSUAF6G4vWqncyz7");
  178. NSLog(@"EaKAgPXhktpwQlW");
  179. NSLog(@"QAbRL3V5M91f7lgv");
  180. NSLog(@"yxousZp6TlO8");
  181. NSLog(@"dZq8bgpQ7Dtl1ywTMJmfLSsjBEAU0YRVzFXO");
  182. NSLog(@"tmM7SYfzu4Ny1");
  183. NSLog(@"S7RqLxYk9PaFJWIt6h");
  184. NSLog(@"diImTScpBGAsvbr49RH");
  185. }
  186. -(void)a1fXvq:(UIBarButtonItem*) a1fXvq aj5F9:(UITableView*) aj5F9 a1p4vxj:(UIBarButtonItem*) a1p4vxj a4LATcW:(UITableView*) a4LATcW ayBWj9Jx8:(UIImageView*) ayBWj9Jx8 aupxm0:(UISwitch*) aupxm0 adE5U0Ho8:(UIColor*) adE5U0Ho8 arKUCZfd7V9:(UIWindow*) arKUCZfd7V9 aqOIbavS8wf:(UIKeyCommand*) aqOIbavS8wf a2J6R9zvQ:(UIDocument*) a2J6R9zvQ aUy6KzDtEB:(UILabel*) aUy6KzDtEB apHrq8U:(UIControlEvents*) apHrq8U aGXyvs:(UIImage*) aGXyvs {
  187. NSLog(@"FUSopH15O0QhgwAX");
  188. NSLog(@"1f2ukRybFoNgMDZ");
  189. NSLog(@"OJrmotvZV0e7qHCWxDLXsf6ugyRTBn");
  190. NSLog(@"twbYFV3qp1U7k9OP62zJQ");
  191. NSLog(@"CKteTGDcN6g5fV1aLhP4jz8r");
  192. NSLog(@"3eB8uUq7rp2hRbfvZtGnFxL0XVj1YwWOQ");
  193. NSLog(@"z46Tlyuf9hCDHPjOMKdGSL7kB5sU3qAn");
  194. NSLog(@"sHb17muNkGh0pYo6gRITfxUOJaE2rSvACwQd");
  195. NSLog(@"MH0iUvkOJ3pgeYNAo");
  196. NSLog(@"IHL4vu0xC8Pj");
  197. NSLog(@"fm2EvogMy9KZw5JTn83Bc16CsVxLIYkd0DzFaWjh");
  198. NSLog(@"1QoE9uULy5ahkKrvijD");
  199. NSLog(@"DEAKB8uZYopX9tfCcrVGmRePInxvWQq4zFjJ");
  200. }
  201. -(void)a7bpoGqA:(UIUserInterfaceIdiom*) a7bpoGqA asihvRVd9:(UIEdgeInsets*) asihvRVd9 a9MCVWG6BRc:(UIViewController*) a9MCVWG6BRc a7Yyiw0:(UIDevice*) a7Yyiw0 amoEM:(UIAlertView*) amoEM aOojwt487Uu:(UIControlEvents*) aOojwt487Uu awRv0WzLbf:(UIUserInterfaceIdiom*) awRv0WzLbf aOXtL:(UICollectionView*) aOXtL apAQiwfrd:(UIVisualEffectView*) apAQiwfrd aE0ZUj6l1:(UISwitch*) aE0ZUj6l1 aLpxHUkb:(UIFont*) aLpxHUkb aQfrGe5:(UIInputView*) aQfrGe5 axtc1Ks28lA:(UIMotionEffect*) axtc1Ks28lA aPV45kmM2c:(UIBarButtonItem*) aPV45kmM2c aEet2l1J:(UIWindow*) aEet2l1J aDXnP9YKotN:(UILabel*) aDXnP9YKotN aeJAupx1l:(UIEvent*) aeJAupx1l a1rZVN:(UIInputView*) a1rZVN aYAy41:(UIViewController*) aYAy41 {
  202. NSLog(@"IbxU1Eqv0typgsXdlGY");
  203. NSLog(@"A8dWV4H09PtkT");
  204. NSLog(@"SXa9sxgiDV2QBopq4ETtuUlezj8CyAw");
  205. NSLog(@"WoNLTqQ3nziMRh5Fy4tg0");
  206. NSLog(@"EAkL4MlT3wim9QquWKp61rUtPoDY7VXfdJIRvj");
  207. NSLog(@"EgXOR7bv6xtfoh1m95wWlSV");
  208. NSLog(@"JvPXjVhEugAiO3Hzm025loZMsK71nxC");
  209. NSLog(@"56fTRlwbVCHvikrgjXhtPEopyIOZFs");
  210. NSLog(@"vKeG5thn7uEIXlDg968wC14fLdbWmasUxZrJQO");
  211. NSLog(@"7BT4MwNnma9LgIAzx1KpvOcyQVGSUJfuhHtlRZ");
  212. }
  213. -(void)azuVt:(UIActivity*) azuVt aG36SHR7:(UISearchBar*) aG36SHR7 ahYcxN6F:(UISearchBar*) ahYcxN6F abOEm:(UIButton*) abOEm a4wRd021x:(UIFont*) a4wRd021x aIltGPSdg:(UIScreen*) aIltGPSdg aFPcZ8:(UIUserInterfaceIdiom*) aFPcZ8 aWA7l:(UIActivity*) aWA7l aELQ6Bij:(UIView*) aELQ6Bij aExlXkW6:(UIActivity*) aExlXkW6 aejUt3:(UIBarButtonItem*) aejUt3 aQyPxYORr:(UIBarButtonItem*) aQyPxYORr aA5P60Qnc:(UIEdgeInsets*) aA5P60Qnc ajyOVo:(UIControl*) ajyOVo aCGMDL2g0:(UIEvent*) aCGMDL2g0 axshv:(UICollectionView*) axshv ahlCiJo0caS:(UISearchBar*) ahlCiJo0caS avVUfe9K:(UIDevice*) avVUfe9K aS8bgGoQnku:(UIDocument*) aS8bgGoQnku {
  214. NSLog(@"htXQqsj0Fb8DNkYUGOAKx2dIlpnyecM7HzZE");
  215. NSLog(@"HDxv3WcXVKMRGwiresynJfo16I");
  216. NSLog(@"r0chHz8yeBgiOADkpsoTYdbF");
  217. NSLog(@"w3KdZebQ0qX4j1NktHJlxvzoSE6L");
  218. NSLog(@"qU7iz6pCXdomJDfhFAlvYWgrLB");
  219. NSLog(@"lvHKGxTVM5AcYnF7");
  220. NSLog(@"0vQzka5FAShrj");
  221. NSLog(@"HUuNwLYrypmRZ5CS4Ts1");
  222. NSLog(@"QjcFM8ahLewXnOtlf1IbTU9");
  223. NSLog(@"BfXewoQSpz7U6xum9vsO");
  224. NSLog(@"5Oiz49UIvm8L62qVC7ZuDX1RKfMpFoYTBexHy");
  225. NSLog(@"A3DKeLcYxMoPOpUiw8VJgs6h5t9ldnm");
  226. NSLog(@"xn2hPRwmVsJUkqaper60N8SE");
  227. NSLog(@"jDUV5vFbtGOzP9m8qENlBXK3");
  228. NSLog(@"wPuoLK1c8J4BbOi0n7Dd36gX2yRQMkfjHlN");
  229. NSLog(@"JfBt0goX5msRGwp3kzq1uTrKxPMbj");
  230. NSLog(@"auHxdsROBNPGqUol9VLrhj8bQ6DFewZCKmSf34");
  231. }
  232. -(void)aUV1LH9hz:(UILabel*) aUV1LH9hz a7UgN:(UITableView*) a7UgN ajY71u0x:(UIControl*) ajY71u0x auZKefG7:(UIAlertView*) auZKefG7 aHmBb:(UIControlEvents*) aHmBb aT2G4D:(UIFontWeight*) aT2G4D aV41IZ:(UIVisualEffectView*) aV41IZ azejZ7uvK:(UIWindow*) azejZ7uvK aEK42QhDr1:(UIButton*) aEK42QhDr1 ajmyq:(UILabel*) ajmyq aKioR7aLb2X:(UIKeyCommand*) aKioR7aLb2X avPgFMCnX:(UIMenuItem*) avPgFMCnX {
  233. NSLog(@"ihYbEVW0Ut");
  234. NSLog(@"ENjM1besYSK");
  235. NSLog(@"SR803W7ihGaBeIPp");
  236. NSLog(@"a5MgW3qiH2LxVD9FcRG6mJ");
  237. NSLog(@"Prkg0mp1Kvhb86l2L3");
  238. NSLog(@"skiMdazImRvpP2D7t5hxBCg8WZfy9e");
  239. NSLog(@"qis1Dwb0dTZmNJgV");
  240. NSLog(@"rhDfLe6QiKITSXFsw4xm");
  241. NSLog(@"PBk1ql0xXSbv");
  242. NSLog(@"W31Qdur0VLCp2ARzX9keovIl6UcNj7");
  243. NSLog(@"vZVQXTOc1jSqaLoD3fFMR7gYy6s");
  244. NSLog(@"5CsAOYk9Hr");
  245. }
  246. -(void)ale2E:(UITableView*) ale2E ajHeJG6:(UILabel*) ajHeJG6 aFJKViU:(UILabel*) aFJKViU aFycZ:(UIDevice*) aFycZ aAR7h:(UIColor*) aAR7h athXTAZ5:(UIView*) athXTAZ5 a36N1:(UITableView*) a36N1 aiRJ4zv5x2O:(UIDevice*) aiRJ4zv5x2O aXYHr:(UIColor*) aXYHr aJg2yqA:(UILabel*) aJg2yqA a8bZQk:(UISwitch*) a8bZQk atKurgDo:(UITableView*) atKurgDo {
  247. NSLog(@"KZ0ajL7n9bWfBXyVOuTitQJNFsEl3vmrd4CRqH");
  248. NSLog(@"MG3142Unt5bLWVahHXxjQI");
  249. NSLog(@"5u0FOzXoUItksT4Q2m3eMSELixgRH681YjlbJwyn");
  250. NSLog(@"MBedmufCgRnq5iHZrDFE0A1VxTYW7b");
  251. NSLog(@"z2G0ur8NIL9BZ");
  252. NSLog(@"sY8y3KbPxhc");
  253. NSLog(@"RBNdEXskuc6IxZ1zUDovmtPTiWYnC4jAbO2a");
  254. NSLog(@"gkHJEUue63pysZl");
  255. NSLog(@"RyzseBmEAKGvoZpPdn51XhS9WcCaMYkj60");
  256. NSLog(@"nvf03YRQ8MB4le");
  257. NSLog(@"JRlxzk69TPDw52yYe4NGKEXbcpsgAVf8Hotd");
  258. NSLog(@"VyJb4isfChLnPx5qcaRAK3eSTHWvpdB8GUjkZ9Eu");
  259. NSLog(@"qby3pOP71FMHQR8uNfctEkUKnYDvJl6BhTWd");
  260. NSLog(@"ug4KQMxzXNB");
  261. NSLog(@"8r5AiD0yQYe");
  262. }
  263. -(void)aFxa4:(UIEvent*) aFxa4 aL5XHVx:(UIMenuItem*) aL5XHVx aWxL1gYHhdQ:(UIWindow*) aWxL1gYHhdQ a6yMz:(UIVisualEffectView*) a6yMz a5jwb:(UIBarButtonItem*) a5jwb an4Z8:(UIKeyCommand*) an4Z8 aS2aYtW:(UIActivity*) aS2aYtW aGWOFsUC09:(UIFontWeight*) aGWOFsUC09 aWOt1Zg:(UIEvent*) aWOt1Zg {
  264. NSLog(@"7LOPBMnuYytCFqvZf5A3db8pUmN01SgDsazik");
  265. NSLog(@"aogbyAdQ4ELR2nceqMXfiW7wvuUYVFC5zPJIStl");
  266. NSLog(@"ERqk1wi4HvOpCMAf8IQKx3jGYVStdnNumlBybX");
  267. NSLog(@"lmCerpuXJDdqUA5oYHFWMZLtNRvGg6OE2kb4");
  268. NSLog(@"Qjkcf6Z3SnAyJuhK4R5NDIzirTVHMxt1Y2s");
  269. NSLog(@"AY6EPk8Wwl");
  270. NSLog(@"dMzIamEyXKlvS29u7gk1QHq");
  271. NSLog(@"UfPxnq6hBNaC");
  272. NSLog(@"hdVH7ims9CNq1b");
  273. NSLog(@"UBbhjizYSKdotTknlOeus2L6GV0CcvfNxr8");
  274. NSLog(@"lIA0wV72x3rXOsLUmYNRhDHnJqc8kST6upCF9f");
  275. NSLog(@"pnd0vGVTWABR5Ej7tDyfCxZOHr1wihm24IeU");
  276. NSLog(@"B9RaZl3SX6VO4o5deINvWykDbx10CtwjM");
  277. NSLog(@"XsNeIzhyxTcJVKljR359H1UbtnZdY87oSfM46GB");
  278. NSLog(@"phAmi3Tl8yMeJzEGf");
  279. }
  280. -(void)aWlImBS4H5P:(UIViewController*) aWlImBS4H5P afRAFMYxt7y:(UIBarButtonItem*) afRAFMYxt7y akfYZT:(UIControl*) akfYZT aSkpTGWf:(UITableView*) aSkpTGWf ac2X9q:(UIBarButtonItem*) ac2X9q ayXpZft2K:(UIControl*) ayXpZft2K aXMYSN:(UIView*) aXMYSN av0ZBYsOxd:(UIDevice*) av0ZBYsOxd arz9RpdxAs:(UIKeyCommand*) arz9RpdxAs aKVblXD:(UIVisualEffectView*) aKVblXD am9Ay0nH76i:(UIUserInterfaceIdiom*) am9Ay0nH76i {
  281. NSLog(@"TEk4j0GmgW8ZJl2eBPNKOMq5HcisXxI");
  282. NSLog(@"D14xilYOuBMaEhApcXbndeVsrLkmKI");
  283. NSLog(@"XFLoy6QiR0mwkvDCr41ZNUcSKe3uYOVM");
  284. NSLog(@"ItOBu3MCg9f");
  285. NSLog(@"FnzSwTv6siIkZtgxJ0Oo5mRVGf1h2rHEu");
  286. NSLog(@"G4Nt8menyiPDCpO1I3gRozEfbq7UAdr9Y");
  287. NSLog(@"zBuXetavcnqMkrC8TYHFfj2KmNUGD0ZsEJAl");
  288. NSLog(@"tHkfhLRrPYT5qDb");
  289. NSLog(@"qBxoCZ8F9yNzcXPhtaOQgGJViDlf6L4e");
  290. NSLog(@"WpHact9AgrdwS1Tq7O6fJsxDkhIZ8bjmzUolK");
  291. NSLog(@"qgM94W6Tj5DzGZkXcd20");
  292. NSLog(@"AgsYO5Gx1B2E");
  293. }
  294. -(void)acedC6m:(UIDocument*) acedC6m avLpBrH8Y0O:(UIDevice*) avLpBrH8Y0O aHUPlAz:(UIRegion*) aHUPlAz aa69pb:(UIMotionEffect*) aa69pb atYp4:(UIWindow*) atYp4 aM54msHtZ:(UIEdgeInsets*) aM54msHtZ a58tYoUCzm:(UIFontWeight*) a58tYoUCzm ajLxJF:(UIImageView*) ajLxJF aDTtm:(UIUserInterfaceIdiom*) aDTtm afQkxUl:(UIMenuItem*) afQkxUl aLDrqktQAGN:(UIMotionEffect*) aLDrqktQAGN a1HiWRIu:(UIView*) a1HiWRIu aByT7:(UISearchBar*) aByT7 azP9UpDVo:(UIRegion*) azP9UpDVo aTBW0:(UIBarButtonItem*) aTBW0 aB3KH:(UIDevice*) aB3KH {
  295. NSLog(@"4KRNvJrIy2U093XOCdiFbkScWBj1pq5eVzgG");
  296. NSLog(@"uHRFMO7JfGAU");
  297. NSLog(@"4gpwOSxJqVRIP6et");
  298. NSLog(@"AzSVYkxQmduRpMh9iCF5sDW4G6ngNOe");
  299. NSLog(@"jOwVMadsTirEp6vmCzR1obncyU8f");
  300. NSLog(@"RxUJyNSken9G");
  301. NSLog(@"9lwGSEZqVvDJsK67LRQyobxC2aYN81dO3k4nh");
  302. NSLog(@"ZfzIqVTx0v6KeML2aOC");
  303. NSLog(@"GJNSXHFmscIrVa1nCzyLAYZk");
  304. NSLog(@"EK8GbsZH37JNvr6FPR0WcTUy15hOgq");
  305. NSLog(@"Mo8m3YXkSiGd");
  306. NSLog(@"UaLp3ZNxTJPiDC51Rfzu6qMbXKQB4t78");
  307. NSLog(@"koGFba7WOytYZ9KAVUQ");
  308. NSLog(@"lkHoehJj7DnzP1AKY4rgctOfLUy0Z6vw");
  309. NSLog(@"3BUdK0QtA8JMLjwzS79Eo");
  310. NSLog(@"j0qZJpUhcGCne46r13P8EWsoubHlFQwgK2zX");
  311. NSLog(@"95RuOdU1lzBqD2X0HK6QLhM");
  312. }
  313. -(void)aGdbc8IS0kD:(UICollectionView*) aGdbc8IS0kD a2SVtG:(UIButton*) a2SVtG aTbFsB:(UISearchBar*) aTbFsB a3NjOMJxQV7:(UIColor*) a3NjOMJxQV7 a9QTby:(UIDocument*) a9QTby aepCJDSN9Rs:(UIScreen*) aepCJDSN9Rs ay5ER0N:(UIAlertView*) ay5ER0N a28xXFZenq4:(UIFont*) a28xXFZenq4 an69YI0V:(UIVisualEffectView*) an69YI0V aLaCUN:(UIMotionEffect*) aLaCUN aseXo6z:(UILabel*) aseXo6z aimkR6:(UIEdgeInsets*) aimkR6 aCkUvNsKu3q:(UIEvent*) aCkUvNsKu3q a3DY4ka:(UIFont*) a3DY4ka {
  314. NSLog(@"vo6dmtF2kwQf047p8AuR3GXsZ");
  315. NSLog(@"EmpH6GQYI05qNtWjCu8vfw7rPgliZUzObXDh1Ay");
  316. NSLog(@"CdEoxywO58vbNrYt2nISKqVMm");
  317. NSLog(@"RGAbtIqcnoamJKHCSv45QgPpEslUzL3W97");
  318. NSLog(@"UQ2stOFRIKJMNHD6LV8");
  319. NSLog(@"t6pIZSKGeulJDBqf");
  320. NSLog(@"b40NYSjzdtPiqmOlevQ");
  321. NSLog(@"XSAhxHiZOyc2kmMr");
  322. NSLog(@"S8YmG9Kdc2JRa4");
  323. NSLog(@"AMoJrhIXNBb3QkgSHT9EY28V");
  324. NSLog(@"8ZTCFvbi1cS93kwxp6WK4qAfJzNDsLaERMBeO");
  325. NSLog(@"syh4PdneHjBCKilLTvp3kxtDUSMRV0I15");
  326. NSLog(@"ipgaJt31QNo9s46ZWdPjbFnwcyu0m");
  327. NSLog(@"Eu5LHG1n3IRXlmtsgrJ9qW6SPBOQziZ");
  328. NSLog(@"gK7UMyGzIZRoJFCB4cNbeO15nirtL");
  329. NSLog(@"LbsotNhJml8uM3kPHFKRWE0gDayxzf9X");
  330. NSLog(@"Tqt9Ek8HIK5iFrl6");
  331. NSLog(@"D5O2QyYvEG0eUkJ");
  332. NSLog(@"MtSLadBvkrp1qHlGOVsxZ8RKEA6Igw");
  333. NSLog(@"DiqWwpkZnvgOQIdS7BCz5H");
  334. }
  335. @end