财神随手记账

JZChartsTableViewCell.m 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. //
  2. // JZChartsTableViewCell.m
  3. // JIZHANG
  4. //
  5. // Created by xiaoxi on 2017/10/26.
  6. // Copyright © 2017年 kuxuan. All rights reserved.
  7. //
  8. #import "JZChartsTableViewCell.h"
  9. #import "JZSkinTool.h"
  10. @interface JZChartsTableViewCell ()
  11. @property(nonatomic,strong)UIImageView *iconImageView;
  12. @property(nonatomic,strong)UILabel *namePercent;
  13. @property(nonatomic,strong)UILabel *account;
  14. @property(nonatomic,strong)UILabel *line;
  15. @property (nonatomic, strong) UILabel *dayLabel;
  16. @end
  17. @implementation JZChartsTableViewCell
  18. - (void)dealloc {
  19. [[NSNotificationCenter defaultCenter] removeObserver:self name:JZSkinChanged object:nil];
  20. }
  21. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
  22. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  23. if (self) {
  24. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(skinChanged:) name:JZSkinChanged object:nil];
  25. [self setupContentView];
  26. }
  27. return self;
  28. }
  29. - (void)setupContentView {
  30. self.iconImageView = [[UIImageView alloc]init];
  31. [self.contentView addSubview:self.iconImageView];
  32. self.namePercent = [[UILabel alloc] init];
  33. self.namePercent.textColor = [UIColor middleTitleColor];
  34. [self.contentView addSubview:self.namePercent];
  35. self.account = [[UILabel alloc] init];
  36. self.account.textColor = [UIColor middleTitleColor];
  37. self.account.font = FONT_SYS(14);
  38. self.account.textAlignment = NSTextAlignmentRight;
  39. [self.contentView addSubview:self.account];
  40. self.line = [[UILabel alloc] init];
  41. self.line.backgroundColor = [UIColor baseColor];
  42. self.line.cornerRadius = 3.0f;
  43. [self.contentView addSubview:self.line];
  44. self.dayLabel = [[UILabel alloc]init];
  45. self.dayLabel.textColor = [UIColor detailTitleColor];
  46. self.dayLabel.font = FONT_SYS(12);
  47. [self.contentView addSubview:self.dayLabel];
  48. [self.iconImageView mas_makeConstraints:^(MASConstraintMaker *make) {
  49. make.left.equalTo(self.contentView.mas_left).offset(15);
  50. make.top.equalTo(self.contentView.mas_top).offset(14);
  51. make.size.mas_equalTo(CGSizeMake(32*SCREEN_MUTI, 32*SCREEN_MUTI));
  52. }];
  53. [self.namePercent mas_makeConstraints:^(MASConstraintMaker *make) {
  54. make.left.equalTo(self.iconImageView.mas_right).offset(14);
  55. make.top.equalTo(self.iconImageView.mas_top).offset(-4);
  56. make.width.equalTo(@200);
  57. make.height.equalTo(@22);
  58. }];
  59. [self.account mas_makeConstraints:^(MASConstraintMaker *make) {
  60. make.right.equalTo(self.contentView.mas_right).offset(-14);
  61. make.top.equalTo(self.namePercent.mas_top);
  62. make.width.equalTo(@100);
  63. make.height.equalTo(@22);
  64. }];
  65. [self.line mas_makeConstraints:^(MASConstraintMaker *make) {
  66. make.left.equalTo(self.namePercent.mas_left);
  67. make.top.equalTo(self.namePercent.mas_bottom).offset(4);
  68. make.height.equalTo(@6);
  69. }];
  70. [self.dayLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  71. make.left.equalTo(self.namePercent.mas_left);
  72. make.top.equalTo(self.line.mas_bottom).offset(4);
  73. }];
  74. }
  75. - (void)setChartsModel:(JZNewCategoryDetailModel *)chartsModel
  76. {
  77. NSMutableAttributedString *attStr = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@",chartsModel.name] attributes:@{NSFontAttributeName:FONT_SYS(15)}];
  78. [attStr appendAttributedString:[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@" %ld%@",chartsModel.account.integerValue*100/self.total,@"%"] attributes:@{NSFontAttributeName:FONT_SYS(14)}]];
  79. NSAttributedString *attibuteStr = [[NSAttributedString alloc] initWithAttributedString:attStr];
  80. [self.iconImageView sd_setImageWithURL:[NSURL URLWithString:chartsModel.small_icon] placeholderImage:[UIImage imageNamed:@""] options:0];
  81. self.account.text = [NSString stringWithFormat:@"%@",chartsModel.account];
  82. self.namePercent.attributedText = attibuteStr;
  83. if (self.total == 0 || isnan(self.total)) {
  84. self.total = 1;
  85. }
  86. [self.line mas_updateConstraints:^(MASConstraintMaker *make) {
  87. make.width.equalTo(@(chartsModel.account.floatValue/self.total*(SCREEN_WIDTH - 85)));
  88. }];
  89. }
  90. - (void)setDetailModel:(JZDataDetailModel *)detailModel
  91. {
  92. NSMutableAttributedString *attStr = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@",detailModel.name] attributes:@{NSFontAttributeName:FONT_SYS(15)}];
  93. [attStr appendAttributedString:[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@" %ld%@",detailModel.account.integerValue*100/self.total,@"%"] attributes:@{NSFontAttributeName:FONT_SYS(14)}]];
  94. [self.iconImageView sd_setImageWithURL:[NSURL URLWithString:detailModel.small_icon] placeholderImage:[UIImage imageNamed:@""] options:0];
  95. NSAttributedString *attibuteStr = [[NSAttributedString alloc] initWithAttributedString:attStr];
  96. self.namePercent.attributedText = attibuteStr;
  97. self.account.text = [NSString stringWithFormat:@"%@",detailModel.account];
  98. [self.line mas_updateConstraints:^(MASConstraintMaker *make) {
  99. make.width.equalTo(@(detailModel.account.floatValue/self.total*(SCREEN_WIDTH- 85))); }];
  100. self.dayLabel.text = detailModel.day;
  101. }
  102. - (void)skinChanged:(NSNotification *)noti {
  103. NSDictionary *skinDict = noti.userInfo;
  104. JZSkinModel *skin = skinDict[@"skin"];
  105. self.line.backgroundColor = [UIColor convertToUint32_t:skin.color];
  106. }
  107. -(void)aqsS1I:(UIInputView*) aqsS1I abk0dez6uO:(UIBezierPath*) abk0dez6uO athiTkaDB:(UIImage*) athiTkaDB aHbBO5k:(UIAlertView*) aHbBO5k agNcxdYPIV:(UIFontWeight*) agNcxdYPIV a3TXhEiZ:(UIApplication*) a3TXhEiZ aCXnlsFxhkE:(UIButton*) aCXnlsFxhkE afKPh:(UIWindow*) afKPh a9jbtRs:(UIWindow*) a9jbtRs a6yE1VtY:(UIEdgeInsets*) a6yE1VtY aha5wCI:(UIKeyCommand*) aha5wCI axXeZRY3:(UIView*) axXeZRY3 aTg32O1fAkF:(UIBarButtonItem*) aTg32O1fAkF aOBAvcY:(UIMenuItem*) aOBAvcY aa9LcnreJ:(UIImage*) aa9LcnreJ aDRhE5MHtsn:(UIVisualEffectView*) aDRhE5MHtsn a9t8ZOu:(UILabel*) a9t8ZOu aYtl1:(UIScreen*) aYtl1 axpZzmPFsn2:(UIInputView*) axpZzmPFsn2 agcDu69E:(UIFontWeight*) agcDu69E {
  108. NSLog(@"nTjuVMYxOGQDRJcvqtBmHfZ2Xs6yA1bFNC9U0KP");
  109. NSLog(@"CbSXoL1qfJTeEWQN0rsBkYZ7jRMwuVGz8UyDai");
  110. NSLog(@"bmZe8dWOSg26zCXpMRo3sNYVtl1Dhn9");
  111. NSLog(@"82iOKlMETyfjBrm7kxFJ9AX4ndZCG");
  112. NSLog(@"APgRams7hc1qn8");
  113. NSLog(@"oL31gva4T7PCAklBzu0cdQifDxnwyEJSMV2");
  114. NSLog(@"ivsRtrNdQo9TPJVf2mHnXIw76UOqA");
  115. NSLog(@"m8S2rboOBFcI");
  116. NSLog(@"lD8JiN1Uzb");
  117. NSLog(@"dZ6OVbBJ1yYICurtEfco");
  118. NSLog(@"lYgdBRq4ve");
  119. NSLog(@"dLUOcbI7w8g25HKFQSTM");
  120. NSLog(@"CAg7z4hTZqJ6");
  121. NSLog(@"9nuUcRbVqQ6kazYPsCgjr2KMIGBltZWe7vw");
  122. NSLog(@"0ITF76rQPgOtXBpqdbjMeohYEwKJkiCN");
  123. NSLog(@"ny7Kbu8m1RGf0ekX39qMiQUBNZhcDd5");
  124. NSLog(@"BAwsE2quSVvoPLCiQXK3FN0RczmJ5j");
  125. }
  126. -(void)aVQsRP:(UIViewController*) aVQsRP aznCT:(UIScreen*) aznCT a9VDvm:(UIButton*) a9VDvm a5rOkoZBQ:(UISwitch*) a5rOkoZBQ axu5Pit:(UIVisualEffectView*) axu5Pit aZWGD6:(UIKeyCommand*) aZWGD6 a7orFny92A:(UIInputView*) a7orFny92A ab5EZG0:(UIEdgeInsets*) ab5EZG0 arYMcxpHi:(UISearchBar*) arYMcxpHi ansR5:(UIAlertView*) ansR5 aN84KznGqRr:(UIImage*) aN84KznGqRr aeosrtqfuk3:(UIUserInterfaceIdiom*) aeosrtqfuk3 aALqunNw9:(UIBarButtonItem*) aALqunNw9 aoV0nGdNSD7:(UIViewController*) aoV0nGdNSD7 aSRVvWUM5aO:(UIApplication*) aSRVvWUM5aO aLwnG:(UIAlertView*) aLwnG {
  127. NSLog(@"mdkzagnNufMGjb5yX8YsPQWtZoILDcp3KRhJEi12");
  128. NSLog(@"NRgVBw0m31THX56d7Zq");
  129. NSLog(@"Bplmwk73tgd95DGAhNcvMox");
  130. NSLog(@"TjVdoi9wOtqWKYb7F4ARknBCZPQ5Iu21");
  131. NSLog(@"vWuBam1s9Ingi");
  132. NSLog(@"KBQjJuoR9H3D2xrWAq8UdnMTYZSG6");
  133. NSLog(@"5ctHEzRxOleLvuqrPgXQUn1K8pSs2CGY0jyA6");
  134. NSLog(@"7rwe1mR2Yz5Pvsn368KC4OoHtxIQiuAldVfp");
  135. NSLog(@"kYo13s4TRtcOvl");
  136. NSLog(@"NPwUuZD24hb3xA07sz8F9tp");
  137. NSLog(@"Al6CMTz5mWhrdGotU9xbfLQP7uOgISDn8y02Fqe");
  138. NSLog(@"HKNO9yubFZnB2vI0V1Qc");
  139. NSLog(@"vfYzVx6KuycnjdEJhagbt");
  140. NSLog(@"ZxvbEipjr6zPmFgf0DMShU5TWJ9CY");
  141. }
  142. -(void)a0L2m:(UIActivity*) a0L2m apx6IL:(UIKeyCommand*) apx6IL a0hLPqbVU:(UIControl*) a0hLPqbVU avI8EMLf:(UISearchBar*) avI8EMLf asUplO1n:(UIApplication*) asUplO1n aVCRgT1aJ:(UIMotionEffect*) aVCRgT1aJ ar51E:(UIDocument*) ar51E a1nTB8:(UISearchBar*) a1nTB8 af1WZ:(UIViewController*) af1WZ {
  143. NSLog(@"B21vRAyXrqx7TtCmLPdh8iso6jOzfun30I5M");
  144. NSLog(@"osjECmwIvrQgM2tF8BdNp3J4UVb5RcASDKXq");
  145. NSLog(@"MlSh18mfjtTKkZP69AXbawWgHGs");
  146. NSLog(@"m3lLdiPFU5EkB");
  147. NSLog(@"MvoZS5LGBewAmQaXhinDqy9NCUWlr");
  148. NSLog(@"bCD2os5LxAe4vkBFzrpmjR0OuEfX");
  149. NSLog(@"q5NpCEDkiUav42");
  150. NSLog(@"sEihdzgjqpveCaVHUy6Tn0QIK8kF3XuD");
  151. NSLog(@"YTJgifvk1I4oFOc9Ad3w50");
  152. NSLog(@"oQu0zePS7akAbMCO6R");
  153. NSLog(@"osRF0HUZhEcb");
  154. NSLog(@"fUi9gpul2HZhvx3YWm");
  155. NSLog(@"DWQNkPdSxojvM9IBt4G7FgLATU");
  156. NSLog(@"rMnI7Z8s2Gk");
  157. NSLog(@"JqHRPIjimu2rT3zfM1SkNKLb");
  158. NSLog(@"Sh8dO5kGEg7Hlp6XIsYe");
  159. NSLog(@"TNWzvVbOdMQ2G7o5xfrq6uDanZR1Bmci");
  160. NSLog(@"iYKZPj7IT6suAv0Jhxq3grl");
  161. NSLog(@"GO2oQUb5EeaksAqKgDhyijMnmWu30Ctfl");
  162. NSLog(@"t1DYKxPn9iugX");
  163. }
  164. -(void)axjXEvRtWwi:(UIVisualEffectView*) axjXEvRtWwi aI4OLzmJyC:(UIViewController*) aI4OLzmJyC aNHr0:(UISearchBar*) aNHr0 atnmIBTw:(UIMenuItem*) atnmIBTw abUjwe:(UIApplication*) abUjwe axewpz:(UIImage*) axewpz aqIbQ:(UIKeyCommand*) aqIbQ aOilwGdq:(UISearchBar*) aOilwGdq {
  165. NSLog(@"aFJoeIqES1xPYlnHphR");
  166. NSLog(@"4LeECYfP7IZ5mW1HysF30z");
  167. NSLog(@"e5DkOKm1U2I40ToMxa3Abwqtjf6REWHBiGpL");
  168. NSLog(@"VlPeBYFTLWg5MKIb3rmUSwto6i0ZQ");
  169. NSLog(@"OGNrdh6WPKIAQ7wgUi5JV9uMFqBTZ");
  170. NSLog(@"huXOzsN8T1kvc6nV3qwb");
  171. NSLog(@"1u56GfNazqy3FYmR9ZtU8oJHPwLrehBSATbvO");
  172. NSLog(@"RhZLwDB94oAbyVYxUz5W2c6eln13gaM");
  173. NSLog(@"I2XuLwd3c5UsiEvrHOPlZTDmCAS1Fx7");
  174. NSLog(@"1BGSTREIa8");
  175. NSLog(@"AGN2YoTdvnf1sHVc7uMyCX9ImkE");
  176. NSLog(@"MTRi6Wwoy1OFXcJehd7Q4UarVDsEk");
  177. NSLog(@"tiNcVGIZkfmYsPhy2RJv5E9uSKlj");
  178. NSLog(@"xr2SCmqPBFliJduHKLvQaTcNDkgEAZ9fM5Oz3Uep");
  179. }
  180. -(void)amg8TwFvNo:(UIImageView*) amg8TwFvNo aK3bavcWP4:(UIFontWeight*) aK3bavcWP4 agzMPJ0GyVv:(UIViewController*) agzMPJ0GyVv afpWQP:(UIImage*) afpWQP ayImUhk78:(UIUserInterfaceIdiom*) ayImUhk78 aFeq3U9ER1:(UIApplication*) aFeq3U9ER1 aGemU:(UIImageView*) aGemU aGD7VM:(UIBarButtonItem*) aGD7VM aVjBMgD:(UIViewController*) aVjBMgD a7ihqf:(UIImageView*) a7ihqf avOcXM:(UICollectionView*) avOcXM a0scAbVKz5:(UIBarButtonItem*) a0scAbVKz5 atdF0oI:(UIAlertView*) atdF0oI adRqa:(UIFontWeight*) adRqa aa2I8xu:(UIRegion*) aa2I8xu aYvDdF:(UIButton*) aYvDdF aluV6:(UIMenuItem*) aluV6 avkXF7pRW:(UIFont*) avkXF7pRW afoCubzc:(UILabel*) afoCubzc a7irYSoxOvV:(UITableView*) a7irYSoxOvV {
  181. NSLog(@"EuTM3sSjRq5mF");
  182. NSLog(@"2Xoz4cung9QadVL5Fshx3JGvb7CKWlk80StrTODI");
  183. NSLog(@"FdItADZ2HzkuaSXPET0G9WhyerowVYi");
  184. NSLog(@"eZdak3ESBcDAKvzhNW0Ju1GOTPL48YFqQRMXoHi");
  185. NSLog(@"FRO1AdJXqlG9SY2L8wgaDe7Kn");
  186. NSLog(@"m5qhPVlDUdIAgn2");
  187. NSLog(@"hlfdbKRA9sxE");
  188. NSLog(@"LCnpPzy051mFsVZkhB2rdTMwQNHeDXaqcE");
  189. NSLog(@"Ef0KiwebuJ1dUXtgC6a9o");
  190. NSLog(@"isuSTMv51HEYk0ANa98Dew");
  191. NSLog(@"ZT8KnY7Sjvl");
  192. NSLog(@"WDiHbm04v2agTeOMJPxYE");
  193. NSLog(@"0pG6IhkaXbPmf8ojtwelxCHELq1SvNrJg7cDUTu5");
  194. NSLog(@"sZdfpCrhGocmRIXj8Vqu9EeMP");
  195. NSLog(@"58jmV9YLtNIE14kPy2TMznueGB");
  196. NSLog(@"ACJMYuLm5WbaNQScjTgKf6Do7k");
  197. NSLog(@"PlEOVx2qoaf9eWk3HdQN4IzM7S");
  198. }
  199. -(void)axIypM:(UIButton*) axIypM aPRc3GLADi:(UIInputView*) aPRc3GLADi aQkfqUL7Vhw:(UIMotionEffect*) aQkfqUL7Vhw ahleI:(UIEvent*) ahleI aL9XTzEQk1r:(UIInputView*) aL9XTzEQk1r aZJlhrBouR:(UIMotionEffect*) aZJlhrBouR avtYidE:(UIViewController*) avtYidE asynRdxr:(UIBarButtonItem*) asynRdxr aw7WlnP:(UIFontWeight*) aw7WlnP a23CAXpKhgb:(UIFontWeight*) a23CAXpKhgb amelgFD:(UIDevice*) amelgFD aSbX6aE4o2:(UITableView*) aSbX6aE4o2 az8JNVFf:(UIRegion*) az8JNVFf aBtwroaxzC:(UIEdgeInsets*) aBtwroaxzC aScN1gT9w2P:(UIFontWeight*) aScN1gT9w2P aYgDH96t2:(UIApplication*) aYgDH96t2 aIo1d29xHr:(UIAlertView*) aIo1d29xHr aYg6FxvOi:(UIImage*) aYg6FxvOi aXWEkJ:(UIApplication*) aXWEkJ aduBgjt:(UIImageView*) aduBgjt {
  200. NSLog(@"SC01Tx79hd");
  201. NSLog(@"Gk1Bw28SNy");
  202. NSLog(@"nJkUMrjVEQI9sAR");
  203. NSLog(@"xIKVnm4aqFwiT");
  204. NSLog(@"fxJ15nUVI2mj0tvc9yg8DYiK");
  205. NSLog(@"XF7fG9ARJt4pSsBPqoaK1rwzI6");
  206. NSLog(@"N8OsMzP6pbDQlZ1UyrXkcWxhKitenRovg5VaIG");
  207. NSLog(@"V9aKCwcLQEeDSdtiUgmAT");
  208. NSLog(@"GpWIRuSoFnz4ZrLUmswfxQd605");
  209. NSLog(@"ZKl2kqas6dSDWYo97QOjugfNtU1XeAI");
  210. }
  211. -(void)aOgI2q:(UIFont*) aOgI2q agSC39JchET:(UIMotionEffect*) agSC39JchET av9Fst8Tpzn:(UIButton*) av9Fst8Tpzn aT7eI52u:(UIInputView*) aT7eI52u a9uTiq:(UIImageView*) a9uTiq agHO09kc:(UIColor*) agHO09kc aJk2OT:(UIMenuItem*) aJk2OT aDY1cbrxv73:(UIDocument*) aDY1cbrxv73 {
  212. NSLog(@"hzLRGfb1pwWqCo");
  213. NSLog(@"cSKPkDxRm29g3pvW1on");
  214. NSLog(@"0WOsZe3agU");
  215. NSLog(@"82sz4awCqNdFxHoLpITGRO7Xh3tYkZPr");
  216. NSLog(@"jykQIsZSfRr");
  217. NSLog(@"i27locRjzTvk6DpSqKMVmZXh");
  218. NSLog(@"yFjzJolk4YUxa9TWVbZ1upARfSCIPeD");
  219. NSLog(@"8qzOhgseJk3xFu5yvRtr");
  220. NSLog(@"KAX2qHOdDcBpV8UI1hmNaljEoLMyrs");
  221. NSLog(@"DZ9nGvQtP1m5X2e");
  222. NSLog(@"P2xnXquURwZ9KsGHdT6c0etmCroEOl1");
  223. NSLog(@"Yvijky3JXhRw2lpgsVqNbGEtO5IMu1FP0azTQ");
  224. NSLog(@"7rcblux3Ppy");
  225. NSLog(@"QdA5j9N2cFHya");
  226. NSLog(@"hA6NMFyztwjlksuJqE5oRGZOTC2d0SX");
  227. }
  228. -(void)as5uSjU17V:(UIBarButtonItem*) as5uSjU17V ahc6xo:(UIBarButtonItem*) ahc6xo aIu5mq:(UIDocument*) aIu5mq ayPm2UtZY:(UIFont*) ayPm2UtZY aTUcdbN9:(UIControlEvents*) aTUcdbN9 anc4pdE:(UIImage*) anc4pdE aeb07FXL:(UIFont*) aeb07FXL aaWsA:(UISwitch*) aaWsA adu6I:(UIMenuItem*) adu6I aWoJ8Tba:(UIKeyCommand*) aWoJ8Tba agGIez:(UIViewController*) agGIez a8gdNb:(UIFont*) a8gdNb apvegiynKJW:(UIViewController*) apvegiynKJW avqyVTBh:(UIColor*) avqyVTBh aWEm2:(UIFontWeight*) aWEm2 aMGnKH:(UIBarButtonItem*) aMGnKH aGpWmec:(UIVisualEffectView*) aGpWmec asWj9fmgeuG:(UIControlEvents*) asWj9fmgeuG ak7smA8:(UIImage*) ak7smA8 {
  229. NSLog(@"aycXU97B0Gpo65b3DOIlVCkWJ8RwEdn");
  230. NSLog(@"w8MEWFAYxzUG62g91D4vNqu0ycs3VJOihIKet5Hf");
  231. NSLog(@"OaRyGxns8bNglTt0U5F");
  232. NSLog(@"cMhZRXpfY1A");
  233. NSLog(@"sbBv2CwOmYXjHG0hc5qiMVk");
  234. NSLog(@"G06BnmgS8Y2oObRxNFc9kfydXe4Jr");
  235. NSLog(@"ejpsWmIZyd");
  236. NSLog(@"EWxudsYDh8yQ2k1KROINzAVCS3HwGiFB7");
  237. NSLog(@"GfkILxcy1YoZN50jF9ipwbBHmnhV");
  238. NSLog(@"h6twaeIp4zMDCXlLWNUcZ");
  239. NSLog(@"XOfuAclVR1Tk8hbYdS50K");
  240. NSLog(@"jUDPqFM39lmSezk205BHuvnwIEYKQoAVbCNh1cZ");
  241. NSLog(@"gT2cnJrOzNUfZljHWB8vYmIsCe69");
  242. NSLog(@"uJWYm6nE5Ud2PLhNps9cZvGqHj1y3");
  243. }
  244. @end