-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3931277532852775.gexf
More file actions
9379 lines (9379 loc) · 531 KB
/
3931277532852775.gexf
File metadata and controls
9379 lines (9379 loc) · 531 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='utf-8'?>
<gexf xmlns:viz="http://www.gexf.net/1.2draft/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.gephi.org/gexf/1.2draft" xmlns:ns0="xsi" version="1.2" ns0:schemaLocation="http://www.gephi.org/gexf/1.1draft http://gephi.org/gexf/1.2draft.xsd">
<meta lastmodified="2016-10-01">
<creator>Huang</creator>
<description>A web network</description>
</meta>
<graph defaultedgetype="directed" label="A web network" mode="dynamic" timeformat="dateTime">
<attributes class="node" mode="static">
<attribute id="0" title="m_id" type="string"/>
<attribute id="1" title="content" type="string"/>
<attribute id="2" title="u_id" type="string"/>
<attribute id="3" title="m_time" type="string"/>
<attribute id="4" title="m_timestamp" type="string"/>
</attributes>
<nodes>
<node id="3931277532852775" label="label309">
<attvalues>
<attvalue for="0" value="3931277532852775"/>
<attvalue for="1" value="O为什么我们一定要跟一个16岁“小姑娘”过不去? 一跨国娱乐公司,居然白痴到使用台湾艺人时,从不规避“一个中国”的高压线,“努力”践行着“两国论”,艺人介绍写国籍台湾,每次她出场都打上非法的台湾地区旗,还让中国国旗和非法的台湾地区旗同时出现在节目里,JYD去死吧。心疼那谁。"/>
<attvalue for="2" value="1433680664"/>
<attvalue for="3" value="2016-01-14T20:04:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773065000"/>
</attvalues>
</node>
<node id="3931277646257853" label="label620">
<attvalues>
<attvalue for="0" value="3931277646257853"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="2689058815"/>
<attvalue for="3" value="2016-01-14T20:04:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773093000"/>
</attvalues>
</node>
<node id="3931277676030551" label="label661">
<attvalues>
<attvalue for="0" value="3931277676030551"/>
<attvalue for="1" value="[拜拜]"/>
<attvalue for="2" value="2157271672"/>
<attvalue for="3" value="2016-01-14T20:04:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773099000"/>
</attvalues>
</node>
<node id="3931277726313977" label="label371">
<attvalues>
<attvalue for="0" value="3931277726313977"/>
<attvalue for="1" value="[围观]"/>
<attvalue for="2" value="1808697602"/>
<attvalue for="3" value="2016-01-14T20:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773111000"/>
</attvalues>
</node>
<node id="3931277742846399" label="label797">
<attvalues>
<attvalue for="0" value="3931277742846399"/>
<attvalue for="1" value="祝他们变成一只窜天猴,开心时,上天;不开心时,爆炸。"/>
<attvalue for="2" value="3518019393"/>
<attvalue for="3" value="2016-01-14T20:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773115000"/>
</attvalues>
</node>
<node id="3931277755159372" label="label190">
<attvalues>
<attvalue for="0" value="3931277755159372"/>
<attvalue for="1" value="噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1433680664"/>
<attvalue for="3" value="2016-01-14T20:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773119000"/>
</attvalues>
</node>
<node id="3931277759358977" label="label1">
<attvalues>
<attvalue for="0" value="3931277759358977"/>
<attvalue for="1" value="套用八组一句话,我还没来得及吃他的安利,他就被坑死了[喵喵]"/>
<attvalue for="2" value="2454366452"/>
<attvalue for="3" value="2016-01-14T20:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773120000"/>
</attvalues>
</node>
<node id="3931277817874300" label="label38">
<attvalues>
<attvalue for="0" value="3931277817874300"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1908083565"/>
<attvalue for="3" value="2016-01-14T20:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773134000"/>
</attvalues>
</node>
<node id="3931277868518082" label="label348">
<attvalues>
<attvalue for="0" value="3931277868518082"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="3932313881"/>
<attvalue for="3" value="2016-01-14T20:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773145000"/>
</attvalues>
</node>
<node id="3931277931502579" label="label640">
<attvalues>
<attvalue for="0" value="3931277931502579"/>
<attvalue for="1" value="酱油瓶![doge]"/>
<attvalue for="2" value="2031348043"/>
<attvalue for="3" value="2016-01-14T20:06:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773160000"/>
</attvalues>
</node>
<node id="3931277952249513" label="label19">
<attvalues>
<attvalue for="0" value="3931277952249513"/>
<attvalue for="1" value="主任,明明是 jyp"/>
<attvalue for="2" value="1828260584"/>
<attvalue for="3" value="2016-01-14T20:06:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773166000"/>
</attvalues>
</node>
<node id="3931277952501044" label="label931">
<attvalues>
<attvalue for="0" value="3931277952501044"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1316355005"/>
<attvalue for="3" value="2016-01-14T20:06:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773166000"/>
</attvalues>
</node>
<node id="3931278090779550" label="label11">
<attvalues>
<attvalue for="0" value="3931278090779550"/>
<attvalue for="1" value="//@paingod: 噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2741875331"/>
<attvalue for="3" value="2016-01-14T20:06:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773198000"/>
</attvalues>
</node>
<node id="3931278187623476" label="label56">
<attvalues>
<attvalue for="0" value="3931278187623476"/>
<attvalue for="1" value="//@paingod: 噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1145119764"/>
<attvalue for="3" value="2016-01-14T20:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773222000"/>
</attvalues>
</node>
<node id="3931278200219354" label="label173">
<attvalues>
<attvalue for="0" value="3931278200219354"/>
<attvalue for="1" value="//@paingod: 噢对//@妄凉:不是jyp吗?[笑cry][笑cry][笑cry]"/>
<attvalue for="2" value="1851455942"/>
<attvalue for="3" value="2016-01-14T20:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773225000"/>
</attvalues>
</node>
<node id="3931278220702790" label="label752">
<attvalues>
<attvalue for="0" value="3931278220702790"/>
<attvalue for="1" value="JYP大写的作死…"/>
<attvalue for="2" value="1824577587"/>
<attvalue for="3" value="2016-01-14T20:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773230000"/>
</attvalues>
</node>
<node id="3931278225129261" label="label42">
<attvalues>
<attvalue for="0" value="3931278225129261"/>
<attvalue for="1" value="理智对待,互相尊重//@paingod: 噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="5122673955"/>
<attvalue for="3" value="2016-01-14T20:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773231000"/>
</attvalues>
</node>
<node id="3931278241919688" label="label660">
<attvalues>
<attvalue for="0" value="3931278241919688"/>
<attvalue for="1" value="鉴于主任手抖,我帮你加个话题#抵制JYP# 然后主任在大号也发一遍吧~"/>
<attvalue for="2" value="3884788018"/>
<attvalue for="3" value="2016-01-14T20:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773234000"/>
</attvalues>
</node>
<node id="3931278249833197" label="label924">
<attvalues>
<attvalue for="0" value="3931278249833197"/>
<attvalue for="1" value="还恍恍惚惚红红火火哈哈 //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2386835814"/>
<attvalue for="3" value="2016-01-14T20:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773237000"/>
</attvalues>
</node>
<node id="3931278262931652" label="label832">
<attvalues>
<attvalue for="0" value="3931278262931652"/>
<attvalue for="1" value="酱油瓶不服,你们封杀我就算了,连名字都写错【英语也是106】//@paingod:噢对//@妄凉:不是jyp吗?[笑cry][笑cry][笑cry][doge]"/>
<attvalue for="2" value="5307721111"/>
<attvalue for="3" value="2016-01-14T20:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773239000"/>
</attvalues>
</node>
<node id="3931278325906079" label="label335">
<attvalues>
<attvalue for="0" value="3931278325906079"/>
<attvalue for="1" value="心疼韩娱门外汉的主任233 //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1682342390"/>
<attvalue for="3" value="2016-01-14T20:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773255000"/>
</attvalues>
</node>
<node id="3931278435224858" label="label884">
<attvalues>
<attvalue for="0" value="3931278435224858"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2516954215"/>
<attvalue for="3" value="2016-01-14T20:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773280000"/>
</attvalues>
</node>
<node id="3931278535571570" label="label598">
<attvalues>
<attvalue for="0" value="3931278535571570"/>
<attvalue for="1" value="@hshshahah //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="5590124730"/>
<attvalue for="3" value="2016-01-14T20:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773304000"/>
</attvalues>
</node>
<node id="3931278539771948" label="label646">
<attvalues>
<attvalue for="0" value="3931278539771948"/>
<attvalue for="1" value="酱油瓶,哈哈哈哈哈哈哈哈 //@paingod:噢对 //@妄凉:不是jyp吗?[笑cry][笑cry][笑cry][笑cry]"/>
<attvalue for="2" value="2906932554"/>
<attvalue for="3" value="2016-01-14T20:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773306000"/>
</attvalues>
</node>
<node id="3931278581252481" label="label777">
<attvalues>
<attvalue for="0" value="3931278581252481"/>
<attvalue for="1" value="明明这么严肃的场面,为什么变画风突变//@paingod:噢对//@妄凉:不是jyp吗?[笑cry]"/>
<attvalue for="2" value="2174190943"/>
<attvalue for="3" value="2016-01-14T20:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773315000"/>
</attvalues>
</node>
<node id="3931278603188901" label="label625">
<attvalues>
<attvalue for="0" value="3931278603188901"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1158018293"/>
<attvalue for="3" value="2016-01-14T20:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773321000"/>
</attvalues>
</node>
<node id="3931278606638897" label="label139">
<attvalues>
<attvalue for="0" value="3931278606638897"/>
<attvalue for="1" value="主任是怕新浪屏蔽JYP大家看不到!恩 ,一定是这样!"/>
<attvalue for="2" value="3214657122"/>
<attvalue for="3" value="2016-01-14T20:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773321000"/>
</attvalues>
</node>
<node id="3931278652631926" label="label269">
<attvalues>
<attvalue for="0" value="3931278652631926"/>
<attvalue for="1" value="手癌建议重发( //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2966541384"/>
<attvalue for="3" value="2016-01-14T20:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773333000"/>
</attvalues>
</node>
<node id="3931278661029264" label="label40">
<attvalues>
<attvalue for="0" value="3931278661029264"/>
<attvalue for="1" value="心疼韩娱门外汉的主任233[笑cry]"/>
<attvalue for="2" value="2828338982"/>
<attvalue for="3" value="2016-01-14T20:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773335000"/>
</attvalues>
</node>
<node id="3931278682209979" label="label393">
<attvalues>
<attvalue for="0" value="3931278682209979"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1645815040"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773340000"/>
</attvalues>
</node>
<node id="3931278691100284" label="label695">
<attvalues>
<attvalue for="0" value="3931278691100284"/>
<attvalue for="1" value="哈哈哈哈,对不起我笑了 //@paingod:噢对//@妄凉:不是jyp吗?[笑cry]"/>
<attvalue for="2" value="1768400812"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773342000"/>
</attvalues>
</node>
<node id="3931278707395600" label="label757">
<attvalues>
<attvalue for="0" value="3931278707395600"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="2057175221"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773345000"/>
</attvalues>
</node>
<node id="3931278740983607" label="label25">
<attvalues>
<attvalue for="0" value="3931278740983607"/>
<attvalue for="1" value="→_→黑得漂亮!//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2425371700"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773354000"/>
</attvalues>
</node>
<node id="3931278741301529" label="label923">
<attvalues>
<attvalue for="0" value="3931278741301529"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1517342044"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773354000"/>
</attvalues>
</node>
<node id="3931278765727249" label="label551">
<attvalues>
<attvalue for="0" value="3931278765727249"/>
<attvalue for="1" value="//@paingod: 噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1163220112"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773360000"/>
</attvalues>
</node>
<node id="3931278807707881" label="label666">
<attvalues>
<attvalue for="0" value="3931278807707881"/>
<attvalue for="1" value="哈哈哈哈哈哈哈主任手抖了//@paingod:噢对//@妄凉:不是jyp吗?[doge]"/>
<attvalue for="2" value="1781291260"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773370000"/>
</attvalues>
</node>
<node id="3931278817066215" label="label26">
<attvalues>
<attvalue for="0" value="3931278817066215"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2503819790"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773372000"/>
</attvalues>
</node>
<node id="3931278849871919" label="label629">
<attvalues>
<attvalue for="0" value="3931278849871919"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2926760415"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773380000"/>
</attvalues>
</node>
<node id="3931278862289988" label="label791">
<attvalues>
<attvalue for="0" value="3931278862289988"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1286735790"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773383000"/>
</attvalues>
</node>
<node id="3931278917373296" label="label303">
<attvalues>
<attvalue for="0" value="3931278917373296"/>
<attvalue for="1" value="哈哈哈 心疼手癌主任1S..//@paingod: 噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1651788151"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773396000"/>
</attvalues>
</node>
<node id="3931278930174439" label="label44">
<attvalues>
<attvalue for="0" value="3931278930174439"/>
<attvalue for="1" value="这种时候点名王嘉尔,不知对他是福是祸"/>
<attvalue for="2" value="1651151495"/>
<attvalue for="3" value="2016-01-14T20:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773399000"/>
</attvalues>
</node>
<node id="3931278992616566" label="label613">
<attvalues>
<attvalue for="0" value="3931278992616566"/>
<attvalue for="1" value="jyd是什么。。哥。。你能别这么搞笑嘛。。。本来挺严肃的事我怎么这么想笑哈哈哈哈哈哈哈哈 //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2367387951"/>
<attvalue for="3" value="2016-01-14T20:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773413000"/>
</attvalues>
</node>
<node id="3931279022346261" label="label408">
<attvalues>
<attvalue for="0" value="3931279022346261"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1745130525"/>
<attvalue for="3" value="2016-01-14T20:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773421000"/>
</attvalues>
</node>
<node id="3931279034174224" label="label357">
<attvalues>
<attvalue for="0" value="3931279034174224"/>
<attvalue for="1" value="#抵制JYP#"/>
<attvalue for="2" value="2985490063"/>
<attvalue for="3" value="2016-01-14T20:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773424000"/>
</attvalues>
</node>
<node id="3931279042573592" label="label300">
<attvalues>
<attvalue for="0" value="3931279042573592"/>
<attvalue for="1" value="#抵制JYP#点赞!"/>
<attvalue for="2" value="1827338855"/>
<attvalue for="3" value="2016-01-14T20:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773426000"/>
</attvalues>
</node>
<node id="3931279093459795" label="label500">
<attvalues>
<attvalue for="0" value="3931279093459795"/>
<attvalue for="1" value="哈哈哈哈六主任走点心啊//@paingod: 噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="3818842860"/>
<attvalue for="3" value="2016-01-14T20:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773438000"/>
</attvalues>
</node>
<node id="3931279127264194" label="label103">
<attvalues>
<attvalue for="0" value="3931279127264194"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1797306715"/>
<attvalue for="3" value="2016-01-14T20:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773445000"/>
</attvalues>
</node>
<node id="3931279139641170" label="label219">
<attvalues>
<attvalue for="0" value="3931279139641170"/>
<attvalue for="1" value="对“中华民国国旗”,你支持你的,我封杀我的,这叫一中各表,各司其职。 //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1715671145"/>
<attvalue for="3" value="2016-01-14T20:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773449000"/>
</attvalues>
</node>
<node id="3931279181276630" label="label353">
<attvalues>
<attvalue for="0" value="3931279181276630"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1742057274"/>
<attvalue for="3" value="2016-01-14T20:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773459000"/>
</attvalues>
</node>
<node id="3931279261046544" label="label547">
<attvalues>
<attvalue for="0" value="3931279261046544"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1093527352"/>
<attvalue for="3" value="2016-01-14T20:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773478000"/>
</attvalues>
</node>
<node id="3931279303028291" label="label497">
<attvalues>
<attvalue for="0" value="3931279303028291"/>
<attvalue for="1" value="#抵制JYP##台独周子瑜# //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2204261490"/>
<attvalue for="3" value="2016-01-14T20:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773488000"/>
</attvalues>
</node>
<node id="3931279340808708" label="label754">
<attvalues>
<attvalue for="0" value="3931279340808708"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="2647451430"/>
<attvalue for="3" value="2016-01-14T20:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773497000"/>
</attvalues>
</node>
<node id="3931279369792999" label="label560">
<attvalues>
<attvalue for="0" value="3931279369792999"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1817137864"/>
<attvalue for="3" value="2016-01-14T20:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773504000"/>
</attvalues>
</node>
<node id="3931279374394098" label="label632">
<attvalues>
<attvalue for="0" value="3931279374394098"/>
<attvalue for="1" value="@混宅党天天 被六笑死//@paingod:噢对//@妄凉:不是jyp吗?[笑cry]"/>
<attvalue for="2" value="2406825815"/>
<attvalue for="3" value="2016-01-14T20:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773505000"/>
</attvalues>
</node>
<node id="3931279408322963" label="label578">
<attvalues>
<attvalue for="0" value="3931279408322963"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1801705594"/>
<attvalue for="3" value="2016-01-14T20:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773513000"/>
</attvalues>
</node>
<node id="3931279429060743" label="label854">
<attvalues>
<attvalue for="0" value="3931279429060743"/>
<attvalue for="1" value="JYD。。。23333,酱油瓶,jyp啦~"/>
<attvalue for="2" value="1812557622"/>
<attvalue for="3" value="2016-01-14T20:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773518000"/>
</attvalues>
</node>
<node id="3931279433514575" label="label405">
<attvalues>
<attvalue for="0" value="3931279433514575"/>
<attvalue for="1" value="我喜欢这句:我们想对国民党说的是,我们就是要封杀你们“青天白日旗”在国际社会上的生存空间。你支持你的,我封杀我的,一中各表,各司其职~//@paingod: 噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2079068387"/>
<attvalue for="3" value="2016-01-14T20:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773519000"/>
</attvalues>
</node>
<node id="3931279441912188" label="label47">
<attvalues>
<attvalue for="0" value="3931279441912188"/>
<attvalue for="1" value="转发支持!抵制JYP!"/>
<attvalue for="2" value="3182177990"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773521000"/>
</attvalues>
</node>
<node id="3931279453766190" label="label358">
<attvalues>
<attvalue for="0" value="3931279453766190"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2653943535"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773524000"/>
</attvalues>
</node>
<node id="3931279471301459" label="label141">
<attvalues>
<attvalue for="0" value="3931279471301459"/>
<attvalue for="1" value="//@paingod: 噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="5533431812"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773528000"/>
</attvalues>
</node>
<node id="3931279517219313" label="label425">
<attvalues>
<attvalue for="0" value="3931279517219313"/>
<attvalue for="1" value="台湾后面跟个China是几个意思?说是台湾地区真个是politically correct.真正该说的就是台湾省。//@菉葭苍苍:[拜拜][拜拜]"/>
<attvalue for="2" value="1766074315"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773539000"/>
</attvalues>
</node>
<node id="3931279558856531" label="label97">
<attvalues>
<attvalue for="0" value="3931279558856531"/>
<attvalue for="1" value="目前比较详细的事件描述"/>
<attvalue for="2" value="1660976510"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773549000"/>
</attvalues>
</node>
<node id="3931279596641003" label="label323">
<attvalues>
<attvalue for="0" value="3931279596641003"/>
<attvalue for="1" value="Repost"/>
<attvalue for="2" value="2251201592"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773558000"/>
</attvalues>
</node>
<node id="3931279613051091" label="label499">
<attvalues>
<attvalue for="0" value="3931279613051091"/>
<attvalue for="1" value="可怜了那个耿直爱国boy"/>
<attvalue for="2" value="5098381593"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773562000"/>
</attvalues>
</node>
<node id="3931279643174862" label="label716">
<attvalues>
<attvalue for="0" value="3931279643174862"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1781676687"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773568000"/>
</attvalues>
</node>
<node id="3931279647018230" label="label606">
<attvalues>
<attvalue for="0" value="3931279647018230"/>
<attvalue for="1" value="这事儿居然发酵成这样了,哈哈哈。王嘉尔66666666"/>
<attvalue for="2" value="1801915397"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773570000"/>
</attvalues>
</node>
<node id="3931279655497234" label="label14">
<attvalues>
<attvalue for="0" value="3931279655497234"/>
<attvalue for="1" value="嗯,谢谢骗狗主任,这下可以在微博骂了我现在就看酱油瓶怎么扇自己巴掌可惜了那些中国艺人,不过,是时候给台独分子展示一下你爸爸的厉害了国家面前无爱豆,另外,不是随便哪个人都可以来中国圈钱的,请带上你的智商[微笑][微笑][微笑][微笑]"/>
<attvalue for="2" value="5481369424"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773572000"/>
</attvalues>
</node>
<node id="3931279680341206" label="label63">
<attvalues>
<attvalue for="0" value="3931279680341206"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1691839765"/>
<attvalue for="3" value="2016-01-14T20:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773577000"/>
</attvalues>
</node>
<node id="3931279697135130" label="label917">
<attvalues>
<attvalue for="0" value="3931279697135130"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1708313680"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773582000"/>
</attvalues>
</node>
<node id="3931279709620403" label="label339">
<attvalues>
<attvalue for="0" value="3931279709620403"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1464921061"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773584000"/>
</attvalues>
</node>
<node id="3931279726423457" label="label156">
<attvalues>
<attvalue for="0" value="3931279726423457"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="2119589311"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773589000"/>
</attvalues>
</node>
<node id="3931279743221665" label="label441">
<attvalues>
<attvalue for="0" value="3931279743221665"/>
<attvalue for="1" value="//@菉葭苍苍:[拜拜]"/>
<attvalue for="2" value="5021992805"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773593000"/>
</attvalues>
</node>
<node id="3931279822734062" label="label99">
<attvalues>
<attvalue for="0" value="3931279822734062"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?[doge]"/>
<attvalue for="2" value="1454027367"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773612000"/>
</attvalues>
</node>
<node id="3931279864719816" label="label307">
<attvalues>
<attvalue for="0" value="3931279864719816"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="3019362057"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773622000"/>
</attvalues>
</node>
<node id="3931279877313573" label="label33">
<attvalues>
<attvalue for="0" value="3931279877313573"/>
<attvalue for="1" value="//@Casssiexx:还恍恍惚惚红红火火哈哈 //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2696272372"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773624000"/>
</attvalues>
</node>
<node id="3931279877666334" label="label760">
<attvalues>
<attvalue for="0" value="3931279877666334"/>
<attvalue for="1" value="台湾的心态。"/>
<attvalue for="2" value="1663941781"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773625000"/>
</attvalues>
</node>
<node id="3931279877739746" label="label76">
<attvalues>
<attvalue for="0" value="3931279877739746"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="2098740542"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773625000"/>
</attvalues>
</node>
<node id="3931279894829288" label="label878">
<attvalues>
<attvalue for="0" value="3931279894829288"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="3462116762"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773629000"/>
</attvalues>
</node>
<node id="3931279902856687" label="label192">
<attvalues>
<attvalue for="0" value="3931279902856687"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1770423163"/>
<attvalue for="3" value="2016-01-14T20:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773631000"/>
</attvalues>
</node>
<node id="3931279962013360" label="label71">
<attvalues>
<attvalue for="0" value="3931279962013360"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1724905741"/>
<attvalue for="3" value="2016-01-14T20:14:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773645000"/>
</attvalues>
</node>
<node id="3931280004004363" label="label282">
<attvalues>
<attvalue for="0" value="3931280004004363"/>
<attvalue for="1" value="主任威武but我要夸夸七七的逻辑和表达能力肯定不止106最后,TD 狗带[兔子][喵喵][微笑]"/>
<attvalue for="2" value="5663797527"/>
<attvalue for="3" value="2016-01-14T20:14:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773655000"/>
</attvalues>
</node>
<node id="3931280037280623" label="label276">
<attvalues>
<attvalue for="0" value="3931280037280623"/>
<attvalue for="1" value="主任有点猛又有点萌//@paingod: 噢对//@妄凉:不是jyp吗?[笑cry]"/>
<attvalue for="2" value="5093710570"/>
<attvalue for="3" value="2016-01-14T20:14:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773663000"/>
</attvalues>
</node>
<node id="3931280078588472" label="label822">
<attvalues>
<attvalue for="0" value="3931280078588472"/>
<attvalue for="1" value="大号没发?"/>
<attvalue for="2" value="1886361300"/>
<attvalue for="3" value="2016-01-14T20:14:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773673000"/>
</attvalues>
</node>
<node id="3931280128973336" label="label402">
<attvalues>
<attvalue for="0" value="3931280128973336"/>
<attvalue for="1" value="jyp狗带吧,赶紧破产!"/>
<attvalue for="2" value="2291400935"/>
<attvalue for="3" value="2016-01-14T20:14:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773685000"/>
</attvalues>
</node>
<node id="3931280158675547" label="label669">
<attvalues>
<attvalue for="0" value="3931280158675547"/>
<attvalue for="1" value="[good][good][good][good][good][good][good]"/>
<attvalue for="2" value="1844344985"/>
<attvalue for="3" value="2016-01-14T20:14:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773691000"/>
</attvalues>
</node>
<node id="3931280175156338" label="label286">
<attvalues>
<attvalue for="0" value="3931280175156338"/>
<attvalue for="1" value="然而北京台无疑芳草碧连天[doge]"/>
<attvalue for="2" value="1891049895"/>
<attvalue for="3" value="2016-01-14T20:14:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773696000"/>
</attvalues>
</node>
<node id="3931280233989409" label="label727">
<attvalues>
<attvalue for="0" value="3931280233989409"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="3085483373"/>
<attvalue for="3" value="2016-01-14T20:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773710000"/>
</attvalues>
</node>
<node id="3931280246945883" label="label456">
<attvalues>
<attvalue for="0" value="3931280246945883"/>
<attvalue for="1" value="[挖鼻][挖鼻][挖鼻]"/>
<attvalue for="2" value="1140948804"/>
<attvalue for="3" value="2016-01-14T20:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773712000"/>
</attvalues>
</node>
<node id="3931280263741657" label="label249">
<attvalues>
<attvalue for="0" value="3931280263741657"/>
<attvalue for="1" value="主任点赞!//@paingod: 噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="3362048452"/>
<attvalue for="3" value="2016-01-14T20:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773717000"/>
</attvalues>
</node>
<node id="3931280313451248" label="label333">
<attvalues>
<attvalue for="0" value="3931280313451248"/>
<attvalue for="1" value="我要被酱油瓶笑死哈哈哈哈哈哈哈 //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2204117112"/>
<attvalue for="3" value="2016-01-14T20:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773728000"/>
</attvalues>
</node>
<node id="3931280330246773" label="label717">
<attvalues>
<attvalue for="0" value="3931280330246773"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1846959982"/>
<attvalue for="3" value="2016-01-14T20:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773732000"/>
</attvalues>
</node>
<node id="3931280339314773" label="label388">
<attvalues>
<attvalue for="0" value="3931280339314773"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1631722011"/>
<attvalue for="3" value="2016-01-14T20:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773735000"/>
</attvalues>
</node>
<node id="3931280359933371" label="label628">
<attvalues>
<attvalue for="0" value="3931280359933371"/>
<attvalue for="1" value="被当炮弹一次性使用的可怜周子瑜,政治水平负分的傻逼棒子,吃人不吐骨头的绿营媒体。 //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1433680664"/>
<attvalue for="3" value="2016-01-14T20:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773740000"/>
</attvalues>
</node>
<node id="3931280477606864" label="label778">
<attvalues>
<attvalue for="0" value="3931280477606864"/>
<attvalue for="1" value="//@paingod:被当炮弹一次性使用的可怜周子瑜,政治水平负分的傻逼棒子,吃人不吐骨头的绿营媒体。 //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="3178624210"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773768000"/>
</attvalues>
</node>
<node id="3931280486338598" label="label331">
<attvalues>
<attvalue for="0" value="3931280486338598"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="3170496972"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773770000"/>
</attvalues>
</node>
<node id="3931280490085296" label="label137">
<attvalues>
<attvalue for="0" value="3931280490085296"/>
<attvalue for="1" value="说得对!!!!!赞!!!!"/>
<attvalue for="2" value="5297193830"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773771000"/>
</attvalues>
</node>
<node id="3931280498202313" label="label636">
<attvalues>
<attvalue for="0" value="3931280498202313"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1634366273"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773773000"/>
</attvalues>
</node>
<node id="3931280506999445" label="label107">
<attvalues>
<attvalue for="0" value="3931280506999445"/>
<attvalue for="1" value="主任,是时候晒一下英语成绩了。被你说得我有点同情肘子了//@paingod: 噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1789062632"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773775000"/>
</attvalues>
</node>
<node id="3931280510798350" label="label909">
<attvalues>
<attvalue for="0" value="3931280510798350"/>
<attvalue for="1" value=" //@iKC_梅子:@混宅党天天 被六笑死//@paingod:噢对//@妄凉:不是jyp吗?[笑cry][笑cry][笑cry][笑cry]"/>
<attvalue for="2" value="1780567673"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773776000"/>
</attvalues>
</node>
<node id="3931280581925488" label="label330">
<attvalues>
<attvalue for="0" value="3931280581925488"/>
<attvalue for="1" value="//@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1883739634"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773793000"/>
</attvalues>
</node>
<node id="3931280598721190" label="label235">
<attvalues>
<attvalue for="0" value="3931280598721190"/>
<attvalue for="1" value="环球时报嘛!!!"/>
<attvalue for="2" value="2271936374"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773797000"/>
</attvalues>
</node>
<node id="3931280623913437" label="label350">
<attvalues>
<attvalue for="0" value="3931280623913437"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="2862671802"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773803000"/>
</attvalues>
</node>
<node id="3931280657499870" label="label691">
<attvalues>
<attvalue for="0" value="3931280657499870"/>
<attvalue for="1" value="说都好~~撕逼王新的一年也请加油哦~//@paingod: 被当炮弹一次性使用的可怜周子瑜,政治水平负分的傻逼棒子,吃人不吐骨头的绿营媒体。 //@paingod:噢对//@妄凉:不是jyp吗?[鼓掌][鼓掌]"/>
<attvalue for="2" value="1517342044"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773810000"/>
</attvalues>
</node>
<node id="3931280666163360" label="label828">
<attvalues>
<attvalue for="0" value="3931280666163360"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1727068911"/>
<attvalue for="3" value="2016-01-14T20:16:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773813000"/>
</attvalues>
</node>
<node id="3931280695289550" label="label410">
<attvalues>
<attvalue for="0" value="3931280695289550"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="2288210213"/>
<attvalue for="3" value="2016-01-14T20:17:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773820000"/>
</attvalues>
</node>
<node id="3931280703944479" label="label395">
<attvalues>
<attvalue for="0" value="3931280703944479"/>
<attvalue for="1" value="//@paingod:被当炮弹一次性使用的可怜周子瑜,政治水平负分的傻逼棒子,吃人不吐骨头的绿营媒体。 //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="1773468481"/>
<attvalue for="3" value="2016-01-14T20:17:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773822000"/>
</attvalues>
</node>
<node id="3931280762211029" label="label553">
<attvalues>
<attvalue for="0" value="3931280762211029"/>
<attvalue for="1" value="//@paingod:被当炮弹一次性使用的可怜周子瑜,政治水平负分的傻逼棒子,吃人不吐骨头的绿营媒体。 //@paingod:噢对//@妄凉:不是jyp吗?"/>
<attvalue for="2" value="2119589311"/>
<attvalue for="3" value="2016-01-14T20:17:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773836000"/>
</attvalues>
</node>
<node id="3931280770861960" label="label525">
<attvalues>
<attvalue for="0" value="3931280770861960"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="2971793643"/>
<attvalue for="3" value="2016-01-14T20:17:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773838000"/>
</attvalues>
</node>
<node id="3931280792577528" label="label132">
<attvalues>
<attvalue for="0" value="3931280792577528"/>
<attvalue for="1" value="既然jyp不能在台湾和中国间做选择,那就甭选择了,滚出中国去。不尊重中国的公司就别在中国赚钱了。#抵制JYP# [微笑]"/>
<attvalue for="2" value="5094364974"/>
<attvalue for="3" value="2016-01-14T20:17:00.000+0800.000+0800"/>
<attvalue for="4" value="1452773842000"/>
</attvalues>
</node>
<node id="3931280817432129" label="label218">
<attvalues>
<attvalue for="0" value="3931280817432129"/>
<attvalue for="1" value="棒子恶心得不得了[赞]"/>