Hi Marc,
Sorry for delay reply.
Gremlin steps for my graph is below.
(Sorry, I don't know how to attach file.)
1. schema groovy script
----------------------------------------------------------------------
g.tx().rollback()
m = graph.openManagement()
item = m.makeVertexLabel('item').make()
serial = m.makePropertyKey('serial').dataType(String.class).cardinality(org.janusgraph.core.Cardinality.SINGLE).make()
m.addProperties(item, serial)
assembled = m.makeEdgeLabel('assembled').make()
workDate = m.makePropertyKey('work_date').dataType(java.util.Date.class).cardinality(org.janusgraph.core.Cardinality.SINGLE).make()
m.addProperties(assembled, workDate)
m.buildIndex('bySerial', Vertex.class).addKey(serial).buildCompositeIndex()
m.buildIndex('byWorkDate', Edge.class).addKey(workDate).buildCompositeIndex()
m.commit()
g.tx().commit()
m = graph.openManagement()
m.printSchema()
m.rollback()
======================================================================
2. data import groovy script
----------------------------------------------------------------------
files = ["/tmp/graph/data.csv"]
files.each { file ->
g.tx().open()
println "Start."
lineCount = 0
processedCount = 0
new File(file).eachLine { line, count ->
lineCount = count
columns = line.split(' ', -1)
(parent_serial, work_date, child_serial) = columns
if(child_serial == null || child_serial.length() == 0) {
return
}
processedCount++
split = work_date.split(" ")
date = split[0].split("/")
time = split[1].split(":")
cal = java.util.Calendar.getInstance()
cal.set(java.util.Calendar.YEAR, Integer.parseInt(date[0]))
cal.set(java.util.Calendar.MONTH, Integer.parseInt(date[1])-1)
cal.set(java.util.Calendar.DAY_OF_MONTH, Integer.parseInt(date[2]))
cal.set(java.util.Calendar.HOUR, Integer.parseInt(time[0]))
cal.set(java.util.Calendar.MINUTE, Integer.parseInt(time[1]))
cal.set(java.util.Calendar.SECOND, Integer.parseInt(time[2]))
cal.set(java.util.Calendar.MILLISECOND, 0)
dt_work = cal.getTime()
g.V().has('item','serial',parent_serial).fold()
.coalesce(unfold(),addV('item').property('serial',parent_serial)).aggregate('a')
.V().has('item','serial',child_serial).fold()
.coalesce(unfold(),addV('item').property('serial',child_serial)).aggregate('b')
.select('a').unfold().inE('assembled').has('work_date', dt_work)
.where(outV().where(within('b'))).fold()
.coalesce(unfold(),
addE('assembled').property('work_date',dt_work).from(select('b').unfold()).to(select('a').unfold())
)
.iterate()
}
g.tx().commit()
println "End. ${file}:${processedCount}/${lineCount}"
}
======================================================================
3. data (data.csv)
----------------------------------------------------------------------
1654145144,2018/09/18 17:43:44,1269530640
1654145144,2018/09/19 09:17:56,1649676440
1654145144,2018/09/19 09:18:54,1649811480
1654145144,2018/09/18 17:45:43,1653129408
1654145144,2018/09/18 17:58:50,1657106632
1648418968,2018/09/19 08:35:42,1271992512
1648418968,2018/09/19 08:41:49,1649672344
1648418968,2018/09/19 09:21:55,1649676440
1648418968,2018/09/19 09:22:02,1649811480
1648418968,2018/09/19 08:36:03,1649864744
1652445288,2018/09/19 08:38:02,1266868248
1652445288,2018/09/19 09:25:15,1649676440
1652445288,2018/09/19 08:38:21,1649725456
1652445288,2018/09/19 09:25:23,1654956264
1652445288,2018/09/19 08:43:38,1655402616
1654952168,2018/09/19 08:40:28,1267400720
1654952168,2018/09/19 09:33:16,1649676440
1654952168,2018/09/19 08:41:01,1652449384
1654952168,2018/09/19 09:33:22,1654329536
1654952168,2018/09/19 08:45:40,1655406712
1653379120,2018/09/19 08:43:01,1275183304
1653379120,2018/09/19 09:27:42,1649676440
1653379120,2018/09/19 08:48:59,1651081256
1653379120,2018/09/19 08:43:22,1652453480
1653379120,2018/09/19 09:27:49,1654956264
1654325440,2018/09/19 08:45:19,1272856696
1654325440,2018/09/19 09:30:33,1649676440
1654325440,2018/09/19 08:45:39,1652457576
1654325440,2018/09/19 09:30:40,1654329536
1654325440,2018/09/19 08:51:21,1655410808
1653383216,2018/09/19 09:23:33,1273622728
1653383216,2018/09/19 09:23:57,1654960360
1653383216,2018/09/19 09:28:45,1658302664
1658298568,2018/09/19 09:25:39,1269538832
1658298568,2018/09/19 10:57:14,1649815576
1658298568,2018/09/19 09:25:59,1653387312
1658298568,2018/09/19 09:30:46,1653391408
1658298568,2018/09/19 10:57:20,1654333632
1649680536,2018/09/19 08:49:19,1272803368
1649680536,2018/09/19 08:54:55,1651085352
1649680536,2018/09/19 08:49:38,1652461672
1649680536,2018/09/19 10:14:39,1653616744
1649680536,2018/09/19 10:14:34,1659625672
1649819672,2018/09/19 08:51:24,1273639144
1649819672,2018/09/19 08:51:45,1654337728
1649819672,2018/09/19 08:56:51,1654341824
1654964456,2018/09/19 08:53:41,1282871416
1654964456,2018/09/19 10:08:13,1651077144
1654964456,2018/09/19 08:54:01,1655414904
1654964456,2018/09/19 08:59:02,1656107240
1654964456,2018/09/19 10:08:07,1659625672
1649729552,2018/09/19 08:55:54,1273622760
1649729552,2018/09/19 10:11:16,1651077144
1649729552,2018/09/19 09:01:31,1656758392
1649729552,2018/09/19 08:56:14,1658306760
1649729552,2018/09/19 10:11:10,1659625672
1656103144,2018/09/19 08:58:55,1273635048
1656103144,2018/09/19 09:03:49,1650827416
1656103144,2018/09/19 09:56:30,1650831512
1656103144,2018/09/19 08:59:13,1654665264
1656103144,2018/09/19 09:56:22,1659625672
1655460032,2018/09/19 09:01:17,1275568328
1655460032,2018/09/19 09:59:08,1650831512
1655460032,2018/09/19 09:06:26,1650954256
1655460032,2018/09/19 09:01:36,1656762488
1655460032,2018/09/19 09:59:01,1659625672
1656111336,2018/09/19 09:03:32,1271795760
1656111336,2018/09/19 10:04:56,1651073048
1656111336,2018/09/19 09:03:52,1655464128
1656111336,2018/09/19 09:08:45,1659621576
1654669360,2018/09/19 09:05:49,1273413656
1654669360,2018/09/19 09:11:20,1651068952
1654669360,2018/09/19 09:06:10,1659617480
1269530640,2018/08/06 21:36:29,1269534736
1657106632,2018/09/16 11:55:52,479248
1657106632,2018/09/16 11:54:52,9506856
1657106632,2018/09/16 11:53:29,21586072
1657106632,2018/09/16 11:54:52,537215176
1657106632,2018/09/16 11:53:29,724271224
1657106632,2018/09/16 11:55:52,850853936
1657106632,2018/09/16 11:55:52,851787896
1657106632,2018/09/16 11:54:52,852303912
1657106632,2018/09/16 11:54:52,1385205808
1657106632,2018/09/16 11:55:52,1386102824
1657106632,2018/09/16 11:52:39,1387339880
1657106632,2018/09/16 11:54:52,1388658888
1657106632,2018/09/16 11:54:52,1392607432
1657106632,2018/09/16 11:52:39,1395613720
1657106632,2018/09/16 11:52:39,1397547112
1657106632,2018/09/16 11:52:39,1397551208
1657106632,2018/09/16 11:55:52,1397596264
1657106632,2018/09/16 11:52:39,1397706792
1657106632,2018/09/16 11:53:29,1397751912
1657106632,2018/09/16 11:53:29,1397899304
1657106632,2018/09/16 11:52:39,1398140976
1657106632,2018/09/16 11:54:52,1398169648
1657106632,2018/09/16 11:52:39,1399472248
1657106632,2018/09/16 11:52:39,1400099008
1657106632,2018/09/16 11:51:57,1400123584
1657106632,2018/09/16 11:55:52,1400180936
1657106632,2018/09/16 11:52:39,1400320232
1657106632,2018/09/16 11:53:29,1403818184
1657106632,2018/09/16 11:52:39,2080620736
1657106632,2018/09/16 11:54:52,2080633024
1657106632,2018/09/16 11:53:29,2080649408
1657106632,2018/09/16 11:52:39,2080657600
1657106632,2018/09/16 11:54:52,2080833584
1657106632,2018/09/16 11:53:29,2081034344
1657106632,2018/09/16 11:54:52,2081341632
1657106632,2018/09/16 11:54:52,2090369224
1271992512,2018/08/06 21:36:05,1271996608
1649672344,2018/09/16 12:05:12,479248
1649672344,2018/09/16 12:01:33,9506856
1649672344,2018/09/16 12:00:28,21586072
1649672344,2018/09/16 12:01:33,537215176
1649672344,2018/09/16 12:00:28,724271224
1649672344,2018/09/16 12:05:12,783491088
1649672344,2018/09/16 12:05:12,850853936
1649672344,2018/09/16 12:05:12,851787896
1649672344,2018/09/16 12:01:33,852303912
1649672344,2018/09/16 12:01:33,1385205808
1649672344,2018/09/16 12:05:12,1386102824
1649672344,2018/09/16 11:59:39,1387339880
1649672344,2018/09/16 12:01:33,1388658888
1649672344,2018/09/16 12:01:33,1392607432
1649672344,2018/09/16 11:59:39,1395613720
1649672344,2018/09/16 11:59:39,1397547112
1649672344,2018/09/16 11:59:39,1397551208
1649672344,2018/09/16 12:05:12,1397596264
1649672344,2018/09/16 11:59:39,1397706792
1649672344,2018/09/16 12:00:28,1397751912
1649672344,2018/09/16 12:00:28,1397899304
1649672344,2018/09/16 11:59:39,1398140976
1649672344,2018/09/16 12:01:33,1398169648
1649672344,2018/09/16 11:59:39,1399472248
1649672344,2018/09/16 11:59:39,1400099008
1649672344,2018/09/16 11:59:14,1400123584
1649672344,2018/09/16 12:05:12,1400180936
1649672344,2018/09/16 11:59:39,1400320232
1649672344,2018/09/16 12:00:28,1403818184
1649672344,2018/09/16 11:59:39,2080620736
1649672344,2018/09/16 12:01:33,2080633024
1649672344,2018/09/16 12:00:28,2080649408
1649672344,2018/09/16 11:59:39,2080657600
1649672344,2018/09/16 12:01:33,2080833584
1649672344,2018/09/16 12:00:28,2081034344
1649672344,2018/09/16 12:01:33,2081341632
1649672344,2018/09/16 12:01:33,2090369224
1266868248,2018/08/06 21:34:57,1270014144
1655402616,2018/09/16 11:23:38,479248
1655402616,2018/09/16 11:20:05,9506856
1655402616,2018/09/16 11:15:39,21586072
1655402616,2018/09/16 11:20:05,537215176
1655402616,2018/09/16 11:15:39,724271224
1655402616,2018/09/16 11:23:38,850853936
1655402616,2018/09/16 11:23:38,851787896
1655402616,2018/09/16 11:20:05,852303912
1655402616,2018/09/16 11:20:05,1385205808
1655402616,2018/09/16 11:23:38,1386102824
1655402616,2018/09/16 11:14:13,1387339880
1655402616,2018/09/16 11:20:05,1388658888
1655402616,2018/09/16 11:20:05,1392607432
1655402616,2018/09/16 11:14:13,1395613720
1655402616,2018/09/16 11:14:13,1397547112
1655402616,2018/09/16 11:14:13,1397551208
1655402616,2018/09/16 11:23:38,1397596264
1655402616,2018/09/16 11:14:13,1397706792
1655402616,2018/09/16 11:15:39,1397751912
1655402616,2018/09/16 11:15:39,1397899304
1655402616,2018/09/16 11:14:13,1398140976
1655402616,2018/09/16 11:20:05,1398169648
1655402616,2018/09/16 11:14:13,1399472248
1655402616,2018/09/16 11:14:13,1400099008
1655402616,2018/09/16 11:12:48,1400123584
1655402616,2018/09/16 11:23:38,1400180936
1655402616,2018/09/16 11:14:13,1400320232
1655402616,2018/09/16 11:15:39,1403818184
1655402616,2018/09/16 11:14:13,2080620736
1655402616,2018/09/16 11:20:05,2080633024
1655402616,2018/09/16 11:15:39,2080649408
1655402616,2018/09/16 11:14:13,2080657600
1655402616,2018/09/16 11:20:05,2080833584
1655402616,2018/09/16 11:15:39,2081034344
1655402616,2018/09/16 11:20:05,2081341632
1655402616,2018/09/16 11:20:05,2090369224
1267400720,2018/08/06 21:35:33,1270771832
1655406712,2018/09/16 12:02:46,479248
1655406712,2018/09/16 11:59:34,9506856
1655406712,2018/09/16 11:58:29,21586072
1655406712,2018/09/16 11:59:34,537215176
1655406712,2018/09/16 11:58:29,724271224
1655406712,2018/09/16 12:02:46,783491088
1655406712,2018/09/16 12:02:46,850853936
1655406712,2018/09/16 12:02:46,851787896
1655406712,2018/09/16 11:59:34,852303912
1655406712,2018/09/16 11:59:34,1385205808
1655406712,2018/09/16 12:02:46,1386102824
1655406712,2018/09/16 11:57:39,1387339880
1655406712,2018/09/16 11:59:34,1388658888
1655406712,2018/09/16 11:59:34,1392607432
1655406712,2018/09/16 11:57:39,1395613720
1655406712,2018/09/16 11:57:39,1397547112
1655406712,2018/09/16 11:57:39,1397551208
1655406712,2018/09/16 12:02:46,1397596264
1655406712,2018/09/16 11:57:39,1397706792
1655406712,2018/09/16 11:58:29,1397751912
1655406712,2018/09/16 11:58:29,1397899304
1655406712,2018/09/16 11:57:39,1398140976
1655406712,2018/09/16 11:59:34,1398169648
1655406712,2018/09/16 11:57:39,1399472248
1655406712,2018/09/16 11:57:39,1400099008
1655406712,2018/09/16 11:57:03,1400123584
1655406712,2018/09/16 12:02:46,1400180936
1655406712,2018/09/16 11:57:39,1400320232
1655406712,2018/09/16 11:58:29,1403818184
1655406712,2018/09/16 11:57:39,2080620736
1655406712,2018/09/16 11:59:34,2080633024
1655406712,2018/09/16 11:58:29,2080649408
1655406712,2018/09/16 11:57:39,2080657600
1655406712,2018/09/16 11:59:34,2080833584
1655406712,2018/09/16 11:58:29,2081034344
1655406712,2018/09/16 11:59:34,2081341632
1655406712,2018/09/16 11:59:34,2090369224
1275183304,2018/08/06 21:38:19,1272852600
1651081256,2018/09/16 12:08:26,479248
1651081256,2018/09/16 12:05:42,9506856
1651081256,2018/09/16 12:04:04,21586072
1651081256,2018/09/16 12:05:42,537215176
1651081256,2018/09/16 12:04:04,724271224
1651081256,2018/09/16 12:08:26,783491088
1651081256,2018/09/16 12:08:26,850853936
1651081256,2018/09/16 12:08:26,851787896
1651081256,2018/09/16 12:05:42,852303912
1651081256,2018/09/16 12:05:42,1385205808
1651081256,2018/09/16 12:08:26,1386102824
1651081256,2018/09/16 12:01:37,1387339880
1651081256,2018/09/16 12:05:42,1388658888
1651081256,2018/09/16 12:05:42,1392607432
1651081256,2018/09/16 12:01:37,1395613720
1651081256,2018/09/16 12:01:37,1397547112
1651081256,2018/09/16 12:01:37,1397551208
1651081256,2018/09/16 12:08:26,1397596264
1651081256,2018/09/16 12:01:37,1397706792
1651081256,2018/09/16 12:04:04,1397751912
1651081256,2018/09/16 12:04:04,1397899304
1651081256,2018/09/16 12:01:37,1398140976
1651081256,2018/09/16 12:05:42,1398169648
1651081256,2018/09/16 12:01:37,1399472248
1651081256,2018/09/16 12:01:37,1400099008
1651081256,2018/09/16 12:01:15,1400123584
1651081256,2018/09/16 12:08:26,1400180936
1651081256,2018/09/16 12:01:37,1400320232
1651081256,2018/09/16 12:04:04,1403818184
1651081256,2018/09/16 12:01:37,2080620736
1651081256,2018/09/16 12:05:42,2080633024
1651081256,2018/09/16 12:04:04,2080649408
1651081256,2018/09/16 12:01:37,2080657600
1651081256,2018/09/16 12:05:42,2080833584
1651081256,2018/09/16 12:04:04,2081034344
1651081256,2018/09/16 12:05:42,2081341632
1651081256,2018/09/16 12:05:42,2090369224
1272856696,2018/08/06 21:39:09,1268412568
1655410808,2018/09/16 12:06:26,479248
1655410808,2018/09/16 12:04:04,9506856
1655410808,2018/09/16 12:01:20,21586072
1655410808,2018/09/16 12:04:04,537215176
1655410808,2018/09/16 12:01:20,724271224
1655410808,2018/09/16 12:06:26,783491088
1655410808,2018/09/16 12:06:26,850853936
1655410808,2018/09/16 12:06:26,851787896
1655410808,2018/09/16 12:04:04,852303912
1655410808,2018/09/16 12:04:04,1385205808
1655410808,2018/09/16 12:06:26,1386102824
1655410808,2018/09/16 12:00:24,1387339880
1655410808,2018/09/16 12:04:04,1388658888
1655410808,2018/09/16 12:04:04,1392607432
1655410808,2018/09/16 12:00:24,1395613720
1655410808,2018/09/16 12:00:24,1397547112
1655410808,2018/09/16 12:00:24,1397551208
1655410808,2018/09/16 12:06:26,1397596264
1655410808,2018/09/16 12:00:24,1397706792
1655410808,2018/09/16 12:01:20,1397751912
1655410808,2018/09/16 12:01:20,1397899304
1655410808,2018/09/16 12:00:24,1398140976
1655410808,2018/09/16 12:04:04,1398169648
1655410808,2018/09/16 12:00:24,1399472248
1655410808,2018/09/16 12:00:24,1400099008
1655410808,2018/09/16 12:00:02,1400123584
1655410808,2018/09/16 12:06:26,1400180936
1655410808,2018/09/16 12:00:24,1400320232
1655410808,2018/09/16 12:01:20,1403818184
1655410808,2018/09/16 12:00:24,2080620736
1655410808,2018/09/16 12:04:04,2080633024
1655410808,2018/09/16 12:01:20,2080649408
1655410808,2018/09/16 12:00:24,2080657600
1655410808,2018/09/16 12:04:04,2080833584
1655410808,2018/09/16 12:01:20,2081034344
1655410808,2018/09/16 12:04:04,2081341632
1655410808,2018/09/16 12:04:04,2090369224
1273622728,2018/08/09 10:31:22,1269694512
1658302664,2018/09/16 12:09:40,479248
1658302664,2018/09/16 12:06:34,9506856
1658302664,2018/09/16 12:05:17,21586072
1658302664,2018/09/16 12:06:34,537215176
1658302664,2018/09/16 12:05:17,724271224
1658302664,2018/09/16 12:09:40,783491088
1658302664,2018/09/16 12:09:40,850853936
1658302664,2018/09/16 12:09:40,851787896
1658302664,2018/09/16 12:06:34,852303912
1658302664,2018/09/16 12:06:34,1385205808
1658302664,2018/09/16 12:09:40,1386102824
1658302664,2018/09/16 12:02:25,1387339880
1658302664,2018/09/16 12:06:34,1388658888
1658302664,2018/09/16 12:06:34,1392607432
1658302664,2018/09/16 12:02:25,1395613720
1658302664,2018/09/16 12:02:25,1397547112
1658302664,2018/09/16 12:02:25,1397551208
1658302664,2018/09/16 12:09:40,1397596264
1658302664,2018/09/16 12:02:25,1397706792
1658302664,2018/09/16 12:05:17,1397751912
1658302664,2018/09/16 12:05:17,1397899304
1658302664,2018/09/16 12:02:25,1398140976
1658302664,2018/09/16 12:06:34,1398169648
1658302664,2018/09/16 12:02:25,1399472248
1658302664,2018/09/16 12:02:25,1400099008
1658302664,2018/09/16 12:02:04,1400123584
1658302664,2018/09/16 12:09:40,1400180936
1658302664,2018/09/16 12:02:25,1400320232
1658302664,2018/09/16 12:05:17,1403818184
1658302664,2018/09/16 12:02:25,2080620736
1658302664,2018/09/16 12:06:34,2080633024
1658302664,2018/09/16 12:05:17,2080649408
1658302664,2018/09/16 12:02:25,2080657600
1658302664,2018/09/16 12:06:34,2080833584
1658302664,2018/09/16 12:05:17,2081034344
1658302664,2018/09/16 12:06:34,2081341632
1658302664,2018/09/16 12:06:34,2090369224
1269538832,2018/08/06 21:37:37,1272332328
1653391408,2018/09/16 12:10:16,479248
1653391408,2018/09/16 12:07:00,9506856
1653391408,2018/09/16 12:05:43,21586072
1653391408,2018/09/16 12:07:00,537215176
1653391408,2018/09/16 12:05:43,724271224
1653391408,2018/09/16 12:10:16,783491088
1653391408,2018/09/16 12:10:16,850853936
1653391408,2018/09/16 12:10:16,851787896
1653391408,2018/09/16 12:07:00,852303912
1653391408,2018/09/16 12:07:00,1385205808
1653391408,2018/09/16 12:10:16,1386102824
1653391408,2018/09/16 12:04:26,1387339880
1653391408,2018/09/16 12:07:00,1388658888
1653391408,2018/09/16 12:07:00,1392607432
1653391408,2018/09/16 12:04:26,1395613720
1653391408,2018/09/16 12:04:26,1397547112
1653391408,2018/09/16 12:04:26,1397551208
1653391408,2018/09/16 12:10:16,1397596264
1653391408,2018/09/16 12:04:26,1397706792
1653391408,2018/09/16 12:05:43,1397751912
1653391408,2018/09/16 12:05:43,1397899304
1653391408,2018/09/16 12:04:26,1398140976
1653391408,2018/09/16 12:07:00,1398169648
1653391408,2018/09/16 12:04:26,1399472248
1653391408,2018/09/16 12:04:26,1400099008
1653391408,2018/09/16 12:02:28,1400123584
1653391408,2018/09/16 12:10:16,1400180936
1653391408,2018/09/16 12:04:26,1400320232
1653391408,2018/09/16 12:05:43,1403818184
1653391408,2018/09/16 12:04:26,2080620736
1653391408,2018/09/16 12:07:00,2080633024
1653391408,2018/09/16 12:05:43,2080649408
1653391408,2018/09/16 12:04:26,2080657600
1653391408,2018/09/16 12:07:00,2080833584
1653391408,2018/09/16 12:05:43,2081034344
1653391408,2018/09/16 12:07:00,2081341632
1653391408,2018/09/16 12:07:00,2090369224
1272803368,2018/08/09 10:54:05,1272807464
1651085352,2018/09/16 12:07:50,479248
1651085352,2018/09/16 12:04:55,9506856
1651085352,2018/09/16 12:02:25,21586072
1651085352,2018/09/16 12:04:55,537215176
1651085352,2018/09/16 12:02:25,724271224
1651085352,2018/09/16 12:07:50,783491088
1651085352,2018/09/16 12:07:50,850853936
1651085352,2018/09/16 12:07:50,851787896
1651085352,2018/09/16 12:04:55,852303912
1651085352,2018/09/16 12:04:55,1385205808
1651085352,2018/09/16 12:07:50,1386102824
1651085352,2018/09/16 12:01:13,1387339880
1651085352,2018/09/16 12:04:55,1388658888
1651085352,2018/09/16 12:04:55,1392607432
1651085352,2018/09/16 12:01:13,1395613720
1651085352,2018/09/16 12:01:13,1397547112
1651085352,2018/09/16 12:01:13,1397551208
1651085352,2018/09/16 12:07:50,1397596264
1651085352,2018/09/16 12:01:13,1397706792
1651085352,2018/09/16 12:02:25,1397751912
1651085352,2018/09/16 12:02:25,1397899304
1651085352,2018/09/16 12:01:13,1398140976
1651085352,2018/09/16 12:04:55,1398169648
1651085352,2018/09/16 12:01:13,1399472248
1651085352,2018/09/16 12:01:13,1400099008
1651085352,2018/09/16 12:00:51,1400123584
1651085352,2018/09/16 12:07:50,1400180936
1651085352,2018/09/16 12:01:13,1400320232
1651085352,2018/09/16 12:02:25,1403818184
1651085352,2018/09/16 12:01:13,2080620736
1651085352,2018/09/16 12:04:55,2080633024
1651085352,2018/09/16 12:02:25,2080649408
1651085352,2018/09/16 12:01:13,2080657600
1651085352,2018/09/16 12:04:55,2080833584
1651085352,2018/09/16 12:02:25,2081034344
1651085352,2018/09/16 12:04:55,2081341632
1651085352,2018/09/16 12:04:55,2090369224
1273639144,2018/08/09 10:54:37,1273249912
1654341824,2018/09/16 11:59:32,479248
1654341824,2018/09/16 11:57:29,9506856
1654341824,2018/09/16 11:56:11,21586072
1654341824,2018/09/16 11:57:29,537215176
1654341824,2018/09/16 11:56:11,724271224
1654341824,2018/09/16 11:59:32,850853936
1654341824,2018/09/16 11:59:32,851787896
1654341824,2018/09/16 11:57:29,852303912
1654341824,2018/09/16 11:57:29,1385205808
1654341824,2018/09/16 11:59:32,1386102824
1654341824,2018/09/16 11:55:04,1387339880
1654341824,2018/09/16 11:57:29,1388658888
1654341824,2018/09/16 11:57:29,1392607432
1654341824,2018/09/16 11:55:04,1395613720
1654341824,2018/09/16 11:55:04,1397547112
1654341824,2018/09/16 11:55:04,1397551208
1654341824,2018/09/16 11:59:32,1397596264
1654341824,2018/09/16 11:55:04,1397706792
1654341824,2018/09/16 11:56:11,1397751912
1654341824,2018/09/16 11:56:11,1397899304
1654341824,2018/09/16 11:55:04,1398140976
1654341824,2018/09/16 11:57:29,1398169648
1654341824,2018/09/16 11:55:04,1399472248
1654341824,2018/09/16 11:55:04,1400099008
1654341824,2018/09/16 11:54:43,1400123584
1654341824,2018/09/16 11:59:32,1400180936
1654341824,2018/09/16 11:55:04,1400320232
1654341824,2018/09/16 11:56:11,1403818184
1654341824,2018/09/16 11:55:04,2080620736
1654341824,2018/09/16 11:57:29,2080633024
1654341824,2018/09/16 11:56:11,2080649408
1654341824,2018/09/16 11:55:04,2080657600
1654341824,2018/09/16 11:57:29,2080833584
1654341824,2018/09/16 11:56:11,2081034344
1654341824,2018/09/16 11:57:29,2081341632
1654341824,2018/09/16 11:57:29,2090369224
1282871416,2018/08/06 10:34:41,1281781808
1656107240,2018/09/16 12:02:10,479248
1656107240,2018/09/16 11:59:08,9506856
1656107240,2018/09/16 11:58:03,21586072
1656107240,2018/09/16 11:59:08,537215176
1656107240,2018/09/16 11:58:03,724271224
1656107240,2018/09/16 12:02:10,783491088
1656107240,2018/09/16 12:02:10,850853936
1656107240,2018/09/16 12:02:10,851787896
1656107240,2018/09/16 11:59:08,852303912
1656107240,2018/09/16 11:59:08,1385205808
1656107240,2018/09/16 12:02:10,1386102824
1656107240,2018/09/16 11:57:18,1387339880
1656107240,2018/09/16 11:59:08,1388658888
1656107240,2018/09/16 11:59:08,1392607432
1656107240,2018/09/16 11:57:18,1395613720
1656107240,2018/09/16 11:57:18,1397547112
1656107240,2018/09/16 11:57:18,1397551208
1656107240,2018/09/16 12:02:10,1397596264
1656107240,2018/09/16 11:57:18,1397706792
1656107240,2018/09/16 11:58:03,1397751912
1656107240,2018/09/16 11:58:03,1397899304
1656107240,2018/09/16 11:57:18,1398140976
1656107240,2018/09/16 11:59:08,1398169648
1656107240,2018/09/16 11:57:18,1399472248
1656107240,2018/09/16 11:57:18,1400099008
1656107240,2018/09/16 11:56:39,1400123584
1656107240,2018/09/16 12:02:10,1400180936
1656107240,2018/09/16 11:57:18,1400320232
1656107240,2018/09/16 11:58:03,1403818184
1656107240,2018/09/16 11:57:18,2080620736
1656107240,2018/09/16 11:59:08,2080633024
1656107240,2018/09/16 11:58:03,2080649408
1656107240,2018/09/16 11:57:18,2080657600
1656107240,2018/09/16 11:59:08,2080833584
1656107240,2018/09/16 11:58:03,2081034344
1656107240,2018/09/16 11:59:08,2081341632
1656107240,2018/09/16 11:59:08,2090369224
1273622760,2018/08/09 10:51:53,1273626856
1656758392,2018/09/16 11:58:18,479248
1656758392,2018/09/16 11:56:37,9506856
1656758392,2018/09/16 11:55:19,21586072
1656758392,2018/09/16 11:56:37,537215176
1656758392,2018/09/16 11:55:19,724271224
1656758392,2018/09/16 11:58:18,850853936
1656758392,2018/09/16 11:58:18,851787896
1656758392,2018/09/16 11:56:37,852303912
1656758392,2018/09/16 11:56:37,1385205808
1656758392,2018/09/16 11:58:18,1386102824
1656758392,2018/09/16 11:54:01,1387339880
1656758392,2018/09/16 11:56:37,1388658888
1656758392,2018/09/16 11:56:37,1392607432
1656758392,2018/09/16 11:54:01,1395613720
1656758392,2018/09/16 11:54:01,1397547112
1656758392,2018/09/16 11:54:01,1397551208
1656758392,2018/09/16 11:58:18,1397596264
1656758392,2018/09/16 11:54:01,1397706792
1656758392,2018/09/16 11:55:19,1397751912
1656758392,2018/09/16 11:55:19,1397899304
1656758392,2018/09/16 11:54:01,1398140976
1656758392,2018/09/16 11:56:37,1398169648
1656758392,2018/09/16 11:54:01,1399472248
1656758392,2018/09/16 11:54:01,1400099008
1656758392,2018/09/16 11:53:34,1400123584
1656758392,2018/09/16 11:58:18,1400180936
1656758392,2018/09/16 11:54:01,1400320232
1656758392,2018/09/16 11:55:19,1403818184
1656758392,2018/09/16 11:54:01,2080620736
1656758392,2018/09/16 11:56:37,2080633024
1656758392,2018/09/16 11:55:19,2080649408
1656758392,2018/09/16 11:54:01,2080657600
1656758392,2018/09/16 11:56:37,2080833584
1656758392,2018/09/16 11:55:19,2081034344
1656758392,2018/09/16 11:56:37,2081341632
1656758392,2018/09/16 11:56:37,2090369224
1273635048,2018/08/09 10:53:30,1275576520
1650827416,2018/09/16 11:57:41,479248
1650827416,2018/09/16 11:56:10,9506856
1650827416,2018/09/16 11:54:53,21586072
1650827416,2018/09/16 11:56:10,537215176
1650827416,2018/09/16 11:54:53,724271224
1650827416,2018/09/16 11:57:41,850853936
1650827416,2018/09/16 11:57:41,851787896
1650827416,2018/09/16 11:56:10,852303912
1650827416,2018/09/16 11:56:10,1385205808
1650827416,2018/09/16 11:57:41,1386102824
1650827416,2018/09/16 11:53:41,1387339880
1650827416,2018/09/16 11:56:10,1388658888
1650827416,2018/09/16 11:56:10,1392607432
1650827416,2018/09/16 11:53:41,1395613720
1650827416,2018/09/16 11:53:41,1397547112
1650827416,2018/09/16 11:53:41,1397551208
1650827416,2018/09/16 11:57:41,1397596264
1650827416,2018/09/16 11:53:41,1397706792
1650827416,2018/09/16 11:54:53,1397751912
1650827416,2018/09/16 11:54:53,1397899304
1650827416,2018/09/16 11:53:41,1398140976
1650827416,2018/09/16 11:56:10,1398169648
1650827416,2018/09/16 11:53:41,1399472248
1650827416,2018/09/16 11:53:41,1400099008
1650827416,2018/09/16 11:53:10,1400123584
1650827416,2018/09/16 11:57:41,1400180936
1650827416,2018/09/16 11:53:41,1400320232
1650827416,2018/09/16 11:54:53,1403818184
1650827416,2018/09/16 11:53:41,2080620736
1650827416,2018/09/16 11:56:10,2080633024
1650827416,2018/09/16 11:54:53,2080649408
1650827416,2018/09/16 11:53:41,2080657600
1650827416,2018/09/16 11:56:10,2080833584
1650827416,2018/09/16 11:54:53,2081034344
1650827416,2018/09/16 11:56:10,2081341632
1650827416,2018/09/16 11:56:10,2090369224
1275568328,2018/08/09 10:52:25,1272795176
1650954256,2018/09/16 12:03:59,479248
1650954256,2018/09/16 12:00:41,9506856
1650954256,2018/09/16 11:59:36,21586072
1650954256,2018/09/16 12:00:41,537215176
1650954256,2018/09/16 11:59:36,724271224
1650954256,2018/09/16 12:03:59,783491088
1650954256,2018/09/16 12:03:59,850853936
1650954256,2018/09/16 12:03:59,851787896
1650954256,2018/09/16 12:00:41,852303912
1650954256,2018/09/16 12:00:41,1385205808
1650954256,2018/09/16 12:03:59,1386102824
1650954256,2018/09/16 11:58:21,1387339880
1650954256,2018/09/16 12:00:41,1388658888
1650954256,2018/09/16 12:00:41,1392607432
1650954256,2018/09/16 11:58:21,1395613720
1650954256,2018/09/16 11:58:21,1397547112
1650954256,2018/09/16 11:58:21,1397551208
1650954256,2018/09/16 12:03:59,1397596264
1650954256,2018/09/16 11:58:21,1397706792
1650954256,2018/09/16 11:59:36,1397751912
1650954256,2018/09/16 11:59:36,1397899304
1650954256,2018/09/16 11:58:21,1398140976
1650954256,2018/09/16 12:00:41,1398169648
1650954256,2018/09/16 11:58:21,1399472248
1650954256,2018/09/16 11:58:21,1400099008
1650954256,2018/09/16 11:57:59,1400123584
1650954256,2018/09/16 12:03:59,1400180936
1650954256,2018/09/16 11:58:21,1400320232
1650954256,2018/09/16 11:59:36,1403818184
1650954256,2018/09/16 11:58:21,2080620736
1650954256,2018/09/16 12:00:41,2080633024
1650954256,2018/09/16 11:59:36,2080649408
1650954256,2018/09/16 11:58:21,2080657600
1650954256,2018/09/16 12:00:41,2080833584
1650954256,2018/09/16 11:59:36,2081034344
1650954256,2018/09/16 12:00:41,2081341632
1650954256,2018/09/16 12:00:41,2090369224
1271795760,2018/08/09 10:50:31,1271259240
1659621576,2018/09/16 12:00:18,479248
1659621576,2018/09/16 11:57:55,9506856
1659621576,2018/09/16 11:56:38,21586072
1659621576,2018/09/16 11:57:55,537215176
1659621576,2018/09/16 11:56:38,724271224
1659621576,2018/09/16 12:00:18,850853936
1659621576,2018/09/16 12:00:18,851787896
1659621576,2018/09/16 11:57:55,852303912
1659621576,2018/09/16 11:57:55,1385205808
1659621576,2018/09/16 12:00:18,1386102824
1659621576,2018/09/16 11:55:51,1387339880
1659621576,2018/09/16 11:57:55,1388658888
1659621576,2018/09/16 11:57:55,1392607432
1659621576,2018/09/16 11:55:51,1395613720
1659621576,2018/09/16 11:55:51,1397547112
1659621576,2018/09/16 11:55:51,1397551208
1659621576,2018/09/16 12:00:18,1397596264
1659621576,2018/09/16 11:55:51,1397706792
1659621576,2018/09/16 11:56:38,1397751912
1659621576,2018/09/16 11:56:38,1397899304
1659621576,2018/09/16 11:55:51,1398140976
1659621576,2018/09/16 11:57:55,1398169648
1659621576,2018/09/16 11:55:51,1399472248
1659621576,2018/09/16 11:55:51,1400099008
1659621576,2018/09/16 11:55:28,1400123584
1659621576,2018/09/16 12:00:18,1400180936
1659621576,2018/09/16 11:55:51,1400320232
1659621576,2018/09/16 11:56:38,1403818184
1659621576,2018/09/16 11:55:51,2080620736
1659621576,2018/09/16 11:57:55,2080633024
1659621576,2018/09/16 11:56:38,2080649408
1659621576,2018/09/16 11:55:51,2080657600
1659621576,2018/09/16 11:57:55,2080833584
1659621576,2018/09/16 11:56:38,2081034344
1659621576,2018/09/16 11:57:55,2081341632
1659621576,2018/09/16 11:57:55,2090369224
1273413656,2018/08/09 11:08:39,1273667600
1651068952,2018/09/16 12:03:23,479248
1651068952,2018/09/16 12:00:00,9506856
1651068952,2018/09/16 11:59:10,21586072
1651068952,2018/09/16 12:00:00,537215176
1651068952,2018/09/16 11:59:10,724271224
1651068952,2018/09/16 12:03:23,783491088
1651068952,2018/09/16 12:03:23,850853936
1651068952,2018/09/16 12:03:23,851787896
1651068952,2018/09/16 12:00:00,852303912
1651068952,2018/09/16 12:00:00,1385205808
1651068952,2018/09/16 12:03:23,1386102824
1651068952,2018/09/16 11:57:59,1387339880
1651068952,2018/09/16 12:00:00,1388658888
1651068952,2018/09/16 12:00:00,1392607432
1651068952,2018/09/16 11:57:59,1395613720
1651068952,2018/09/16 11:57:59,1397547112
1651068952,2018/09/16 11:57:59,1397551208
1651068952,2018/09/16 12:03:23,1397596264
1651068952,2018/09/16 11:57:59,1397706792
1651068952,2018/09/16 11:59:10,1397751912
1651068952,2018/09/16 11:59:10,1397899304
1651068952,2018/09/16 11:57:59,1398140976
1651068952,2018/09/16 12:00:00,1398169648
1651068952,2018/09/16 11:57:59,1399472248
1651068952,2018/09/16 11:57:59,1400099008
1651068952,2018/09/16 11:57:28,1400123584
1651068952,2018/09/16 12:03:23,1400180936
1651068952,2018/09/16 11:57:59,1400320232
1651068952,2018/09/16 11:59:10,1403818184
1651068952,2018/09/16 11:57:59,2080620736
1651068952,2018/09/16 12:00:00,2080633024
1651068952,2018/09/16 11:59:10,2080649408
1651068952,2018/09/16 11:57:59,2080657600
1651068952,2018/09/16 12:00:00,2080833584
1651068952,2018/09/16 11:59:10,2081034344
1651068952,2018/09/16 12:00:00,2081341632
1651068952,2018/09/16 12:00:00,2090369224
1269534736,2018/08/06 05:27:33,751419592
1269534736,2018/08/05 01:03:00,838807744
1269534736,2018/08/06 05:28:58,839086200
1269534736,2018/08/06 05:34:23,840261672
1269534736,2018/08/05 01:03:00,840298544
1269534736,2018/08/06 05:28:58,841130184
1269534736,2018/08/06 05:27:33,845172856
1269534736,2018/08/06 05:27:33,1285648432
1269534736,2018/08/06 05:34:29,1293258872
1271996608,2018/08/06 05:29:10,751419592
1271996608,2018/08/05 01:03:00,838807744
1271996608,2018/08/06 05:30:03,839086200
1271996608,2018/08/06 05:35:26,840261672
1271996608,2018/08/05 01:03:00,840298544
1271996608,2018/08/06 05:30:03,841130184
1271996608,2018/08/06 05:29:10,845172856
1271996608,2018/08/06 05:29:10,1285648432
1271996608,2018/08/06 05:35:31,1291329640
1270014144,2018/08/05 19:41:46,681738472
1270014144,2018/08/04 12:55:41,682438776
1270014144,2018/08/05 19:39:33,749461624
1270014144,2018/08/05 19:39:33,752627752
1270014144,2018/08/05 19:41:46,836390960
1270014144,2018/08/05 19:49:54,837402672
1270014144,2018/08/05 19:39:33,840089752
1270014144,2018/08/04 12:55:41,840257576
1270014144,2018/08/05 19:39:33,840548504
1270014144,2018/08/05 19:49:59,1293258944
1270771832,2018/08/05 22:16:39,681738472
1270771832,2018/08/05 22:15:45,746643504
1270771832,2018/08/05 22:15:45,751419592
1270771832,2018/08/05 22:16:39,836390960
1270771832,2018/08/04 14:52:28,839213080
1270771832,2018/08/05 22:21:07,840179944
1270771832,2018/08/05 22:15:45,840548504
1270771832,2018/08/04 14:52:28,840589512
1270771832,2018/08/05 22:21:12,1289224208
1272852600,2018/08/06 05:30:44,751419592
1272852600,2018/08/05 01:03:00,838807744
1272852600,2018/08/06 05:31:39,839086200
1272852600,2018/08/06 05:37:03,840261672
1272852600,2018/08/05 01:03:00,840298544
1272852600,2018/08/06 05:31:39,841130184
1272852600,2018/08/06 05:30:44,845172856
1272852600,2018/08/06 05:30:44,1285648432
1272852600,2018/08/06 05:37:09,1291796584
1268412568,2018/08/06 05:29:08,751419592
1268412568,2018/08/05 01:03:00,838807744
1268412568,2018/08/06 05:30:34,839086200
1268412568,2018/08/06 05:36:39,840261672
1268412568,2018/08/05 01:03:00,840298544
1268412568,2018/08/06 05:30:34,841130184
1268412568,2018/08/06 05:29:08,845172856
1268412568,2018/08/06 05:29:08,1285648432
1268412568,2018/08/06 05:36:45,1290285072
1269694512,2018/08/07 13:57:45,752443512
1269694512,2018/08/06 18:16:14,834355352
1269694512,2018/08/07 14:07:42,835354776
1269694512,2018/08/07 14:01:17,836911208
1269694512,2018/08/07 13:57:45,842350640
1269694512,2018/08/06 18:16:14,842563784
1269694512,2018/08/07 13:57:45,1294237744
1269694512,2018/08/07 14:07:43,1295634624
1269694512,2018/08/07 14:01:17,1296417000
1272332328,2018/08/06 05:28:20,751419592
1272332328,2018/08/05 01:03:00,838807744
1272332328,2018/08/06 05:29:45,839086200
1272332328,2018/08/06 05:35:50,840261672
1272332328,2018/08/05 01:03:00,840298544
1272332328,2018/08/06 05:29:45,841130184
1272332328,2018/08/06 05:28:20,845172856
1272332328,2018/08/06 05:28:20,1285648432
1272332328,2018/08/06 05:35:56,1289732112
1272807464,2018/08/07 14:39:52,752443512
1272807464,2018/08/06 18:16:14,834355352
1272807464,2018/08/07 14:44:36,835354776
1272807464,2018/08/07 14:40:46,836911208
1272807464,2018/08/07 14:39:52,842350640
1272807464,2018/08/06 18:16:14,842563784
1272807464,2018/08/07 14:39:52,1291862040
1272807464,2018/08/07 14:40:46,1296417000
1272807464,2018/08/07 14:44:37,1298776264
1273249912,2018/08/07 14:39:02,752443512
1273249912,2018/08/06 18:16:14,834355352
1273249912,2018/08/07 14:44:12,835354776
1273249912,2018/08/07 14:40:27,836911208
1273249912,2018/08/07 14:39:02,842350640
1273249912,2018/08/06 18:16:14,842563784
1273249912,2018/08/07 14:39:02,1291862040
1273249912,2018/08/07 14:44:13,1295220928
1273249912,2018/08/07 14:40:27,1296417000
1281781808,2018/08/05 19:05:55,681738472
1281781808,2018/08/05 19:03:01,749461624
1281781808,2018/08/05 19:03:01,752627752
1281781808,2018/08/05 19:05:55,836390960
1281781808,2018/08/05 19:21:33,837402672
1281781808,2018/08/04 12:33:58,837820464
1281781808,2018/08/05 19:03:01,840089752
1281781808,2018/08/04 12:33:58,842563816
1281781808,2018/08/05 19:21:38,1295106280
1273626856,2018/08/07 14:37:26,752443512
1273626856,2018/08/06 18:16:14,834355352
1273626856,2018/08/07 14:42:58,835354776
1273626856,2018/08/07 14:38:51,836911208
1273626856,2018/08/07 14:37:26,842350640
1273626856,2018/08/06 18:16:14,842563784
1273626856,2018/08/07 14:37:26,1291862040
1273626856,2018/08/07 14:42:59,1291866136
1273626856,2018/08/07 14:38:51,1296417000
1275576520,2018/08/07 14:39:04,752443512
1275576520,2018/08/06 18:16:14,834355352
1275576520,2018/08/07 14:43:23,835354776
1275576520,2018/08/07 14:39:58,836911208
1275576520,2018/08/07 14:39:04,842350640
1275576520,2018/08/06 18:16:14,842563784
1275576520,2018/08/07 14:43:24,1291075736
1275576520,2018/08/07 14:39:04,1291862040
1275576520,2018/08/07 14:39:58,1296417000
1272795176,2018/08/07 14:38:17,752443512
1272795176,2018/08/06 18:16:14,834355352
1272795176,2018/08/07 14:42:34,835354776
1272795176,2018/08/07 14:39:11,836911208
1272795176,2018/08/07 14:38:17,842350640
1272795176,2018/08/06 18:16:14,842563784
1272795176,2018/08/07 14:38:17,1291862040
1272795176,2018/08/07 14:42:35,1293521000
1272795176,2018/08/07 14:39:11,1296417000
1271259240,2018/08/07 14:36:41,752443512
1271259240,2018/08/06 18:16:14,834355352
1271259240,2018/08/07 14:40:56,835354776
1271259240,2018/08/07 14:37:35,836911208
1271259240,2018/08/07 14:36:41,842350640
1271259240,2018/08/06 18:16:14,842563784
1271259240,2018/08/07 14:40:57,1291857944
1271259240,2018/08/07 14:36:41,1291862040
1271259240,2018/08/07 14:37:35,1296417000
1273667600,2018/08/07 14:43:56,752443512
1273667600,2018/08/06 18:16:14,834355352
1273667600,2018/08/07 14:51:13,835354776
1273667600,2018/08/07 14:45:21,836911208
1273667600,2018/08/07 14:43:56,842350640
1273667600,2018/08/06 18:16:14,842563784
1273667600,2018/08/07 14:43:56,1291862040
1273667600,2018/08/07 14:51:14,1294315624
1273667600,2018/08/07 14:45:21,1296417000
751419592,2018/07/25 05:33:27,749551664
751419592,2018/07/25 05:33:27,749551664
751419592,2018/07/25 05:33:27,749551664
751419592,2018/07/25 05:33:27,749551664
751419592,2018/07/25 05:33:27,749551664
751419592,2018/07/25 05:33:27,749551664
838807744,2018/07/24 23:54:22,377032
838807744,2018/07/24 23:54:22,377032
838807744,2018/07/24 23:54:22,377032
838807744,2018/07/24 23:54:22,377032
838807744,2018/07/24 23:54:22,377032
839086200,2018/07/19 22:52:24,838303784
839086200,2018/07/19 22:52:24,838303784
839086200,2018/07/19 22:52:24,838303784
839086200,2018/07/19 22:52:24,838303784
839086200,2018/07/19 22:52:24,838303784
840261672,2018/07/18 22:49:53,836239384
840261672,2018/07/18 22:49:53,836239384
840261672,2018/07/18 22:49:53,836239384
840261672,2018/07/18 22:49:53,836239384
840261672,2018/07/18 22:49:53,836239384
840298544,2018/07/26 00:23:54,61592
840298544,2018/07/26 00:23:54,61592
840298544,2018/07/26 00:23:54,61592
840298544,2018/07/26 00:23:54,61592
840298544,2018/07/26 00:23:54,61592
841130184,2018/07/16 01:02:26,838189104
841130184,2018/07/16 01:02:26,838189104
841130184,2018/07/16 01:02:26,838189104
841130184,2018/07/16 01:02:26,838189104
841130184,2018/07/16 01:02:26,838189104
845172856,2018/07/24 23:05:45,842280976
845172856,2018/07/24 23:05:45,842280976
845172856,2018/07/24 23:05:45,842280976
845172856,2018/07/24 23:05:45,842280976
845172856,2018/07/24 23:05:45,842280976
1285648432,2018/08/01 14:36:48,1365819544
1285648432,2018/08/01 14:36:48,1365819544
1285648432,2018/08/01 14:36:48,1365819544
1285648432,2018/08/01 14:36:48,1365819544
1285648432,2018/08/01 14:36:48,1365819544
681738472,2018/07/25 22:35:58,838189104
681738472,2018/07/25 22:35:58,838189104
681738472,2018/07/25 22:35:58,838189104
682438776,2018/07/24 23:47:54,838308072
749461624,2018/07/24 04:31:57,747561152
749461624,2018/07/24 04:31:57,747561152
752627752,2018/07/25 05:33:43,749551664
752627752,2018/07/25 05:33:43,749551664
836390960,2018/07/19 22:52:24,838303784
836390960,2018/07/19 22:52:24,838303784
836390960,2018/07/19 22:52:24,838303784
837402672,2018/07/18 22:49:53,836239384
837402672,2018/07/18 22:49:53,836239384
840089752,2018/07/18 22:53:11,844517576
840089752,2018/07/18 22:53:11,844517576
840257576,2018/07/26 00:13:45,377032
840548504,2018/07/24 23:05:45,842280976
840548504,2018/07/24 23:05:45,842280976
746643504,2018/07/24 04:31:57,747561152
839213080,2018/07/24 23:47:54,838308072
840179944,2018/07/18 22:49:53,836239384
840589512,2018/07/26 00:13:45,377032
752443512,2018/07/31 07:22:02,749559856
752443512,2018/07/31 07:22:02,749559856
752443512,2018/07/31 07:22:02,749559856
752443512,2018/07/31 07:22:02,749559856
752443512,2018/07/31 07:22:02,749559856
752443512,2018/07/31 07:22:02,749559856
752443512,2018/07/31 07:22:02,749559856
752443512,2018/07/31 07:22:02,749559856
834355352,2018/07/22 12:08:55,159944
834355352,2018/07/22 12:08:55,159944
834355352,2018/07/22 12:08:55,159944
834355352,2018/07/22 12:08:55,159944
834355352,2018/07/22 12:08:55,159944
834355352,2018/07/22 12:08:55,159944
834355352,2018/07/22 12:08:55,159944
834355352,2018/07/22 12:08:55,159944
835354776,2018/07/12 22:54:36,836239384
835354776,2018/07/12 22:54:36,836239384
835354776,2018/07/12 22:54:36,836239384
835354776,2018/07/12 22:54:36,836239384
835354776,2018/07/12 22:54:36,836239384
835354776,2018/07/12 22:54:36,836239384
835354776,2018/07/12 22:54:36,836239384
835354776,2018/07/12 22:54:36,836239384
836911208,2018/07/18 22:44:51,838303784
836911208,2018/07/18 22:44:51,838303784
836911208,2018/07/18 22:44:51,838303784
836911208,2018/07/18 22:44:51,838303784
836911208,2018/07/18 22:44:51,838303784
836911208,2018/07/18 22:44:51,838303784
836911208,2018/07/18 22:44:51,838303784
836911208,2018/07/18 22:44:51,838303784
842350640,2018/07/24 23:05:45,842280976
842350640,2018/07/24 23:05:45,842280976
842350640,2018/07/24 23:05:45,842280976
842350640,2018/07/24 23:05:45,842280976
842350640,2018/07/24 23:05:45,842280976
842350640,2018/07/24 23:05:45,842280976
842350640,2018/07/24 23:05:45,842280976
842350640,2018/07/24 23:05:45,842280976
842563784,2018/07/22 12:00:38,61592
842563784,2018/07/22 12:00:38,61592
842563784,2018/07/22 12:00:38,61592
842563784,2018/07/22 12:00:38,61592
842563784,2018/07/22 12:00:38,61592
842563784,2018/07/22 12:00:38,61592
842563784,2018/07/22 12:00:38,61592
842563784,2018/07/22 12:00:38,61592
1294237744,2018/08/02 13:55:30,1371918568
1296417000,2018/08/04 05:21:05,1410347160
1296417000,2018/08/04 05:21:05,1410347160
1296417000,2018/08/04 05:21:05,1410347160
1296417000,2018/08/04 05:21:05,1410347160
1296417000,2018/08/04 05:21:05,1410347160
1296417000,2018/08/04 05:21:05,1410347160
1296417000,2018/08/04 05:21:05,1410347160
1296417000,2018/08/04 05:21:05,1410347160
1291862040,2018/08/02 13:55:30,1371918568
1291862040,2018/08/02 13:55:30,1371918568
1291862040,2018/08/02 13:55:30,1371918568
1291862040,2018/08/02 13:55:30,1371918568
1291862040,2018/08/02 13:55:30,1371918568
1291862040,2018/08/02 13:55:30,1371918568
1291862040,2018/08/02 13:55:30,1371918568
837820464,2018/07/26 00:13:45,377032
842563816,2018/07/24 23:47:54,838308072
======================================================================
Best regards,
Manabu
2020年11月26日木曜日 16:07:27 UTC+9 HadoopMarc: