Index: doc/theses/mike_brooks_MMath/benchmarks/list/.gitignore
===================================================================
--- doc/theses/mike_brooks_MMath/benchmarks/list/.gitignore	(revision 9989781ad5d96b88ab5fe9f06b38717feaaf75ea)
+++ doc/theses/mike_brooks_MMath/benchmarks/list/.gitignore	(revision bb5b86660851b58d8e5a505176422ffa0c70a253)
@@ -3,2 +3,3 @@
 results--*.csv
 results-latest.csv
+detail-plots/
Index: doc/theses/mike_brooks_MMath/benchmarks/list/Makefile
===================================================================
--- doc/theses/mike_brooks_MMath/benchmarks/list/Makefile	(revision 9989781ad5d96b88ab5fe9f06b38717feaaf75ea)
+++ doc/theses/mike_brooks_MMath/benchmarks/list/Makefile	(revision bb5b86660851b58d8e5a505176422ffa0c70a253)
@@ -9,8 +9,13 @@
 # For performance, see also: `results-smoketest.csv`, `make thesis`, and more such applied targets at the end
 
+
 CFA ?= cfa
-CC ?= gcc-11
-CXX ?= g++-11
+CC = gcc-11
+CXX = g++-11
 UXX ?=  ~/u++/u++-7.0.0/bin/u++
+
+hi:
+	echo $(CC)
+	echo $(CXX)
 
 MODE?=performance
@@ -23,9 +28,11 @@
 LLHEAP_LIB=../llheap/libllheap.so
 
+CFA_PERFMODE_DEBUG_FLAG?=-nodebug
+
 ifeq "$(MODE)" "performance"
-PERFFLAGS_CFA = -DNDEBUG -O3 -nodebug
+PERFFLAGS_CFA = -DNDEBUG -O3 $(CFA_PERFMODE_DEBUG_FLAG)
 PERFFLAGS_CC  = -DNDEBUG -O3
 else ifeq "$(MODE)" "correctness"
-PERFFLAGS_CFA = -O0 -g -nodebug -D__CFA_DEBUG__ # shortcut for not also building debug cfa
+PERFFLAGS_CFA = -O0 -g
 PERFFLAGS_CC  = -O0 -g
 else
@@ -310,7 +317,18 @@
   8388608-1 \
   16777216-1 \
+, $(if $(filter $(RUN_DATA_SIZE_MODE),peterhuge), \
+  16777216-1 \
+  33554432-1 \
+  67108864-1 \
+  134217728-1 \
 , $(if $(filter $(RUN_DATA_SIZE_MODE),none), \
 , $(error Bad RUN_DATA_SIZE_MODE ($(RUN_DATA_SIZE_MODE)); see list of accepted values in Makefile's RUN_DATA_SIZES defimition) \
-))))))))
+)))))))))
+
+  # removed from peterhuge
+  # 268435456-1 \
+  # 536870912-1 \
+  # 1073741824-1 \
+
 
 RUN_REP_IDS=$(shell echo {1..$(RUN_NUM_REPS)})              # 1 2 3
@@ -398,13 +416,30 @@
 
 results-zoomout-noshuf.csv: MAKE_DISABLE_OBSERVATION=yes
-results-zoomout-noshuf.csv: EXTRA_COMP_FLAGS+= -DTINY_USER_ITEMS -DDISABLE_INTERLEAVING
+results-zoomout-noshuf.csv: EXTRA_COMP_FLAGS+= -DTINY_USER_ITEMS -DDISABLE_INTERLEAVING -DDISABLE_ITERS
+results-zoomout-noshuf.csv: OP_MOVEMENTS=stack
+results-zoomout-noshuf.csv: OP_POLARITIES=insfirst
+results-zoomout-noshuf.csv: OP_ACCESSORS=allhead
 results-zoomout-noshuf.csv: FORCE cleanbuild
-	make results-latest.csv RUN_DURATION_SEC=5 RUN_NUM_REPS=5 RUN_DATA_SIZE_MODE=bignthorough OPS=stack-insfirst-allhead FX_SOLUTIONS='lq-tailq cfa-cfa upp-upp cpp-stlref cfa-strip' SEED=-1
+	make results-latest.csv RUN_DURATION_SEC=5 RUN_NUM_REPS=5 RUN_DATA_SIZE_MODE=bignthorough OPS=stack-insfirst-allhead FX_SOLUTIONS='lq-tailq cfa-cfa upp-upp cpp-stlref lq-list' SEED=-1
 	cp results-latest.csv $@
 
 results-zoomout-shuf.csv: MAKE_DISABLE_OBSERVATION=yes
-results-zoomout-shuf.csv: EXTRA_COMP_FLAGS+= -DTINY_USER_ITEMS -DDISABLE_INTERLEAVING
+results-zoomout-shuf.csv: EXTRA_COMP_FLAGS+= -DTINY_USER_ITEMS -DDISABLE_INTERLEAVING -DDISABLE_ITERS
+results-zoomout-shuf.csv: OP_MOVEMENTS=stack
+results-zoomout-shuf.csv: OP_POLARITIES=insfirst
+results-zoomout-shuf.csv: OP_ACCESSORS=allhead
 results-zoomout-shuf.csv: FORCE cleanbuild
-	make results-latest.csv RUN_DURATION_SEC=5 RUN_NUM_REPS=5 RUN_DATA_SIZE_MODE=bignthorough OPS=stack-insfirst-allhead FX_SOLUTIONS='lq-tailq cfa-cfa upp-upp cpp-stlref cfa-strip'
+	make results-latest.csv RUN_DURATION_SEC=5 RUN_NUM_REPS=5 RUN_DATA_SIZE_MODE=bignthorough OPS=stack-insfirst-allhead FX_SOLUTIONS='lq-tailq cfa-cfa upp-upp cpp-stlref lq-list'
+	cp results-latest.csv $@
+
+results-manual.csv: MAKE_DISABLE_OBSERVATION=yes
+results-manual.csv: EXTRA_COMP_FLAGS+= -DTINY_USER_ITEMS -DDISABLE_INTERLEAVING -DDISABLE_ITERS
+results-manual.csv: OP_MOVEMENTS=stack
+results-manual.csv: OP_POLARITIES=insfirst
+results-manual.csv: OP_ACCESSORS=allhead
+results-manual.csv: FX_SOLUTIONS=cpp-stlref
+results-manual.csv: RUN_DATA_SIZE_MODE=peterhuge
+results-manual.csv: FORCE cleanbuild
+	make results-latest.csv RUN_DURATION_SEC=3 RUN_NUM_REPS=1 RUN_DATA_SIZE_MODE='$(RUN_DATA_SIZE_MODE)' OPS='$(OPS)' FX_SOLUTIONS='$(FX_SOLUTIONS)'
 	cp results-latest.csv $@
 
Index: doc/theses/mike_brooks_MMath/benchmarks/list/detail-plots.gp
===================================================================
--- doc/theses/mike_brooks_MMath/benchmarks/list/detail-plots.gp	(revision bb5b86660851b58d8e5a505176422ffa0c70a253)
+++ doc/theses/mike_brooks_MMath/benchmarks/list/detail-plots.gp	(revision bb5b86660851b58d8e5a505176422ffa0c70a253)
@@ -0,0 +1,57 @@
+set terminal pdf color enhanced size 6.0in,3.0in font "Times,17"
+#set terminal postscript portrait enhanced size 7.5, 10. color solid 9.5;
+#set terminal wxt size 950,1250
+
+INDIR="detail-plots/"
+OUTDIR=INDIR
+FILEPAT='*.dat'
+FILES = system(sprintf('ls %s%s',INDIR,FILEPAT))
+
+set macros
+set output OUTDIR."out.pdf"
+#set pointsize 2.0
+set grid
+set key bottom right
+set logscale x 2
+set logscale y
+set yrange [1:20];
+set xlabel "List length (item count)" offset 2,0
+set ylabel "Operation duration (ns)"
+set linetype 3 dashtype 2
+set linetype 4 dashtype 2
+
+
+myInput(s)  = sprintf('%s%s',DIR,s)
+
+do for [FILE in FILES] {
+
+    set title FILE
+
+#    plot FILE \
+#        i 0 using 1:2:3 title columnheader(1) with yerrorbars lt rgb "blue"	pt  2  ps 1 lw 1, \
+#        '' i 1 using 1:2:3 title columnheader(1) with yerrorbars lt rgb "red"	pt  3  ps 1 lw 1, \
+#        '' i 2 using 1:2:3 title columnheader(1) with yerrorbars lt rgb "green"	pt  6  ps 1 lw 1, \
+#        '' i 3 using 1:2:3 title columnheader(1) with yerrorbars lt rgb "black"	pt  8  ps 1 lw 1, \
+#        '' i 4 using 1:2:3 title columnheader(1) with yerrorbars lt rgb "brown"	pt  10  ps 1 lw 1
+
+
+    plot FILE \
+           i 0 using 1:2 title columnheader(1) with points lt rgb "blue"	pt  1 ps 1 lw 1, \
+        '' i 7 using 1:2 title columnheader(1) with points lt rgb "purple"	pt  1  ps 1 lw 1, \
+        '' i 8 using 1:2 title columnheader(1) with points lt rgb "magenta"	pt  1  ps 1 lw 1, \
+        '' i 9 using 1:2 title columnheader(1) with points lt rgb "brown"	pt  1  ps 1 lw 1
+
+
+#           i 0 using 1:2 title columnheader(1) with points lt rgb "blue"	pt  1 ps 1 lw 1, \
+#        '' i 1 using 1:2 title columnheader(1) with points lt rgb "red"	    pt  1 ps 1 lw 1, \
+#        '' i 2 using 1:2 title columnheader(1) with points lt rgb "green"	pt  1 ps 1 lw 1, \
+#        '' i 3 using 1:2 title columnheader(1) with points lt rgb "black"	pt  1 ps 1 lw 1, \
+#        '' i 4 using 1:2 title columnheader(1) with points lt rgb "orange"	pt  1  ps 1 lw 1, \
+#        '' i 5 using 1:2 title columnheader(1) with points lt rgb "cyan"	pt  1  ps 1 lw 1, \
+#        '' i 6 using 1:2 title columnheader(1) with points lt rgb "gray"	pt  1  ps 1 lw 1, \
+#        '' i 7 using 1:2 title columnheader(1) with points lt rgb "purple"	pt  1  ps 1 lw 1, \
+#        '' i 8 using 1:2 title columnheader(1) with points lt rgb "magenta"	pt  1  ps 1 lw 1, \
+#        '' i 9 using 1:2 title columnheader(1) with points lt rgb "brown"	pt  1  ps 1 lw 1
+
+
+}
Index: doc/theses/mike_brooks_MMath/benchmarks/list/detail-plots.py
===================================================================
--- doc/theses/mike_brooks_MMath/benchmarks/list/detail-plots.py	(revision bb5b86660851b58d8e5a505176422ffa0c70a253)
+++ doc/theses/mike_brooks_MMath/benchmarks/list/detail-plots.py	(revision bb5b86660851b58d8e5a505176422ffa0c70a253)
@@ -0,0 +1,107 @@
+# Read csv given on cmdline, e.g results-sizing-c.csv
+# In each op dimension (movement, polarity, accessor)
+#   that has several values showing up in the input
+#   extend it with an 'all' member.
+# Each resulting op combination defines an output file, so named, e.g.
+#   results-sizing-c-stack-insfirst-allhead.dat
+#   results-sizing-c-queue-insfirst-allhead.dat
+#   results-sizing-c-all-insfirst-allhead.dat
+# For each output file
+#   considering the subset of the input data that qualifies,
+#   proceed as in crunch1, i.e. [following steps], putting the output in that file
+# Split "series" goups of fx
+# Group by all remaining classifiers except "repeat number"
+# output:
+# x y-mean y-stdev y-min y-max
+# where x is size, y is duration
+# in chunks, each headed by fx
+
+import pandas as pd
+import numpy as np
+import sys
+import os
+from contextlib import redirect_stdout
+
+plotsdir = os.path.dirname(__file__) + "/../../plots"
+sys.path.insert(0, plotsdir)
+from ListCommon import *
+
+infile = sys.argv[1]
+
+outdir = 'detail-plots'
+if (len(sys.argv) >= 3 ):
+    outdir = sys.argv[2]
+os.makedirs(outdir, exist_ok=True)
+
+timings = getDataset( infile )
+
+## inventory the op dimensions
+
+movements = timings['movement'].unique()
+polarities = timings['polarity'].unique()
+accessors = timings['accessor'].unique()
+interleaves = timings['InterleaveFrac'].unique()
+
+if movements.size > 1:
+    movements = np.append(movements, 'all')
+if polarities.size > 1:
+    polarities = np.append(polarities, 'all')
+if accessors.size > 1:
+    accessors = np.append(accessors, 'all')
+# if interleaves.size > 1:
+#     interleaves = np.append(interleaves, 'all')
+
+# print(movements)
+# print(polarities)
+# print(accessors)
+# print(interleaves)
+
+ops = np.stack(np.meshgrid(movements, polarities, accessors, interleaves), -1).reshape(-1, 4)
+# print(ops)
+
+for [movement, polarity, accessor, interleave] in ops:    # output-file grain
+
+    tgtOp = '{}-{}-{}-{}'.format(movement, polarity, accessor, interleave)
+    outfile = '{}/{}-{}.dat'.format(outdir, infile[:-4], tgtOp)
+    # print()
+    print ("=== ", outfile, " ===")
+    # print()
+
+    ## re-shape
+
+    timingsFiltered = timings
+
+    if (movement != 'all'):
+        grp = timingsFiltered.groupby('movement')
+        timingsFiltered = grp.get_group(movement)
+    if (polarity != 'all'):
+        grp = timingsFiltered.groupby('polarity')
+        timingsFiltered = grp.get_group(polarity)
+    if (accessor != 'all'):
+        grp = timingsFiltered.groupby('accessor')
+        timingsFiltered = grp.get_group(accessor)
+    if (interleave != 'all'):
+        timingsFiltered = timingsFiltered[ timingsFiltered['InterleaveFrac'] == float(interleave) ]
+
+    rows = timingsFiltered.shape[0]
+    if rows == 0:
+        print("skip")
+    else:
+        print("got", rows)
+
+        with open(outfile, 'w') as f:
+            with redirect_stdout(f):
+
+                groupedFx = timingsFiltered.groupby('fx')
+
+                for fx, fgroup in groupedFx:
+                    # print(fgroup.head())
+                    groupedRun = fgroup.groupby(['NumNodes']) # , 'fx', 'op'
+                    aggregated = groupedRun['mean_op_dur_ns'].agg(["mean", "std", "min", "max", "count"])
+                    #print(aggregated.head())
+
+                    print('"{header}"'.format(header=fx))
+                    text = aggregated.to_csv(header=False, index=True, sep='\t')
+                    print(text)
+                    print()
+                    print()
Index: doc/theses/mike_brooks_MMath/benchmarks/list/qplot.py
===================================================================
--- doc/theses/mike_brooks_MMath/benchmarks/list/qplot.py	(revision 9989781ad5d96b88ab5fe9f06b38717feaaf75ea)
+++ doc/theses/mike_brooks_MMath/benchmarks/list/qplot.py	(revision bb5b86660851b58d8e5a505176422ffa0c70a253)
@@ -4,5 +4,6 @@
 import sys
 
-sys.path.insert(0, os.path.dirname(__file__) + "../../plots")
+plotsdir = os.path.dirname(__file__) + "/../../plots"
+sys.path.insert(0, plotsdir)
 from ListCommon import *
 
Index: doc/theses/mike_brooks_MMath/benchmarks/list/results-zoomout-noshuf.csv
===================================================================
--- doc/theses/mike_brooks_MMath/benchmarks/list/results-zoomout-noshuf.csv	(revision 9989781ad5d96b88ab5fe9f06b38717feaaf75ea)
+++ doc/theses/mike_brooks_MMath/benchmarks/list/results-zoomout-noshuf.csv	(revision bb5b86660851b58d8e5a505176422ffa0c70a253)
@@ -1,725 +1,725 @@
-2025-08-12 11:53:37,5,5 10 819229 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2195533720,5.002629,2.278548
-2025-08-12 11:53:42,2,5 10 204803 -1 -1 0  ,
-2025-08-12 11:53:42,5,5 10000 101 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1428140000,5.001874,3.502370
-2025-08-12 11:53:47,1,5 100000 29 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,290000000,5.005160,17.259172
-2025-08-12 11:53:52,5,5 1 409609000 -1 -1 0  ,
-2025-08-12 11:54:07,2,5 1000000 7 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2849000000,5.006258,1.757198
-2025-08-12 11:54:12,2,5 1000 1601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,289781000,5.012838,17.298712
-2025-08-12 11:54:17,1,5 1000 3203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2213273000,5.002251,2.260115
-2025-08-12 11:54:22,4,5 1 1638431 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2198774402,5.001159,2.274521
-2025-08-12 11:54:27,1,5 100 51203 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1597533600,5.011980,3.137324
-2025-08-12 11:54:32,5,5 1 1638431 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,285086994,5.006879,17.562636
-2025-08-12 11:54:38,5,5 100 51203 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1597533600,5.011518,3.137034
-2025-08-12 11:54:43,5,5 1 6553621 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2195463035,5.009322,2.281670
-2025-08-12 11:54:48,3,5 10 204803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1298451020,5.002594,3.852740
-2025-08-12 11:54:53,4,5 100000 53 -1 -1 0  ,
-2025-08-12 11:54:53,4,5 10000 211 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,303840000,5.018923,16.518309
-2025-08-12 11:54:58,5,5 100 12809 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1592158700,5.000857,3.140929
-2025-08-12 11:55:03,5,5 1000 3203 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1595094000,5.005837,3.138271
-2025-08-12 11:55:09,2,5 100000 53 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1399200000,5.007597,3.578900
-2025-08-12 11:55:14,5,5 1000000 3 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,3393000000,5.001526,1.474072
-2025-08-12 11:55:19,4,5 10000 809 -1 -1 0  ,
-2025-08-12 11:55:19,1,5 1000 3203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,313894000,5.024377,16.006604
-2025-08-12 11:55:24,1,5 1 102407000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331291000,5.082144,3.817455
-2025-08-12 11:55:33,4,5 10000 401 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1563900000,5.007235,3.201762
-2025-08-12 11:55:38,2,5 1 102407000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331291000,5.080331,3.816094
-2025-08-12 11:55:48,4,5 1 409609000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,15.531188,37.917106
-2025-08-12 11:56:22,3,5 1 12809000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2203148000,5.026871,2.281676
-2025-08-12 11:56:28,2,5 1 6553621 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281805703,5.072774,18.000963
-2025-08-12 11:56:33,4,5 1000 1601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,312195000,5.021648,16.084973
-2025-08-12 11:56:38,2,5 1000000 3 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,315000000,5.021950,15.942698
-2025-08-12 11:56:43,3,5 10000 101 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,998890000,5.001414,5.006972
-2025-08-12 11:56:48,5,5 10 204803 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593367340,5.000158,3.138108
-2025-08-12 11:56:53,2,5 1 204803000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638424000,5.194709,3.170552
-2025-08-12 11:57:05,2,5 1 102407000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2252954000,5.156445,2.288748
-2025-08-12 11:57:14,5,5 10000 211 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1514980000,5.001080,3.301086
-2025-08-12 11:57:20,2,5 100000 53 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1409800000,5.012901,3.555753
-2025-08-12 11:57:25,3,5 1 25601000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331252000,5.068623,3.807411
-2025-08-12 11:57:31,2,5 100 25601 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1594942300,5.006027,3.138688
-2025-08-12 11:57:36,3,5 1 102407000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638512000,5.189682,3.167314
-2025-08-12 11:57:44,5,5 1 3276803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2195458010,5.007314,2.280761
-2025-08-12 11:57:50,3,5 100000 53 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1409800000,5.010178,3.553822
-2025-08-12 11:57:55,3,5 1000000 3 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2655000000,5.000018,1.883246
-2025-08-12 11:58:00,3,5 1 102407000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204814000,5.672148,27.694142
-2025-08-12 11:58:10,4,5 10 204803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,296964350,5.013790,16.883474
-2025-08-12 11:58:15,2,5 1000 1601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2214183000,5.003613,2.259801
-2025-08-12 11:58:20,1,5 100 51203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211969600,5.000586,2.260694
-2025-08-12 11:58:25,2,5 1000000 1 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,3026000000,5.000570,1.652535
-2025-08-12 11:58:31,2,5 1 12809000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1588316000,5.003174,3.149987
-2025-08-12 11:58:36,1,5 1 204803000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,7.846295,38.311426
-2025-08-12 11:58:53,1,5 1 1638431 -1 -1 0  ,
-2025-08-12 11:58:53,2,5 10 102407 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1291352270,5.000500,3.872297
-2025-08-12 11:58:59,1,5 1000 6473 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2213766000,5.005210,2.260948
-2025-08-12 11:59:04,4,5 100 25601 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1594942300,5.005804,3.138549
-2025-08-12 11:59:09,5,5 100000 53 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291500000,5.023304,17.232604
-2025-08-12 11:59:14,5,5 1 102407000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204814000,5.719088,27.923326
-2025-08-12 11:59:24,4,5 1 1638431 -1 -1 0  ,
-2025-08-12 11:59:24,4,5 100000 29 -1 -1 0  ,
-2025-08-12 11:59:25,1,5 100 12809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2212114300,5.001740,2.261068
-2025-08-12 11:59:30,2,5 1000000 3 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2319000000,5.005008,2.158261
-2025-08-12 11:59:35,3,5 10 204803 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593367340,5.000750,3.138479
-2025-08-12 11:59:40,4,5 100000 29 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1505100000,5.002709,3.323838
-2025-08-12 11:59:45,5,5 1000 6473 -1 -1 0  ,
-2025-08-12 11:59:45,1,5 10 102407 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,305172860,5.015363,16.434499
-2025-08-12 11:59:50,4,5 10 409609 -1 -1 0  ,
-2025-08-12 11:59:50,1,5 10000 809 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1585640000,5.013208,3.161631
-2025-08-12 11:59:55,2,5 1000 6473 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2213766000,5.004534,2.260643
-2025-08-12 12:00:00,1,5 1000 1601 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1589793000,5.002533,3.146657
-2025-08-12 12:00:05,3,5 1 6553621 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1592529903,5.013044,3.147849
-2025-08-12 12:00:11,4,5 10 204803 -1 -1 0  ,
-2025-08-12 12:00:11,4,5 100 25601 -1 -1 0  ,
-2025-08-12 12:00:11,4,5 10000 211 -1 -1 0  ,
-2025-08-12 12:00:11,3,5 100 51203 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1597533600,5.011999,3.137336
-2025-08-12 12:00:16,1,5 1000 1601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299387000,5.005892,16.720472
-2025-08-12 12:00:21,5,5 10000 401 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1563900000,5.012037,3.204832
-2025-08-12 12:00:26,4,5 10 819229 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294922440,5.091077,17.262427
-2025-08-12 12:00:32,3,5 10000 401 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1158890000,5.011378,4.324291
-2025-08-12 12:00:37,5,5 1 3276803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,288358664,5.027338,17.434323
-2025-08-12 12:00:42,2,5 1000 1601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1136710000,5.003613,4.401838
-2025-08-12 12:00:47,3,5 1 25601000 -1 -1 0  ,
-2025-08-12 12:00:48,1,5 1 204803000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638424000,5.193561,3.169852
-2025-08-12 12:01:00,3,5 1000000 1 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1928000000,5.001485,2.594131
-2025-08-12 12:01:05,1,5 1000000 1 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,3031000000,5.001585,1.650144
-2025-08-12 12:01:10,4,5 1000 1601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2214183000,5.002547,2.259320
-2025-08-12 12:01:15,1,5 1 6553621 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2195463035,5.002582,2.278600
-2025-08-12 12:01:20,5,5 1 6553621 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281805703,5.079356,18.024319
-2025-08-12 12:01:26,5,5 1000000 7 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2877000000,5.011859,1.742043
-2025-08-12 12:01:31,4,5 1000 3203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1133862000,5.005641,4.414683
-2025-08-12 12:01:36,1,5 1000000 1 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2567000000,5.000753,1.948092
-2025-08-12 12:01:41,5,5 10 409609 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2195504240,5.000617,2.277662
-2025-08-12 12:01:46,3,5 1 6553621 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2195463035,5.006735,2.280492
-2025-08-12 12:01:52,5,5 1000000 7 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2114000000,5.001246,2.365774
-2025-08-12 12:01:57,5,5 1000 6473 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,317177000,5.075037,16.000646
-2025-08-12 12:02:02,2,5 1 25601000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1587262000,5.009427,3.156018
-2025-08-12 12:02:08,2,5 100000 29 -1 -1 0  ,
-2025-08-12 12:02:08,2,5 1000 3203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,313894000,5.014411,15.974855
-2025-08-12 12:02:13,4,5 10000 809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,315510000,5.083128,16.110830
-2025-08-12 12:02:18,1,5 1 3276803 -1 -1 0  ,
-2025-08-12 12:02:18,5,5 10 409609 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593379010,5.000415,3.138246
-2025-08-12 12:02:23,4,5 100000 53 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1335600000,5.009383,3.750661
-2025-08-12 12:02:28,1,5 1000000 1 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1928000000,5.001134,2.593949
-2025-08-12 12:02:34,5,5 1 25601000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256010000,5.056820,19.752432
-2025-08-12 12:02:40,5,5 100000 53 -1 -1 0  ,
-2025-08-12 12:02:40,1,5 1000 6473 -1 -1 0  ,
-2025-08-12 12:02:40,2,5 1 409609000 -1 -1 0  ,
-2025-08-12 12:02:55,3,5 1 6553621 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281805703,5.078390,18.020892
-2025-08-12 12:03:00,3,5 100000 53 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1452200000,5.010352,3.450180
-2025-08-12 12:03:05,4,5 10000 401 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2221540000,5.007940,2.254265
-2025-08-12 12:03:10,1,5 1 1638431 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1376282040,5.005100,3.636682
-2025-08-12 12:03:15,4,5 1000000 3 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.001344,17.186749
-2025-08-12 12:03:21,2,5 1000000 3 -1 -1 0  ,
-2025-08-12 12:03:21,5,5 1 409609000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2457654000,5.635277,2.292950
-2025-08-12 12:03:43,4,5 1000000 7 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2870000000,5.006849,1.744547
-2025-08-12 12:03:48,1,5 10000 809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291240000,5.011605,17.207818
-2025-08-12 12:03:53,5,5 100000 53 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1425700000,5.003984,3.509844
-2025-08-12 12:03:58,3,5 1 409609000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1638436000,6.258808,3.819989
-2025-08-12 12:04:21,1,5 100000 29 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1505100000,5.001464,3.323011
-2025-08-12 12:04:26,5,5 10000 809 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1585640000,5.012252,3.161028
-2025-08-12 12:04:31,4,5 10 819229 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2203726010,5.008357,2.272677
-2025-08-12 12:04:36,5,5 100000 13 -1 -1 0  ,
-2025-08-12 12:04:36,2,5 10000 101 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,288860000,5.004849,17.326210
-2025-08-12 12:04:41,4,5 1000000 1 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,305000000,5.005156,16.410348
-2025-08-12 12:04:46,1,5 100000 53 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302100000,5.026562,16.638736
-2025-08-12 12:04:51,1,5 1 204803000 -1 -1 0  ,
-2025-08-12 12:04:59,5,5 1 3276803 -1 -1 0  ,
-2025-08-12 12:04:59,1,5 10 819229 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1597496550,5.017826,3.141056
-2025-08-12 12:05:04,3,5 1000000 7 -1 -1 0  ,
-2025-08-12 12:05:04,1,5 10 409609 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,303110660,5.010507,16.530290
-2025-08-12 12:05:09,5,5 100 25601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307212000,5.015575,16.326104
-2025-08-12 12:05:14,5,5 100 25601 -1 -1 0  ,
-2025-08-12 12:05:15,5,5 100 12809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302292400,5.019876,16.606028
-2025-08-12 12:05:20,1,5 10 204803 -1 -1 0  ,
-2025-08-12 12:05:20,4,5 1 6553621 -1 -1 0  ,
-2025-08-12 12:05:20,3,5 1000 1601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307392000,5.011833,16.304370
-2025-08-12 12:05:25,2,5 10 819229 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1597496550,5.017234,3.140685
-2025-08-12 12:05:30,3,5 10 102407 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,306196930,5.001655,16.334765
-2025-08-12 12:05:35,2,5 1 25601000 -1 -1 0  ,
-2025-08-12 12:05:36,5,5 10 819229 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1597496550,5.016848,3.140444
-2025-08-12 12:05:42,1,5 1 25601000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331252000,5.077594,3.814149
-2025-08-12 12:05:48,2,5 1 51203000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2201729000,5.056272,2.296501
-2025-08-12 12:05:55,5,5 10000 809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307420000,5.049807,16.426410
-2025-08-12 12:06:00,2,5 100 25601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,296971600,5.034692,16.953446
-2025-08-12 12:06:05,2,5 10000 101 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2272500000,5.000355,2.200376
-2025-08-12 12:06:10,4,5 1000 3203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310691000,5.008193,16.119530
-2025-08-12 12:06:15,4,5 100 51203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1280075000,5.003679,3.908895
-2025-08-12 12:06:20,5,5 10 819229 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1318958690,5.028740,3.812659
-2025-08-12 12:06:26,4,5 1000000 3 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,3393000000,5.002077,1.474234
-2025-08-12 12:06:31,3,5 1000 6473 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1203978000,5.006864,4.158601
-2025-08-12 12:06:36,1,5 1000 1601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2212582000,5.000235,2.259909
-2025-08-12 12:06:41,3,5 100 25601 -1 -1 0  ,
-2025-08-12 12:06:41,4,5 100 51203 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1597533600,5.011302,3.136899
-2025-08-12 12:06:46,3,5 1000 3203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1149877000,5.002486,4.350453
-2025-08-12 12:06:51,4,5 1 204803000 -1 -1 0  ,
-2025-08-12 12:06:58,5,5 1 25601000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1587262000,5.010912,3.156953
-2025-08-12 12:07:04,2,5 10000 101 -1 -1 0  ,
-2025-08-12 12:07:04,3,5 1000 3203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2213273000,5.001881,2.259948
-2025-08-12 12:07:10,3,5 1000 1601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2214183000,5.003132,2.259584
-2025-08-12 12:07:15,1,5 1 204803000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1433621000,5.480670,3.822956
-2025-08-12 12:07:28,1,5 1 1638431 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2197135971,5.002024,2.276611
-2025-08-12 12:07:33,1,5 10 409609 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2199600330,5.003933,2.274928
-2025-08-12 12:07:39,5,5 10 819229 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294922440,5.021057,17.025008
-2025-08-12 12:07:44,2,5 1000000 1 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1928000000,5.001715,2.594251
-2025-08-12 12:07:49,5,5 10000 401 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,292730000,5.051173,17.255399
-2025-08-12 12:07:54,1,5 1 51203000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331278000,5.100919,3.831596
-2025-08-12 12:08:01,2,5 1 6553621 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2195463035,5.001504,2.278109
-2025-08-12 12:08:07,1,5 100000 13 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1678300000,5.003840,2.981493
-2025-08-12 12:08:12,1,5 10000 401 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1563900000,5.006970,3.201592
-2025-08-12 12:08:17,2,5 1 25601000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2201686000,5.030681,2.284922
-2025-08-12 12:08:23,1,5 100 12809 -1 -1 0  ,
-2025-08-12 12:08:23,5,5 10000 211 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2188070000,5.001308,2.285717
-2025-08-12 12:08:28,3,5 100 12809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1234787600,5.001834,4.050765
-2025-08-12 12:08:33,1,5 1000000 7 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2205000000,5.002362,2.268645
-2025-08-12 12:08:38,4,5 10000 211 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1517090000,5.005199,3.299210
-2025-08-12 12:08:43,5,5 1000000 3 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2658000000,5.004370,1.882758
-2025-08-12 12:08:48,4,5 100000 13 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1617200000,5.003240,3.093767
-2025-08-12 12:08:54,3,5 1 51203000 -1 -1 0  ,
-2025-08-12 12:08:55,2,5 10 819229 -1 -1 0  ,
-2025-08-12 12:08:56,4,5 1 409609000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1638436000,6.276752,3.830941
-2025-08-12 12:09:18,1,5 100000 53 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1340900000,5.018050,3.742300
-2025-08-12 12:09:24,1,5 10000 809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1084060000,5.009414,4.620975
-2025-08-12 12:09:29,1,5 1 102407000 -1 -1 0  ,
-2025-08-12 12:09:32,4,5 1 51203000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2201729000,5.053416,2.295203
-2025-08-12 12:09:40,3,5 10 204803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,303108440,5.020509,16.563409
-2025-08-12 12:09:45,3,5 100000 13 -1 -1 0  ,
-2025-08-12 12:09:45,2,5 100000 13 -1 -1 0  ,
-2025-08-12 12:09:45,1,5 1 409609000 -1 -1 0  ,
-2025-08-12 12:09:59,4,5 1 3276803 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1376257260,5.005981,3.637388
-2025-08-12 12:10:05,5,5 1 204803000 -1 -1 0  ,
-2025-08-12 12:10:12,1,5 1 51203000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1382481000,5.058787,3.659209
-2025-08-12 12:10:19,4,5 100000 29 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,292900000,5.005507,17.089474
-2025-08-12 12:10:24,1,5 1 51203000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2201729000,5.060307,2.298333
-2025-08-12 12:10:31,1,5 100 25601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1262129300,5.008999,3.968689
-2025-08-12 12:10:36,5,5 1000 3203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,313894000,5.049607,16.086982
-2025-08-12 12:10:41,3,5 100000 13 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1678300000,5.001633,2.980178
-2025-08-12 12:10:46,4,5 100000 13 -1 -1 0  ,
-2025-08-12 12:10:46,4,5 1000 1601 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1589793000,5.002821,3.146838
-2025-08-12 12:10:52,3,5 10000 101 -1 -1 0  ,
-2025-08-12 12:10:52,3,5 1000 6473 -1 -1 0  ,
-2025-08-12 12:10:52,4,5 1 51203000 -1 -1 0  ,
-2025-08-12 12:10:54,1,5 10 819229 -1 -1 0  ,
-2025-08-12 12:10:54,3,5 1 51203000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256015000,5.645769,22.052493
-2025-08-12 12:11:02,5,5 1 6553621 -1 -1 0  ,
-2025-08-12 12:11:02,3,5 1 409609000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,15.484301,37.802639
-2025-08-12 12:11:37,1,5 1000000 1 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,308000000,5.001545,16.238782
-2025-08-12 12:11:42,3,5 100000 53 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2332000000,5.007233,2.147184
-2025-08-12 12:11:47,1,5 10000 101 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1434200000,5.003457,3.488675
-2025-08-12 12:11:52,5,5 1000 1601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2214183000,5.003468,2.259736
-2025-08-12 12:11:57,5,5 10 102407 -1 -1 0  ,
-2025-08-12 12:11:57,2,5 1000 3203 -1 -1 0  ,
-2025-08-12 12:11:57,1,5 10 102407 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1290328200,5.000487,3.875361
-2025-08-12 12:12:02,4,5 1000000 3 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2655000000,5.000735,1.883516
-2025-08-12 12:12:07,1,5 100 25601 -1 -1 0  ,
-2025-08-12 12:12:08,2,5 1 12809000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1319327000,5.025316,3.809000
-2025-08-12 12:12:13,4,5 10 102407 -1 -1 0  ,
-2025-08-12 12:12:13,2,5 1 1638431 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1590916501,5.004546,3.145700
-2025-08-12 12:12:18,3,5 10 819229 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2203726010,5.017864,2.276991
-2025-08-12 12:12:24,3,5 10 102407 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211991200,5.001999,2.261311
-2025-08-12 12:12:29,4,5 1 102407000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331291000,5.098917,3.830054
-2025-08-12 12:12:38,3,5 100000 29 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1629800000,5.005795,3.071417
-2025-08-12 12:12:43,5,5 100 51203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,317458600,5.080954,16.005092
-2025-08-12 12:12:48,3,5 1 1638431 -1 -1 0  ,
-2025-08-12 12:12:48,5,5 1 102407000 -1 -1 0  ,
-2025-08-12 12:12:52,1,5 100000 13 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291200000,5.011961,17.211405
-2025-08-12 12:12:57,1,5 1 25601000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2201686000,5.030301,2.284750
-2025-08-12 12:13:03,1,5 100000 29 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1629800000,5.006505,3.071852
-2025-08-12 12:13:08,4,5 1 102407000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2252954000,5.165968,2.292975
-2025-08-12 12:13:18,4,5 1000000 7 -1 -1 0  ,
-2025-08-12 12:13:18,3,5 10000 211 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1116190000,5.005514,4.484464
-2025-08-12 12:13:23,5,5 1 409609000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,15.699568,38.328181
-2025-08-12 12:13:57,3,5 100 51203 -1 -1 0  ,
-2025-08-12 12:13:58,4,5 10 819229 -1 -1 0  ,
-2025-08-12 12:13:58,4,5 1 102407000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1126477000,5.355243,4.753975
-2025-08-12 12:14:06,5,5 1 102407000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331291000,5.087967,3.821829
-2025-08-12 12:14:16,1,5 1 1638431 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1315660093,5.003952,3.803378
-2025-08-12 12:14:21,1,5 1000000 7 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2114000000,5.000050,2.365208
-2025-08-12 12:14:26,2,5 1000 3203 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1595094000,5.004955,3.137718
-2025-08-12 12:14:31,1,5 10 409609 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593379010,5.001884,3.139168
-2025-08-12 12:14:36,3,5 100000 13 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1615900000,5.002557,3.095833
-2025-08-12 12:14:41,4,5 10 102407 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2210967130,5.000390,2.261630
-2025-08-12 12:14:46,4,5 100 12809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2210833400,5.000196,2.261679
-2025-08-12 12:14:51,2,5 1000000 1 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2567000000,5.000509,1.947997
-2025-08-12 12:14:56,2,5 10 204803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,296964350,5.018265,16.898544
-2025-08-12 12:15:01,2,5 100000 29 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1505100000,5.002225,3.323517
-2025-08-12 12:15:07,1,5 10000 101 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,996870000,5.000694,5.016395
-2025-08-12 12:15:12,1,5 1 409609000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2457654000,5.631250,2.291311
-2025-08-12 12:15:34,5,5 100000 29 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1629800000,5.005606,3.071301
-2025-08-12 12:15:39,5,5 1 102407000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638512000,5.199140,3.173086
-2025-08-12 12:15:47,1,5 1 409609000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1638436000,6.254063,3.817093
-2025-08-12 12:16:10,5,5 10000 101 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,997880000,5.000580,5.011204
-2025-08-12 12:16:15,5,5 1000 1601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,292983000,5.019742,17.133219
-2025-08-12 12:16:20,3,5 10000 401 -1 -1 0  ,
-2025-08-12 12:16:20,4,5 1000 6473 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1598831000,5.009360,3.133139
-2025-08-12 12:16:26,2,5 1 6553621 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1592529903,5.016315,3.149903
-2025-08-12 12:16:31,2,5 10000 401 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2221540000,5.008234,2.254397
-2025-08-12 12:16:36,4,5 1 25601000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331252000,5.079546,3.815616
-2025-08-12 12:16:42,4,5 100 12809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307416000,5.013127,16.307307
-2025-08-12 12:16:47,5,5 10000 211 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1116190000,5.003179,4.482372
-2025-08-12 12:16:52,4,5 10 409609 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,303110660,5.019426,16.559715
-2025-08-12 12:16:57,4,5 10000 211 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2185960000,5.002515,2.288475
-2025-08-12 12:17:02,2,5 1000000 7 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2100000000,5.013608,2.387432
-2025-08-12 12:17:08,3,5 100 12809 -1 -1 0  ,
-2025-08-12 12:17:08,5,5 10 409609 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299014570,5.043075,16.865650
-2025-08-12 12:17:13,5,5 1 409609000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638436000,5.197743,3.172381
-2025-08-12 12:17:31,4,5 10000 101 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,290880000,5.006296,17.210864
-2025-08-12 12:17:36,2,5 1 51203000 -1 -1 0  ,
-2025-08-12 12:17:38,2,5 100 51203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211969600,5.000343,2.260584
-2025-08-12 12:17:43,4,5 1000 1601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1136710000,5.005500,4.403498
-2025-08-12 12:17:48,1,5 1000000 3 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2319000000,5.001257,2.156644
-2025-08-12 12:17:53,2,5 10 204803 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1595415370,5.005764,3.137593
-2025-08-12 12:17:58,1,5 1 3276803 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1592526258,5.007621,3.144451
-2025-08-12 12:18:03,2,5 1 102407000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204814000,5.677920,27.722324
-2025-08-12 12:18:14,3,5 1 204803000 -1 -1 0  ,
-2025-08-12 12:18:21,2,5 100 25601 -1 -1 0  ,
-2025-08-12 12:18:21,3,5 1 409609000 -1 -1 0  ,
-2025-08-12 12:18:36,5,5 1 51203000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331278000,5.102396,3.832705
-2025-08-12 12:18:43,4,5 100 12809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1234787600,5.004146,4.052637
-2025-08-12 12:18:48,4,5 1 3276803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1317274806,5.011411,3.804378
-2025-08-12 12:18:54,2,5 1 51203000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256015000,5.596387,21.859606
-2025-08-12 12:19:02,2,5 1 204803000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2252833000,5.161790,2.291244
-2025-08-12 12:19:15,2,5 10000 101 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,997880000,5.002361,5.012989
-2025-08-12 12:19:20,2,5 1 3276803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1317274806,5.002319,3.797476
-2025-08-12 12:19:25,2,5 1 409609000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638436000,5.193733,3.169933
-2025-08-12 12:19:43,5,5 1000000 3 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.000556,17.184041
-2025-08-12 12:19:48,3,5 1 12809000 -1 -1 0  ,
-2025-08-12 12:19:49,2,5 10000 809 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1585640000,5.012504,3.161187
-2025-08-12 12:19:54,3,5 1 204803000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2252833000,5.154147,2.287851
-2025-08-12 12:20:08,3,5 1000000 3 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2319000000,5.004643,2.158104
-2025-08-12 12:20:13,1,5 1 51203000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256015000,5.586089,21.819382
-2025-08-12 12:20:21,3,5 10 102407 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1291352270,5.002759,3.874047
-2025-08-12 12:20:26,2,5 100 51203 -1 -1 0  ,
-2025-08-12 12:20:26,2,5 100000 29 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307400000,5.043237,16.406106
-2025-08-12 12:20:31,4,5 100000 53 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291500000,5.023895,17.234631
-2025-08-12 12:20:36,3,5 1 25601000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256010000,5.072534,19.813812
-2025-08-12 12:20:42,4,5 100 12809 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1306518000,5.001149,3.827845
-2025-08-12 12:20:48,2,5 100000 53 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2332000000,5.007666,2.147370
-2025-08-12 12:20:53,5,5 10 204803 -1 -1 0  ,
-2025-08-12 12:20:53,1,5 10000 101 -1 -1 0  ,
-2025-08-12 12:20:53,2,5 100000 13 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1617200000,5.003150,3.093711
-2025-08-12 12:20:58,4,5 100 51203 -1 -1 0  ,
-2025-08-12 12:20:58,3,5 1 102407000 -1 -1 0  ,
-2025-08-12 12:21:02,1,5 1 25601000 -1 -1 0  ,
-2025-08-12 12:21:03,5,5 10000 809 -1 -1 0  ,
-2025-08-12 12:21:03,4,5 1000 6473 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2213766000,5.005394,2.261031
-2025-08-12 12:21:08,1,5 10000 101 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,290880000,5.006960,17.213146
-2025-08-12 12:21:13,5,5 1000000 1 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,3015000000,5.000453,1.658525
-2025-08-12 12:21:18,2,5 1 204803000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1433621000,5.492245,3.831030
-2025-08-12 12:21:32,1,5 100 12809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307416000,5.006489,16.285714
-2025-08-12 12:21:37,1,5 1 12809000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1319327000,5.028840,3.811671
-2025-08-12 12:21:43,3,5 1 12809000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1319327000,5.028207,3.811191
-2025-08-12 12:21:48,5,5 1 12809000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1319327000,5.024052,3.808042
-2025-08-12 12:21:54,5,5 10000 401 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1158890000,5.003828,4.317776
-2025-08-12 12:21:59,5,5 100 25601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211926400,5.001701,2.261242
-2025-08-12 12:22:04,4,5 1000000 1 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2203000000,5.001782,2.270441
-2025-08-12 12:22:09,4,5 1 409609000 -1 -1 0  ,
-2025-08-12 12:22:24,1,5 1000000 7 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.051794,17.182973
-2025-08-12 12:22:29,1,5 10000 211 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310170000,5.025569,16.202628
-2025-08-12 12:22:34,2,5 100000 53 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291500000,5.024100,17.235334
-2025-08-12 12:22:39,3,5 100 25601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1262129300,5.005394,3.965833
-2025-08-12 12:22:44,5,5 100 12809 -1 -1 0  ,
-2025-08-12 12:22:44,1,5 1 6553621 -1 -1 0  ,
-2025-08-12 12:22:44,2,5 10 409609 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299014570,5.007011,16.745040
-2025-08-12 12:22:50,2,5 1000000 1 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2203000000,5.001184,2.270170
-2025-08-12 12:22:55,1,5 100 12809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1236068500,5.005048,4.049167
-2025-08-12 12:23:00,2,5 1000 3203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2213273000,5.001711,2.259871
-2025-08-12 12:23:05,1,5 10000 211 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1116190000,5.003950,4.483063
-2025-08-12 12:23:10,5,5 1000000 1 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1928000000,5.001499,2.594138
-2025-08-12 12:23:15,2,5 1 409609000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1638436000,6.279506,3.832622
-2025-08-12 12:23:38,4,5 1000000 3 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2319000000,5.002481,2.157172
-2025-08-12 12:23:43,5,5 1 25601000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2201686000,5.031216,2.285165
-2025-08-12 12:23:49,3,5 10 102407 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1594476990,5.002747,3.137547
-2025-08-12 12:23:54,5,5 1000000 1 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,306000000,5.005595,16.358154
-2025-08-12 12:23:59,3,5 1000 3203 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1595094000,5.005123,3.137823
-2025-08-12 12:24:04,5,5 1000 6473 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1203978000,5.008312,4.159804
-2025-08-12 12:24:09,4,5 10 409609 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2199600330,5.002090,2.274090
-2025-08-12 12:24:14,5,5 1 12809000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1588316000,5.008140,3.153113
-2025-08-12 12:24:20,2,5 100 51203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,317458600,5.071296,15.974669
-2025-08-12 12:24:25,4,5 1 204803000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,7.829338,38.228629
-2025-08-12 12:24:42,4,5 1000 6473 -1 -1 0  ,
-2025-08-12 12:24:42,2,5 10 204803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2195488160,5.001291,2.277986
-2025-08-12 12:24:47,1,5 1 102407000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204814000,5.713815,27.897580
-2025-08-12 12:24:58,2,5 10000 211 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2181740000,5.003568,2.293384
-2025-08-12 12:25:03,5,5 1 1638431 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1589278070,5.000758,3.146559
-2025-08-12 12:25:08,3,5 10 819229 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286730150,5.088620,17.747070
-2025-08-12 12:25:13,2,5 100 25601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211926400,5.000547,2.260720
-2025-08-12 12:25:18,1,5 10000 211 -1 -1 0  ,
-2025-08-12 12:25:18,2,5 10 102407 -1 -1 0  ,
-2025-08-12 12:25:19,2,5 10 409609 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2203696420,5.007797,2.272453
-2025-08-12 12:25:24,2,5 1 6553621 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1317277821,5.011508,3.804443
-2025-08-12 12:25:29,3,5 1 6553621 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1323831442,5.021050,3.792817
-2025-08-12 12:25:34,5,5 100 12809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1236068500,5.003941,4.048272
-2025-08-12 12:25:39,5,5 100000 13 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1615900000,5.003701,3.096541
-2025-08-12 12:25:45,3,5 100000 29 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,290000000,5.004766,17.257814
-2025-08-12 12:25:50,4,5 10 819229 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1318958690,5.026343,3.810842
-2025-08-12 12:25:55,4,5 100000 29 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1629800000,5.006174,3.071649
-2025-08-12 12:26:00,2,5 1 409609000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,15.524386,37.900500
-2025-08-12 12:26:34,2,5 10 409609 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1302556620,5.001397,3.839677
-2025-08-12 12:26:39,4,5 10000 401 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1162900000,5.013106,4.310866
-2025-08-12 12:26:45,2,5 10000 809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2216660000,5.004276,2.257575
-2025-08-12 12:26:50,2,5 100000 29 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1629800000,5.005444,3.071201
-2025-08-12 12:26:55,2,5 10000 401 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1166910000,5.001848,4.286404
-2025-08-12 12:27:00,2,5 10 819229 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286730150,5.019293,17.505285
-2025-08-12 12:27:05,4,5 10 102407 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,306196930,5.009308,16.359759
-2025-08-12 12:27:10,5,5 1000000 7 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2212000000,5.015525,2.267416
-2025-08-12 12:27:15,3,5 100 51203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,312338300,5.006119,16.027874
-2025-08-12 12:27:20,5,5 10 204803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1298451020,5.005472,3.854956
-2025-08-12 12:27:25,4,5 100 25601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1262129300,5.001331,3.962614
-2025-08-12 12:27:30,1,5 100000 29 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2412800000,5.000062,2.072307
-2025-08-12 12:27:35,5,5 10 204803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301060410,5.024623,16.689750
-2025-08-12 12:27:41,4,5 10 204803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1298451020,5.003240,3.853237
-2025-08-12 12:27:46,3,5 1000 1601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1136710000,5.006883,4.404714
-2025-08-12 12:27:51,5,5 100000 13 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,308100000,5.002648,16.237092
-2025-08-12 12:27:56,1,5 1 409609000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1228827000,5.830346,4.744643
-2025-08-12 12:28:15,2,5 1 51203000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331278000,5.097525,3.829046
-2025-08-12 12:28:22,3,5 1 3276803 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1589249455,5.001753,3.147242
-2025-08-12 12:28:27,4,5 1 25601000 -1 -1 0  ,
-2025-08-12 12:28:28,2,5 1000000 3 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2655000000,5.000467,1.883415
-2025-08-12 12:28:33,1,5 10000 401 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2221540000,5.008776,2.254641
-2025-08-12 12:28:38,5,5 1000000 7 -1 -1 0  ,
-2025-08-12 12:28:38,1,5 1000000 3 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,3384000000,5.002929,1.478407
-2025-08-12 12:28:43,1,5 1000 3203 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1595094000,5.005247,3.137901
-2025-08-12 12:28:48,5,5 100000 29 -1 -1 0  ,
-2025-08-12 12:28:49,3,5 100 12809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2212114300,5.000925,2.260699
-2025-08-12 12:28:54,2,5 1000000 7 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.052810,17.186429
-2025-08-12 12:28:59,1,5 1000000 7 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2863000000,5.011929,1.750586
-2025-08-12 12:29:04,5,5 1000000 1 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2567000000,5.000332,1.947928
-2025-08-12 12:29:09,4,5 100 25601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211926400,5.000346,2.260629
-2025-08-12 12:29:14,1,5 10000 809 -1 -1 0  ,
-2025-08-12 12:29:14,4,5 1 6553621 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1323831442,5.022788,3.794130
-2025-08-12 12:29:19,4,5 1 12809000 -1 -1 0  ,
-2025-08-12 12:29:20,1,5 10 819229 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2203726010,5.009463,2.273179
-2025-08-12 12:29:25,5,5 1 12809000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2203148000,5.020095,2.278601
-2025-08-12 12:29:31,4,5 10000 809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2216660000,5.005222,2.258002
-2025-08-12 12:29:36,2,5 10000 211 -1 -1 0  ,
-2025-08-12 12:29:36,2,5 1 25601000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331252000,5.080404,3.816260
-2025-08-12 12:29:42,4,5 1000 3203 -1 -1 0  ,
-2025-08-12 12:29:42,5,5 10000 401 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2221540000,5.008285,2.254420
-2025-08-12 12:29:47,3,5 10000 101 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2272500000,5.000183,2.200301
-2025-08-12 12:29:52,4,5 1 1638431 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281810132,5.004659,17.758975
-2025-08-12 12:29:58,1,5 1 3276803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291635467,5.008629,17.174279
-2025-08-12 12:30:03,4,5 1000 3203 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1595094000,5.005677,3.138171
-2025-08-12 12:30:08,5,5 10 102407 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,305172860,5.001084,16.387709
-2025-08-12 12:30:13,2,5 1000 6473 -1 -1 0  ,
-2025-08-12 12:30:13,4,5 1 6553621 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2195463035,5.001307,2.278019
-2025-08-12 12:30:18,1,5 10000 401 -1 -1 0  ,
-2025-08-12 12:30:18,3,5 100 12809 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1592158700,5.000068,3.140433
-2025-08-12 12:30:24,1,5 1 6553621 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1592529903,5.011518,3.146891
-2025-08-12 12:30:29,2,5 1 1638431 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1314021662,5.001197,3.806023
-2025-08-12 12:30:34,1,5 1 1638431 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281810132,5.008061,17.771047
-2025-08-12 12:30:39,4,5 100 12809 -1 -1 0  ,
-2025-08-12 12:30:39,2,5 100 25601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1262129300,5.004685,3.965271
-2025-08-12 12:30:44,4,5 1000 6473 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1203978000,5.000667,4.153454
-2025-08-12 12:30:49,4,5 10 409609 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1302556620,5.002910,3.840839
-2025-08-12 12:30:55,3,5 1000 3203 -1 -1 0  ,
-2025-08-12 12:30:55,4,5 1 12809000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1319327000,5.017514,3.803086
-2025-08-12 12:31:00,5,5 10 409609 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1302556620,5.000336,3.838863
-2025-08-12 12:31:05,5,5 1 1638431 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1315660093,5.003380,3.802943
-2025-08-12 12:31:10,3,5 10 409609 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593379010,5.001155,3.138710
-2025-08-12 12:31:16,3,5 10000 809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307420000,5.065780,16.478368
-2025-08-12 12:31:21,5,5 100000 29 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1505100000,5.002331,3.323587
-2025-08-12 12:31:26,2,5 100 12809 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593439600,5.003747,3.140218
-2025-08-12 12:31:31,2,5 100000 13 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2007200000,5.002992,2.492523
-2025-08-12 12:31:36,3,5 1000000 1 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2203000000,5.001606,2.270361
-2025-08-12 12:31:41,3,5 1 51203000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1587293000,5.029416,3.168549
-2025-08-12 12:31:48,4,5 10 409609 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593379010,5.001161,3.138714
-2025-08-12 12:31:53,3,5 100 25601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307212000,5.015891,16.327132
-2025-08-12 12:31:58,5,5 1 102407000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2252954000,5.160136,2.290387
-2025-08-12 12:32:07,3,5 10 819229 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1318958690,5.029169,3.812984
-2025-08-12 12:32:13,2,5 1 3276803 -1 -1 0  ,
-2025-08-12 12:32:13,2,5 1000 6473 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,317177000,5.069573,15.983419
-2025-08-12 12:32:18,2,5 1 204803000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,7.739810,37.791487
-2025-08-12 12:32:35,2,5 10000 809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1084060000,5.006819,4.618581
-2025-08-12 12:32:40,4,5 1000000 7 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.052970,17.186973
-2025-08-12 12:32:45,5,5 1000 1601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1136710000,5.007007,4.404824
-2025-08-12 12:32:50,4,5 10000 401 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,292730000,5.040831,17.220070
-2025-08-12 12:32:55,5,5 1 51203000 -1 -1 0  ,
-2025-08-12 12:32:57,1,5 100000 13 -1 -1 0  ,
-2025-08-12 12:32:57,5,5 100 12809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2212114300,5.001286,2.260862
-2025-08-12 12:33:03,4,5 1 6553621 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1592529903,5.017703,3.150775
-2025-08-12 12:33:08,3,5 1 12809000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1588316000,5.008398,3.153276
-2025-08-12 12:33:13,3,5 10000 401 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304760000,5.046386,16.558558
-2025-08-12 12:33:19,5,5 10 204803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2197536190,5.003353,2.276801
-2025-08-12 12:33:24,3,5 1 3276803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2198734813,5.004299,2.275990
-2025-08-12 12:33:29,4,5 1 25601000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256010000,5.068642,19.798609
-2025-08-12 12:33:35,2,5 10000 101 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1428140000,5.002275,3.502650
-2025-08-12 12:33:40,4,5 10000 101 -1 -1 0  ,
-2025-08-12 12:33:40,3,5 1 1638431 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,288363856,5.028204,17.437012
-2025-08-12 12:33:46,2,5 10000 809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291240000,5.011467,17.207344
-2025-08-12 12:33:51,5,5 10 102407 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593452920,5.000921,3.138418
-2025-08-12 12:33:56,5,5 10000 211 -1 -1 0  ,
-2025-08-12 12:33:56,2,5 100000 29 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2415700000,5.004127,2.071502
-2025-08-12 12:34:01,4,5 10000 101 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1433190000,5.003572,3.491213
-2025-08-12 12:34:06,2,5 10 819229 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2203726010,5.014615,2.275517
-2025-08-12 12:34:11,2,5 1 204803000 -1 -1 0  ,
-2025-08-12 12:34:18,2,5 1 12809000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,268989000,5.023038,18.673767
-2025-08-12 12:34:24,2,5 10000 401 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,292730000,5.062309,17.293441
-2025-08-12 12:34:29,4,5 10 102407 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593452920,5.000039,3.137864
-2025-08-12 12:34:34,1,5 1 3276803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1317274806,5.006009,3.800277
-2025-08-12 12:34:40,2,5 1 409609000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2457654000,5.631307,2.291334
-2025-08-12 12:35:02,3,5 100 25601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211926400,5.000727,2.260802
-2025-08-12 12:35:07,3,5 1000000 1 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304000000,5.008558,16.475520
-2025-08-12 12:35:12,5,5 1 6553621 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1317277821,5.014578,3.806773
-2025-08-12 12:35:17,5,5 1 3276803 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1589249455,5.001783,3.147261
-2025-08-12 12:35:22,2,5 1000 6473 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1598831000,5.009825,3.133430
-2025-08-12 12:35:28,2,5 1 3276803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,285081861,5.005217,17.557122
-2025-08-12 12:35:33,2,5 1 51203000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1587293000,5.029236,3.168436
-2025-08-12 12:35:40,3,5 1000000 7 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2884000000,5.004146,1.735141
-2025-08-12 12:35:45,4,5 1 102407000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204814000,5.688207,27.772550
-2025-08-12 12:35:55,1,5 1000 3203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1153080000,5.010677,4.345472
-2025-08-12 12:36:00,1,5 100 51203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1280075000,5.004570,3.909591
-2025-08-12 12:36:05,4,5 100000 29 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2415700000,5.004480,2.071648
-2025-08-12 12:36:10,5,5 100000 13 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1678300000,5.002830,2.980891
-2025-08-12 12:36:15,4,5 1 102407000 -1 -1 0  ,
-2025-08-12 12:36:19,2,5 1000000 7 -1 -1 0  ,
-2025-08-12 12:36:19,3,5 10000 401 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2221540000,5.008945,2.254717
-2025-08-12 12:36:24,1,5 10000 101 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2273510000,5.001392,2.199855
-2025-08-12 12:36:29,4,5 100 51203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211969600,5.000449,2.260632
-2025-08-12 12:36:35,2,5 100 12809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2212114300,5.001929,2.261153
-2025-08-12 12:36:40,3,5 10000 211 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1514980000,5.005218,3.303818
-2025-08-12 12:36:45,3,5 10000 809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2216660000,5.003480,2.257216
-2025-08-12 12:36:50,1,5 1000 1601 -1 -1 0  ,
-2025-08-12 12:36:50,3,5 1000000 3 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.001034,17.185684
-2025-08-12 12:36:55,5,5 10000 101 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,312090000,5.010666,16.055196
-2025-08-12 12:37:00,4,5 10000 401 -1 -1 0  ,
-2025-08-12 12:37:00,5,5 1000 1601 -1 -1 0  ,
-2025-08-12 12:37:00,3,5 1 204803000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638424000,5.202885,3.175542
-2025-08-12 12:37:12,1,5 10000 211 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1519200000,5.003531,3.293530
-2025-08-12 12:37:17,5,5 1 204803000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2252833000,5.160106,2.290496
-2025-08-12 12:37:31,2,5 10 409609 -1 -1 0  ,
-2025-08-12 12:37:31,2,5 1000000 3 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,3390000000,5.001396,1.475338
-2025-08-12 12:37:36,2,5 1 25601000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256010000,5.061326,19.770032
-2025-08-12 12:37:42,4,5 1 25601000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1587262000,5.012805,3.158146
-2025-08-12 12:37:48,1,5 1 409609000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,15.550811,37.965013
-2025-08-12 12:38:22,1,5 1000 3203 -1 -1 0  ,
-2025-08-12 12:38:22,1,5 10000 401 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1166910000,5.009891,4.293297
-2025-08-12 12:38:27,3,5 1 204803000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1433621000,5.497234,3.834510
-2025-08-12 12:38:41,5,5 1 204803000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1228818000,5.826354,4.741430
-2025-08-12 12:38:54,2,5 10 102407 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211991200,5.002039,2.261329
-2025-08-12 12:38:59,2,5 1000 6473 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1203978000,5.005524,4.157488
-2025-08-12 12:39:04,1,5 100000 29 -1 -1 0  ,
-2025-08-12 12:39:04,2,5 1 12809000 -1 -1 0  ,
-2025-08-12 12:39:04,2,5 1000000 1 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302000000,5.008664,16.584980
-2025-08-12 12:39:09,1,5 1000 1601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1136710000,5.004028,4.402203
-2025-08-12 12:39:14,3,5 10000 211 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2185960000,5.004064,2.289184
-2025-08-12 12:39:20,5,5 1000000 3 -1 -1 0  ,
-2025-08-12 12:39:20,1,5 1 6553621 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1317277821,5.007835,3.801654
-2025-08-12 12:39:25,4,5 1000000 1 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2567000000,5.000435,1.947968
-2025-08-12 12:39:30,3,5 1 1638431 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2193859109,5.000600,2.279362
-2025-08-12 12:39:35,4,5 100 25601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304651900,5.026953,16.500645
-2025-08-12 12:39:40,4,5 10 204803 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1595415370,5.005963,3.137718
-2025-08-12 12:39:45,5,5 1 25601000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331252000,5.077315,3.813940
-2025-08-12 12:39:52,4,5 10000 211 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1118300000,5.008587,4.478751
-2025-08-12 12:39:57,4,5 1000 6473 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,317177000,5.093109,16.057624
-2025-08-12 12:40:02,1,5 100000 53 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1409800000,5.008517,3.552644
-2025-08-12 12:40:07,4,5 1000 1601 -1 -1 0  ,
-2025-08-12 12:40:07,1,5 1 204803000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2252833000,5.157219,2.289215
-2025-08-12 12:40:20,3,5 10 819229 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1376304720,5.003352,3.635352
-2025-08-12 12:40:26,4,5 1 1638431 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1315660093,5.001924,3.801836
-2025-08-12 12:40:31,3,5 10000 809 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1585640000,5.013539,3.161839
-2025-08-12 12:40:36,4,5 1 51203000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1587293000,5.028956,3.168259
-2025-08-12 12:40:43,4,5 100000 13 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,270400000,5.003062,18.502448
-2025-08-12 12:40:48,1,5 100000 53 -1 -1 0  ,
-2025-08-12 12:40:48,3,5 10 409609 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1306652710,5.013156,3.836640
-2025-08-12 12:40:53,1,5 1000000 3 -1 -1 0  ,
-2025-08-12 12:40:53,3,5 1 3276803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281805058,5.035891,17.870123
-2025-08-12 12:40:58,4,5 10000 809 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1585640000,5.011804,3.160745
-2025-08-12 12:41:03,1,5 10 409609 -1 -1 0  ,
-2025-08-12 12:41:03,3,5 1000000 3 -1 -1 0  ,
-2025-08-12 12:41:04,5,5 100000 29 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,290000000,5.003409,17.253134
-2025-08-12 12:41:09,5,5 10000 101 -1 -1 0  ,
-2025-08-12 12:41:09,5,5 1 12809000 -1 -1 0  ,
-2025-08-12 12:41:09,4,5 10000 101 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2273510000,5.001185,2.199764
-2025-08-12 12:41:14,4,5 1000000 1 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1928000000,5.002465,2.594640
-2025-08-12 12:41:20,5,5 10 102407 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2210967130,5.000430,2.261648
-2025-08-12 12:41:25,5,5 1 409609000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1638436000,6.275763,3.830338
-2025-08-12 12:41:47,5,5 100 25601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1262129300,5.007240,3.967296
-2025-08-12 12:41:52,1,5 10 204803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,296964350,5.014759,16.886737
-2025-08-12 12:41:57,2,5 10 102407 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307221000,5.011910,16.313696
-2025-08-12 12:42:03,4,5 10 102407 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1291352270,5.003580,3.874682
-2025-08-12 12:42:08,2,5 100 51203 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1597533600,5.011915,3.137283
-2025-08-12 12:42:13,2,5 1000 1601 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1589793000,5.003134,3.147035
-2025-08-12 12:42:18,4,5 1000 3203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2213273000,5.004320,2.261050
-2025-08-12 12:42:23,1,5 1 12809000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2190339000,5.003217,2.284220
-2025-08-12 12:42:29,4,5 100000 13 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1995500000,5.001619,2.506449
-2025-08-12 12:42:34,2,5 1 1638431 -1 -1 0  ,
-2025-08-12 12:42:34,4,5 1 3276803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281805058,5.011836,17.784762
-2025-08-12 12:42:39,3,5 1000000 1 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2567000000,5.000208,1.947880
-2025-08-12 12:42:44,5,5 10000 101 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2273510000,5.001902,2.200079
-2025-08-12 12:42:49,2,5 100000 13 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1678300000,5.002232,2.980535
-2025-08-12 12:42:54,1,5 100 25601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307212000,5.011256,16.312045
-2025-08-12 12:42:59,2,5 1 1638431 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286725425,5.013836,17.486541
-2025-08-12 12:43:04,5,5 10000 401 -1 -1 0  ,
-2025-08-12 12:43:05,3,5 1000000 7 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2205000000,5.000852,2.267960
-2025-08-12 12:43:10,5,5 1000 6473 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2213766000,5.003770,2.260298
-2025-08-12 12:43:15,1,5 1000000 7 -1 -1 0  ,
-2025-08-12 12:43:15,5,5 1000000 3 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2316000000,5.000291,2.159020
-2025-08-12 12:43:20,2,5 1 6553621 -1 -1 0  ,
-2025-08-12 12:43:20,2,5 10000 401 -1 -1 0  ,
-2025-08-12 12:43:20,1,5 10 409609 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1306652710,5.013057,3.836564
-2025-08-12 12:43:25,5,5 1 51203000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256015000,5.619827,21.951163
-2025-08-12 12:43:34,1,5 10 204803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2197536190,5.001618,2.276012
-2025-08-12 12:43:39,2,5 1 1638431 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2197135971,5.000418,2.275880
-2025-08-12 12:43:44,1,5 10000 809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2216660000,5.004480,2.257667
-2025-08-12 12:43:49,4,5 10000 101 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,997880000,5.001335,5.011960
-2025-08-12 12:43:54,3,5 1 3276803 -1 -1 0  ,
-2025-08-12 12:43:54,2,5 10000 401 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1559890000,5.002933,3.207234
-2025-08-12 12:43:59,3,5 10 409609 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2199600330,5.006251,2.275982
-2025-08-12 12:44:04,5,5 1 6553621 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1592529903,5.016505,3.150022
-2025-08-12 12:44:10,3,5 100000 53 -1 -1 0  ,
-2025-08-12 12:44:10,3,5 1000000 7 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.053774,17.189707
-2025-08-12 12:44:15,1,5 1 25601000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1587262000,5.015097,3.159590
-2025-08-12 12:44:21,1,5 1 25601000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256010000,5.063218,19.777423
-2025-08-12 12:44:27,2,5 1 102407000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638512000,5.197152,3.171873
-2025-08-12 12:44:36,1,5 100 25601 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1594942300,5.004768,3.137899
-2025-08-12 12:44:41,3,5 100000 29 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2415700000,5.005070,2.071892
-2025-08-12 12:44:46,1,5 100 25601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211926400,5.000835,2.260851
-2025-08-12 12:44:51,5,5 1 25601000 -1 -1 0  ,
-2025-08-12 12:44:52,5,5 100 51203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1285195300,5.019146,3.905357
-2025-08-12 12:44:57,4,5 1 6553621 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281805703,5.086183,18.048545
-2025-08-12 12:45:02,5,5 1 204803000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1433621000,5.496294,3.833854
-2025-08-12 12:45:16,2,5 10000 211 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1517090000,5.001051,3.296476
-2025-08-12 12:45:21,3,5 1000 6473 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,317177000,5.054842,15.936975
-2025-08-12 12:45:27,1,5 10000 211 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2183850000,5.000496,2.289762
-2025-08-12 12:45:32,4,5 1 409609000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2457654000,5.629663,2.290665
-2025-08-12 12:45:54,5,5 10000 809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1084060000,5.016409,4.627427
-2025-08-12 12:45:59,3,5 1000 6473 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2213766000,5.004049,2.260424
-2025-08-12 12:46:04,2,5 100 12809 -1 -1 0  ,
-2025-08-12 12:46:04,1,5 1 12809000 -1 -1 0  ,
-2025-08-12 12:46:05,3,5 100000 29 -1 -1 0  ,
-2025-08-12 12:46:05,4,5 100 51203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,296977400,5.029962,16.937188
-2025-08-12 12:46:10,3,5 10 409609 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294918480,5.059473,17.155497
-2025-08-12 12:46:15,5,5 1000 6473 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1598831000,5.009770,3.133396
-2025-08-12 12:46:20,4,5 1 51203000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331278000,5.099983,3.830893
-2025-08-12 12:46:27,3,5 10 819229 -1 -1 0  ,
-2025-08-12 12:46:27,3,5 1000 1601 -1 -1 0  ,
-2025-08-12 12:46:27,2,5 1 12809000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2203148000,5.017981,2.277641
-2025-08-12 12:46:33,3,5 1 409609000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2457654000,5.628707,2.290276
-2025-08-12 12:46:55,1,5 1 102407000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638512000,5.197881,3.172318
-2025-08-12 12:47:04,5,5 1 1638431 -1 -1 0  ,
-2025-08-12 12:47:04,5,5 100000 13 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2015000000,5.002641,2.482700
-2025-08-12 12:47:09,4,5 1 409609000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638436000,5.208933,3.179211
-2025-08-12 12:47:27,4,5 1 1638431 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1063341719,5.007222,4.708949
-2025-08-12 12:47:32,4,5 1 25601000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2201686000,5.028999,2.284158
-2025-08-12 12:47:38,3,5 1 25601000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2201686000,5.034461,2.286639
-2025-08-12 12:47:45,3,5 100 25601 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1594942300,5.004526,3.137747
-2025-08-12 12:47:50,1,5 1000000 1 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2203000000,5.001490,2.270309
-2025-08-12 12:47:55,4,5 1 204803000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1433621000,5.497642,3.834795
-2025-08-12 12:48:09,2,5 100 12809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1234787600,5.004839,4.053198
-2025-08-12 12:48:14,4,5 1000000 3 -1 -1 0  ,
-2025-08-12 12:48:14,4,5 1000000 7 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2121000000,5.010856,2.362497
-2025-08-12 12:48:19,1,5 10 204803 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593367340,5.000516,3.138332
-2025-08-12 12:48:24,5,5 1 12809000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,268989000,5.000673,18.590623
-2025-08-12 12:48:30,4,5 100000 53 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1409800000,5.007747,3.552097
-2025-08-12 12:48:35,5,5 1 3276803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1317274806,5.003903,3.798678
-2025-08-12 12:48:40,1,5 1000000 3 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2658000000,5.004549,1.882825
-2025-08-12 12:48:45,2,5 10000 211 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291180000,5.020307,17.241249
-2025-08-12 12:48:50,2,5 1000 3203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1149877000,5.001721,4.349788
-2025-08-12 12:48:55,4,5 10 204803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2197536190,5.001426,2.275924
-2025-08-12 12:49:00,4,5 10000 809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1084060000,5.018452,4.629312
-2025-08-12 12:49:05,1,5 10 819229 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294922440,5.139696,17.427280
-2025-08-12 12:49:11,5,5 1000000 7 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301000000,5.058696,16.806299
-2025-08-12 12:49:16,1,5 10 204803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1298451020,5.006160,3.855486
-2025-08-12 12:49:21,1,5 1000000 3 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.000807,17.184904
-2025-08-12 12:49:26,4,5 100000 13 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1678300000,5.001915,2.980346
-2025-08-12 12:49:31,3,5 1 409609000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1228827000,5.804207,4.723372
-2025-08-12 12:49:50,1,5 100 12809 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1592158700,5.000181,3.140504
-2025-08-12 12:49:55,4,5 1 3276803 -1 -1 0  ,
-2025-08-12 12:49:55,3,5 1 204803000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,7.719941,37.694472
-2025-08-12 12:50:12,3,5 1 102407000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331291000,5.094260,3.826556
-2025-08-12 12:50:21,1,5 100 51203 -1 -1 0  ,
-2025-08-12 12:50:22,1,5 10000 401 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,292730000,5.064047,17.299378
-2025-08-12 12:50:27,3,5 1 12809000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281798000,5.218695,18.519276
-2025-08-12 12:50:33,3,5 1 102407000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2252954000,5.167692,2.293741
-2025-08-12 12:50:42,1,5 1 6553621 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281805703,5.060482,17.957344
-2025-08-12 12:50:47,1,5 10 102407 -1 -1 0  ,
-2025-08-12 12:50:48,3,5 10000 809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1084060000,5.009706,4.621244
-2025-08-12 12:50:53,1,5 1000 6473 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1598831000,5.008892,3.132846
-2025-08-12 12:50:58,2,5 1 3276803 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1589249455,5.002317,3.147597
-2025-08-12 12:51:03,3,5 10000 401 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1563900000,5.010726,3.203994
-2025-08-12 12:51:08,2,5 100000 53 -1 -1 0  ,
-2025-08-12 12:51:08,5,5 1 204803000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,7.740213,37.793455
-2025-08-12 12:51:25,4,5 100000 53 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2332000000,5.007041,2.147102
-2025-08-12 12:51:30,3,5 1000 6473 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1598831000,5.009301,3.133102
-2025-08-12 12:51:35,2,5 100 12809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,288202500,5.001580,17.354395
-2025-08-12 12:51:41,3,5 1000000 7 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2121000000,5.015192,2.364541
-2025-08-12 12:51:46,1,5 100000 53 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2332000000,5.007147,2.147147
-2025-08-12 12:51:51,3,5 1000 3203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310691000,5.015936,16.144452
-2025-08-12 12:51:56,1,5 100 51203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,296977400,5.043130,16.981528
-2025-08-12 12:52:01,4,5 1 204803000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1638424000,5.200995,3.174389
-2025-08-12 12:52:13,1,5 1 12809000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1588316000,5.008359,3.153251
-2025-08-12 12:52:18,3,5 1 25601000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1587262000,5.014144,3.158990
-2025-08-12 12:52:24,2,5 10 409609 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593379010,5.000248,3.138141
-2025-08-12 12:52:29,3,5 1000000 1 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,3026000000,5.000857,1.652630
-2025-08-12 12:52:34,3,5 1000 1601 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1589793000,5.002992,3.146946
-2025-08-12 12:52:39,2,5 1 3276803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2198734813,5.001629,2.274776
-2025-08-12 12:52:45,3,5 100000 13 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,313300000,5.001848,15.965043
-2025-08-12 12:52:50,3,5 10000 211 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286960000,5.005447,17.443013
-2025-08-12 12:52:55,4,5 1 12809000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2203148000,5.020617,2.278838
-2025-08-12 12:53:00,2,5 1000 1601 -1 -1 0  ,
-2025-08-12 12:53:00,4,5 1 3276803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2195458010,5.004298,2.279387
-2025-08-12 12:53:06,5,5 1000 3203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2213273000,5.001870,2.259943
-2025-08-12 12:53:11,5,5 10 819229 -1 -1 0  ,
-2025-08-12 12:53:11,3,5 1 1638431 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1315660093,5.003861,3.803308
-2025-08-12 12:53:16,3,5 1 6553621 -1 -1 0  ,
-2025-08-12 12:53:16,5,5 1000000 1 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2203000000,5.001174,2.270165
-2025-08-12 12:53:21,1,5 100000 13 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2000700000,5.001564,2.499907
-2025-08-12 12:53:27,4,5 1000000 7 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2205000000,5.002252,2.268595
-2025-08-12 12:53:32,1,5 10 102407 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1594476990,5.003080,3.137756
-2025-08-12 12:53:37,3,5 1 3276803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1317274806,5.008725,3.802339
-2025-08-12 12:53:42,3,5 100000 53 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,312700000,5.035697,16.103924
-2025-08-12 12:53:47,3,5 1 51203000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2201729000,5.055618,2.296204
-2025-08-12 12:53:54,5,5 10000 211 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291180000,5.028879,17.270688
-2025-08-12 12:53:59,5,5 10000 809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2216660000,5.004849,2.257833
-2025-08-12 12:54:04,4,5 10 819229 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1597496550,5.018718,3.141614
-2025-08-12 12:54:10,1,5 1 12809000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,268989000,5.005392,18.608166
-2025-08-12 12:54:15,4,5 1000000 1 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,3021000000,5.001370,1.655535
-2025-08-12 12:54:20,5,5 1 1638431 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2197135971,5.000206,2.275784
-2025-08-12 12:54:26,3,5 1 1638431 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1590916501,5.004105,3.145423
-2025-08-12 12:54:31,5,5 1000 3203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1149877000,5.007796,4.355071
-2025-08-12 12:54:36,5,5 100 25601 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1594942300,5.005069,3.138088
-2025-08-12 12:54:41,5,5 1 51203000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1587293000,5.028375,3.167893
-2025-08-12 12:54:48,5,5 1000 3203 -1 -1 0  ,
-2025-08-12 12:54:48,3,5 10000 101 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301990000,5.007576,16.581927
-2025-08-12 12:54:53,1,5 100000 13 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1617200000,5.000510,3.092079
-2025-08-12 12:54:58,3,5 10000 211 -1 -1 0  ,
-2025-08-12 12:54:58,3,5 10 409609 -1 -1 0  ,
-2025-08-12 12:54:58,3,5 100 51203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211969600,5.000612,2.260706
-2025-08-12 12:55:03,1,5 10 102407 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211991200,5.002201,2.261402
-2025-08-12 12:55:08,2,5 10 102407 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1593452920,5.000105,3.137906
-2025-08-12 12:55:13,3,5 10 102407 -1 -1 0  ,
-2025-08-12 12:55:13,3,5 10000 101 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1431170000,5.001601,3.494764
-2025-08-12 12:55:19,5,5 10 102407 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1291352270,5.000794,3.872525
-2025-08-12 12:55:24,4,5 1 12809000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281798000,5.208217,18.482094
-2025-08-12 12:55:30,5,5 10 409609 -1 -1 0  ,
-2025-08-12 12:55:30,3,5 100000 29 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1505100000,5.001848,3.323266
-2025-08-12 12:55:35,2,5 1 102407000 -1 -1 0  ,
-2025-08-12 12:55:38,5,5 100 51203 -1 -1 0  ,
-2025-08-12 12:55:39,4,5 1 204803000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2252833000,5.164264,2.292342
-2025-08-12 12:55:52,2,5 100000 13 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,273000000,5.013852,18.365758
-2025-08-12 12:55:57,3,5 10000 809 -1 -1 0  ,
-2025-08-12 12:55:57,3,5 1000000 3 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,3384000000,5.003341,1.478529
-2025-08-12 12:56:02,3,5 100 12809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,292045200,5.006924,17.144346
-2025-08-12 12:56:07,4,5 1 51203000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256015000,5.647099,22.057688
-2025-08-12 12:56:15,5,5 1000 1601 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1589793000,5.003173,3.147059
-2025-08-12 12:56:20,2,5 1000000 7 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2212000000,5.014153,2.266796
-2025-08-12 12:56:26,5,5 1 51203000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2201729000,5.055669,2.296227
-2025-08-12 12:56:33,2,5 10 819229 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1318958690,5.030699,3.814144
-2025-08-12 12:56:38,3,5 10 204803 -1 -1 0  ,
-2025-08-12 12:56:38,5,5 100000 53 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2332000000,5.006794,2.146996
-2025-08-12 12:56:43,3,5 1 51203000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1331278000,5.096789,3.828493
-2025-08-12 12:56:50,1,5 1 51203000 -1 -1 0  ,
-2025-08-12 12:56:52,1,5 1 3276803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2198734813,5.007285,2.277348
-2025-08-12 12:56:57,1,5 1 102407000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2252954000,5.154355,2.287821
-2025-08-12 12:57:07,5,5 100000 53 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1409800000,5.010781,3.554250
-2025-08-12 12:57:12,1,5 1000 6473 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,297758000,5.028951,16.889390
-2025-08-12 12:57:17,3,5 10 204803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2199584220,5.001513,2.273845
-2025-08-12 12:57:22,4,5 1 12809000 -1 -1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1588316000,5.010073,3.154330
-2025-08-12 12:57:28,2,5 10 204803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1298451020,5.004333,3.854079
-2025-08-12 12:57:33,1,5 1000 6473 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1203978000,5.012611,4.163374
-2025-08-12 12:57:38,2,5 10000 211 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1118300000,5.008724,4.478873
-2025-08-12 12:57:43,5,5 100 51203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2211969600,5.001045,2.260901
-2025-08-12 12:57:48,2,5 100 51203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1280075000,5.013470,3.916544
-2025-08-12 12:57:53,2,5 10000 809 -1 -1 0  ,
-2025-08-12 12:57:53,3,5 100000 13 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2002000000,5.001467,2.498235
-2025-08-12 12:57:58,3,5 100 51203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1280075000,5.000381,3.906319
-2025-08-12 12:58:03,5,5 100000 29 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2415700000,5.004819,2.071788
-2025-08-12 12:58:08,1,5 10 819229 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1310766400,5.001132,3.815426
+2025-08-27 12:52:07,5,5 10000 809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291240000,5.034835,17.287581
+2025-08-27 12:52:12,1,5 100000 53 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286200000,5.021723,17.546202
+2025-08-27 12:52:17,3,5 1 409609000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1638436000,6.535393,3.988800
+2025-08-27 12:52:36,4,5 100000 29 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,530700000,5.011133,9.442497
+2025-08-27 12:52:41,5,5 1 204803000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1433621000,5.719646,3.989650
+2025-08-27 12:52:54,1,5 100 51203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,476187900,5.043134,10.590639
+2025-08-27 12:52:59,2,5 1 25601000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1280050000,5.081006,3.969381
+2025-08-27 12:53:05,5,5 1000 6473 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,796179000,5.009816,6.292324
+2025-08-27 12:53:10,3,5 1 204803000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,7.893405,38.541452
+2025-08-27 12:53:26,4,5 10 102407 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,273426690,5.000949,18.289908
+2025-08-27 12:53:31,4,5 10000 211 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1038120000,5.009993,4.826025
+2025-08-27 12:53:36,2,5 1 102407000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204814000,5.805756,28.346480
+2025-08-27 12:53:46,1,5 100000 53 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1526400000,5.013099,3.284263
+2025-08-27 12:53:51,2,5 100 51203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302097700,5.078408,16.810482
+2025-08-27 12:53:56,2,5 1 1638431 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,788085311,5.009520,6.356571
+2025-08-27 12:54:02,3,5 1000000 1 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2203000000,5.002024,2.270551
+2025-08-27 12:54:07,3,5 100000 13 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1774500000,5.000537,2.817998
+2025-08-27 12:54:12,2,5 1000000 3 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1695000000,5.008476,2.954853
+2025-08-27 12:54:17,1,5 1000000 3 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,303000000,5.018874,16.563941
+2025-08-27 12:54:22,2,5 100 12809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,298449700,5.021298,16.824604
+2025-08-27 12:54:27,3,5 1 12809000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,268989000,5.106927,18.985635
+2025-08-27 12:54:33,4,5 1000000 1 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1926000000,5.000425,2.596275
+2025-08-27 12:54:38,3,5 10000 401 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304760000,5.013829,16.451729
+2025-08-27 12:54:43,3,5 1 1638431 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1264868732,5.001232,3.953953
+2025-08-27 12:54:48,3,5 10000 101 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,892840000,5.005484,5.606250
+2025-08-27 12:54:53,3,5 1 6553621 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1264848853,5.022476,3.970811
+2025-08-27 12:54:58,2,5 1 25601000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,947237000,5.139017,5.425271
+2025-08-27 12:55:05,1,5 1000000 1 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.002005,17.189021
+2025-08-27 12:55:10,1,5 1 204803000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,7.970109,38.915978
+2025-08-27 12:55:26,1,5 1 51203000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819248000,5.218930,6.370391
+2025-08-27 12:55:33,2,5 100000 53 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,927500000,5.009137,5.400687
+2025-08-27 12:55:38,4,5 1000 6473 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,479002000,5.018453,10.476894
+2025-08-27 12:55:44,1,5 1 204803000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819212000,5.229672,6.383783
+2025-08-27 12:55:58,4,5 10000 101 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1143320000,5.004174,4.376880
+2025-08-27 12:56:03,5,5 1 51203000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256015000,5.761066,22.502846
+2025-08-27 12:56:11,5,5 10000 101 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1476620000,5.001956,3.387436
+2025-08-27 12:56:16,5,5 1 102407000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,921663000,5.263877,5.711282
+2025-08-27 12:56:25,4,5 1 51203000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1280075000,5.094912,3.980167
+2025-08-27 12:56:32,1,5 1 6553621 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,681576584,5.028645,7.377960
+2025-08-27 12:56:37,1,5 100 25601 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1305651000,5.005607,3.833802
+2025-08-27 12:56:42,1,5 10 204803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,280580110,5.014375,17.871456
+2025-08-27 12:56:47,5,5 10000 101 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1142310000,5.000158,4.377234
+2025-08-27 12:56:52,3,5 100000 13 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1092000000,5.004592,4.582960
+2025-08-27 12:56:57,2,5 10000 401 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,284710000,5.000499,17.563482
+2025-08-27 12:57:02,3,5 1000000 7 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2086000000,5.002338,2.398053
+2025-08-27 12:57:07,5,5 100 25601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302091800,5.014274,16.598511
+2025-08-27 12:57:13,3,5 1 51203000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819248000,5.225601,6.378534
+2025-08-27 12:57:20,4,5 1000 3203 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1348463000,5.005801,3.712227
+2025-08-27 12:57:25,3,5 10 409609 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,798737550,5.023397,6.289171
+2025-08-27 12:57:30,5,5 1 25601000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,793631000,5.042491,6.353697
+2025-08-27 12:57:37,4,5 1 1638431 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,280171701,5.000523,17.848066
+2025-08-27 12:57:42,1,5 100 25601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,791070900,5.005168,6.327079
+2025-08-27 12:57:47,4,5 1 1638431 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,563620264,5.001981,8.874736
+2025-08-27 12:57:52,1,5 1000000 3 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2373000000,5.005289,2.109266
+2025-08-27 12:57:57,4,5 1 204803000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1024015000,6.127041,5.983351
+2025-08-27 12:58:11,3,5 10 819229 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,933921060,5.018067,5.373117
+2025-08-27 12:58:16,2,5 10000 809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,825180000,5.022550,6.086611
+2025-08-27 12:58:21,2,5 10000 211 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,871430000,5.004432,5.742781
+2025-08-27 12:58:26,5,5 1 102407000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1024070000,5.561933,5.431204
+2025-08-27 12:58:36,1,5 10 102407 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,489505460,5.006286,10.227232
+2025-08-27 12:58:41,1,5 1000000 3 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2010000000,5.007100,2.491095
+2025-08-27 12:58:46,1,5 10 204803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,808971850,5.009889,6.192909
+2025-08-27 12:58:51,2,5 1 6553621 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,792988141,5.032271,6.345960
+2025-08-27 12:58:56,4,5 1 12809000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,883821000,5.052280,5.716406
+2025-08-27 12:59:02,2,5 10000 211 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1017020000,5.008355,4.924539
+2025-08-27 12:59:07,5,5 1 6553621 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,792988141,5.029605,6.342598
+2025-08-27 12:59:12,5,5 1 1638431 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,278533270,5.008497,17.981683
+2025-08-27 12:59:17,2,5 100000 53 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,503500000,5.043887,10.017650
+2025-08-27 12:59:22,1,5 10000 401 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,866160000,5.021485,5.797410
+2025-08-27 12:59:28,4,5 10 102407 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,792630180,5.003555,6.312597
+2025-08-27 12:59:33,1,5 1000000 3 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1668000000,5.002383,2.999031
+2025-08-27 12:59:38,5,5 1000000 7 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,819000000,5.011218,6.118703
+2025-08-27 12:59:43,4,5 100 25601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,791070900,5.005493,6.327490
+2025-08-27 12:59:48,1,5 1 102407000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204814000,5.798678,28.311922
+2025-08-27 12:59:58,3,5 1 3276803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,789709523,5.011444,6.345933
+2025-08-27 13:00:03,2,5 1 6553621 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1264848853,5.003683,3.955953
+2025-08-27 13:00:08,2,5 100 51203 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1310796800,5.019010,3.828976
+2025-08-27 13:00:14,5,5 100 12809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302292400,5.010192,16.573993
+2025-08-27 13:00:19,5,5 100000 53 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,503500000,5.037953,10.005865
+2025-08-27 13:00:24,3,5 10 409609 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1290268350,5.013069,3.885292
+2025-08-27 13:00:29,1,5 1 1638431 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,573450850,5.003718,8.725627
+2025-08-27 13:00:34,1,5 1000 6473 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,479002000,5.019121,10.478288
+2025-08-27 13:00:39,1,5 1 409609000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1228827000,6.688282,5.442818
+2025-08-27 13:01:01,2,5 1000000 3 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2370000000,5.000308,2.109835
+2025-08-27 13:01:06,3,5 1 25601000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256010000,5.212822,20.361791
+2025-08-27 13:01:12,4,5 10 409609 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1294364440,5.003822,3.865852
+2025-08-27 13:01:18,5,5 100000 13 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,293800000,5.009850,17.051906
+2025-08-27 13:01:23,3,5 100 25601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,473618500,5.019946,10.599134
+2025-08-27 13:01:28,2,5 1000000 7 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,833000000,5.008115,6.012143
+2025-08-27 13:01:33,3,5 100 12809 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,963236800,5.001199,5.192076
+2025-08-27 13:01:38,1,5 100000 13 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1090700000,5.000889,4.585027
+2025-08-27 13:01:43,1,5 100000 29 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1046900000,5.010238,4.785785
+2025-08-27 13:01:48,3,5 10000 809 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1035520000,5.018836,4.846682
+2025-08-27 13:01:53,2,5 1000000 1 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,2203000000,5.001872,2.270482
+2025-08-27 13:01:58,3,5 1 1638431 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,789723742,5.007330,6.340610
+2025-08-27 13:02:03,5,5 1000000 3 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.032767,17.294732
+2025-08-27 13:02:08,2,5 1 1638431 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1263230301,5.006049,3.962895
+2025-08-27 13:02:14,2,5 10000 101 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1143320000,5.003569,4.376350
+2025-08-27 13:02:19,4,5 1000 3203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291473000,5.039942,17.291283
+2025-08-27 13:02:24,3,5 100 12809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,293326100,5.005868,17.065880
+2025-08-27 13:02:29,5,5 1 6553621 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,635701237,5.040500,7.929039
+2025-08-27 13:02:34,2,5 1 409609000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1228827000,6.661606,5.421110
+2025-08-27 13:02:56,4,5 100000 13 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1836900000,5.001614,2.722856
+2025-08-27 13:03:01,3,5 100000 53 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302100000,5.012450,16.592023
+2025-08-27 13:03:06,5,5 1000000 7 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1414000000,5.014602,3.546395
+2025-08-27 13:03:11,4,5 1000 6473 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1333438000,5.006472,3.754559
+2025-08-27 13:03:17,3,5 100 25601 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1305651000,5.008293,3.835859
+2025-08-27 13:03:22,5,5 1 51203000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1280075000,5.090547,3.976757
+2025-08-27 13:03:28,1,5 100 51203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291857100,5.000112,17.132055
+2025-08-27 13:03:34,2,5 1000 1601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,480300000,5.005700,10.422028
+2025-08-27 13:03:39,3,5 1 102407000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1331291000,5.294092,3.976660
+2025-08-27 13:03:47,1,5 10 819229 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,933921060,5.025594,5.381176
+2025-08-27 13:03:52,1,5 1 3276803 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,933888855,5.004085,5.358330
+2025-08-27 13:03:58,1,5 10 409609 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1290268350,5.004647,3.878764
+2025-08-27 13:04:03,3,5 1000 1601 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1362451000,5.004820,3.673394
+2025-08-27 13:04:08,4,5 10 819229 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,925728770,5.001203,5.402450
+2025-08-27 13:04:13,3,5 10 102407 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1304665180,5.001520,3.833566
+2025-08-27 13:04:18,5,5 1000 3203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,480450000,5.009207,10.426073
+2025-08-27 13:04:23,4,5 10 819229 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794652130,5.029084,6.328661
+2025-08-27 13:04:28,5,5 10000 809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,809000000,5.000128,6.180628
+2025-08-27 13:04:33,5,5 1 3276803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281805058,5.055895,17.941108
+2025-08-27 13:04:39,1,5 1000000 7 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2093000000,5.016514,2.396806
+2025-08-27 13:04:44,2,5 1 204803000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1024015000,5.906645,5.768124
+2025-08-27 13:04:57,1,5 1 6553621 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,275252082,5.018958,18.234042
+2025-08-27 13:05:03,2,5 1 102407000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,921663000,5.010809,5.436704
+2025-08-27 13:05:12,5,5 10000 401 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1110770000,5.000394,4.501737
+2025-08-27 13:05:17,3,5 10 819229 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794652130,5.029707,6.329445
+2025-08-27 13:05:22,5,5 10 819229 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1277997240,5.016885,3.925584
+2025-08-27 13:05:27,5,5 1 12809000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,268989000,5.066870,18.836718
+2025-08-27 13:05:33,1,5 1000 6473 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1339911000,5.002711,3.733614
+2025-08-27 13:05:38,2,5 1 51203000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1280075000,5.089651,3.976057
+2025-08-27 13:05:44,4,5 10000 211 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.005815,10.405369
+2025-08-27 13:05:50,1,5 10000 401 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,288720000,5.065617,17.545085
+2025-08-27 13:05:55,5,5 100000 53 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286200000,5.021510,17.545458
+2025-08-27 13:06:00,2,5 10 204803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,288772230,5.000682,17.317046
+2025-08-27 13:06:05,3,5 1 12809000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,935057000,5.026000,5.375073
+2025-08-27 13:06:10,5,5 100 51203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,296977400,5.026566,16.925753
+2025-08-27 13:06:16,4,5 1 3276803 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1261569155,5.003143,3.965810
+2025-08-27 13:06:21,5,5 100000 29 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,298700000,5.018640,16.801607
+2025-08-27 13:06:26,2,5 1000 3203 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1338854000,5.006030,3.739041
+2025-08-27 13:06:31,5,5 1 25601000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1280050000,5.076396,3.965779
+2025-08-27 13:06:37,4,5 100 12809 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,964517700,5.001511,5.185505
+2025-08-27 13:06:42,5,5 1 3276803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,599654949,5.016106,8.364987
+2025-08-27 13:06:47,3,5 1000 3203 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1338854000,5.001190,3.735426
+2025-08-27 13:06:52,4,5 10000 401 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.007803,10.494359
+2025-08-27 13:06:57,3,5 10 102407 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,960577660,5.003369,5.208708
+2025-08-27 13:07:02,4,5 1 25601000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,921636000,5.017853,5.444506
+2025-08-27 13:07:09,2,5 1 102407000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,921663000,5.086591,5.518927
+2025-08-27 13:07:17,5,5 1000 3203 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,980118000,5.001757,5.103219
+2025-08-27 13:07:23,1,5 1 51203000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256015000,5.822561,22.743046
+2025-08-27 13:07:30,5,5 1 204803000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,7.946791,38.802122
+2025-08-27 13:07:47,5,5 1 1638431 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,920798222,5.003791,5.434188
+2025-08-27 13:07:52,2,5 100 25601 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1318451500,5.000803,3.792937
+2025-08-27 13:07:57,5,5 10 819229 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,524306560,5.082643,9.694029
+2025-08-27 13:08:02,4,5 100000 53 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,816200000,5.014357,6.143540
+2025-08-27 13:08:07,3,5 1000000 7 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,812000000,5.007093,6.166371
+2025-08-27 13:08:12,5,5 1 1638431 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,789723742,5.008882,6.342575
+2025-08-27 13:08:18,2,5 100000 29 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1012100000,5.005917,4.946070
+2025-08-27 13:08:23,2,5 10000 809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,493490000,5.058029,10.249507
+2025-08-27 13:08:28,5,5 1000000 1 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,2202000000,5.000583,2.270928
+2025-08-27 13:08:33,2,5 1 102407000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1331291000,5.306610,3.986063
+2025-08-27 13:08:41,1,5 1000 3203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,797547000,5.013557,6.286221
+2025-08-27 13:08:46,4,5 1000000 1 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2202000000,5.001607,2.271393
+2025-08-27 13:08:52,4,5 100 25601 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,960037500,5.008731,5.217224
+2025-08-27 13:08:57,4,5 1 6553621 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,275252082,5.003402,18.177526
+2025-08-27 13:09:02,3,5 100000 29 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1012100000,5.006740,4.946883
+2025-08-27 13:09:07,4,5 1 102407000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1024070000,5.538181,5.408010
+2025-08-27 13:09:16,4,5 1 6553621 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,688130205,5.009807,7.280318
+2025-08-27 13:09:22,2,5 1 3276803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,789709523,5.007320,6.340711
+2025-08-27 13:09:27,4,5 10000 211 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,829230000,5.010167,6.041951
+2025-08-27 13:09:32,4,5 10 102407 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,939072190,5.004852,5.329571
+2025-08-27 13:09:37,5,5 10000 401 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,866160000,5.021579,5.797519
+2025-08-27 13:09:42,5,5 100000 53 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,927500000,5.009785,5.401385
+2025-08-27 13:09:47,5,5 10000 809 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1035520000,5.023855,4.851529
+2025-08-27 13:09:52,2,5 10 819229 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,499729690,5.042943,10.091342
+2025-08-27 13:09:58,2,5 10 102407 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1304665180,5.000744,3.832971
+2025-08-27 13:10:03,3,5 1 3276803 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,930612052,5.010892,5.384512
+2025-08-27 13:10:08,2,5 1000 1601 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1364052000,5.005565,3.669629
+2025-08-27 13:10:13,2,5 100000 29 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,530700000,5.003068,9.427300
+2025-08-27 13:10:18,3,5 100000 29 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,287100000,5.041977,17.561745
+2025-08-27 13:10:23,2,5 1 3276803 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,930612052,5.009085,5.382571
+2025-08-27 13:10:28,5,5 1000000 3 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1665000000,5.008918,3.008359
+2025-08-27 13:10:33,4,5 100000 29 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1136800000,5.009779,4.406913
+2025-08-27 13:10:38,4,5 1000000 1 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.002117,17.189405
+2025-08-27 13:10:44,1,5 1 25601000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256010000,5.121210,20.003945
+2025-08-27 13:10:50,4,5 100000 13 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,656500000,5.009728,7.630964
+2025-08-27 13:10:55,2,5 1000000 7 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,315000000,5.111664,16.227505
+2025-08-27 13:11:00,5,5 100 51203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,798766800,5.026779,6.293175
+2025-08-27 13:11:05,3,5 10000 211 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291180000,5.019791,17.239477
+2025-08-27 13:11:10,5,5 1 3276803 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,933888855,5.014575,5.369563
+2025-08-27 13:11:15,2,5 100 51203 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,962616400,5.015399,5.210174
+2025-08-27 13:11:21,2,5 100 25601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,791070900,5.006388,6.328621
+2025-08-27 13:11:26,4,5 1000 1601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286579000,5.025391,17.535796
+2025-08-27 13:11:31,1,5 10000 809 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1035520000,5.018650,4.846502
+2025-08-27 13:11:36,1,5 100000 13 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1836900000,5.003192,2.723715
+2025-08-27 13:11:41,1,5 1 102407000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,921663000,5.010644,5.436525
+2025-08-27 13:11:50,5,5 1 25601000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256010000,5.080841,19.846260
+2025-08-27 13:11:56,4,5 10000 101 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,485810000,5.006912,10.306317
+2025-08-27 13:12:01,2,5 1 1638431 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,927351946,5.000696,5.392447
+2025-08-27 13:12:06,1,5 1000 1601 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1362451000,5.001169,3.670715
+2025-08-27 13:12:11,1,5 1 6553621 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,792988141,5.032930,6.346791
+2025-08-27 13:12:17,5,5 10000 211 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1441130000,5.005281,3.473164
+2025-08-27 13:12:22,1,5 1 3276803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,596378146,5.002606,8.388312
+2025-08-27 13:12:27,3,5 1000000 3 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1863000000,5.000997,2.684378
+2025-08-27 13:12:32,4,5 100 51203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,798766800,5.012141,6.274849
+2025-08-27 13:12:37,3,5 10000 211 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.006290,10.406357
+2025-08-27 13:12:42,4,5 1000000 7 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.104707,17.362949
+2025-08-27 13:12:47,4,5 10000 211 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1453790000,5.005317,3.442944
+2025-08-27 13:12:52,4,5 100000 13 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,644800000,5.009101,7.768457
+2025-08-27 13:12:58,5,5 10 819229 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,933921060,5.024051,5.379524
+2025-08-27 13:13:03,5,5 10000 809 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1399570000,5.014135,3.582625
+2025-08-27 13:13:08,4,5 10 819229 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,516114270,5.036567,9.758628
+2025-08-27 13:13:13,2,5 1000 6473 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,479002000,5.021746,10.483768
+2025-08-27 13:13:18,2,5 1000 3203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,797547000,5.005413,6.276010
+2025-08-27 13:13:23,1,5 100 51203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,798766800,5.026449,6.292762
+2025-08-27 13:13:28,3,5 1 102407000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,921663000,5.408985,5.868723
+2025-08-27 13:13:37,5,5 1 204803000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,819212000,5.057059,6.173077
+2025-08-27 13:13:50,5,5 10000 101 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,891830000,5.004378,5.611359
+2025-08-27 13:13:55,3,5 10000 809 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1399570000,5.016259,3.584143
+2025-08-27 13:14:00,4,5 1000000 3 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1671000000,5.008350,2.997217
+2025-08-27 13:14:06,2,5 1000 1601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,284978000,5.007078,17.570051
+2025-08-27 13:14:11,5,5 1 6553621 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,275252082,5.074158,18.434585
+2025-08-27 13:14:16,3,5 1 102407000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1024070000,5.548678,5.418260
+2025-08-27 13:14:25,3,5 10000 211 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,871430000,5.000472,5.738237
+2025-08-27 13:14:30,3,5 1 25601000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1280050000,5.085444,3.972848
+2025-08-27 13:14:36,3,5 10 204803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,501767350,5.014839,9.994351
+2025-08-27 13:14:42,5,5 1 51203000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819248000,5.219178,6.370694
+2025-08-27 13:14:49,3,5 1000000 7 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,840000000,5.031770,5.990202
+2025-08-27 13:14:54,2,5 1000000 1 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2202000000,5.001265,2.271238
+2025-08-27 13:14:59,5,5 1 12809000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1268091000,5.032942,3.968912
+2025-08-27 13:15:05,2,5 1 51203000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256015000,5.658438,22.101978
+2025-08-27 13:15:13,2,5 1000000 3 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1863000000,5.006618,2.687396
+2025-08-27 13:15:18,1,5 1 1638431 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1264868732,5.003641,3.955858
+2025-08-27 13:15:23,1,5 1000 1601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299387000,5.012289,16.741839
+2025-08-27 13:15:28,2,5 1000 3203 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,980118000,5.008443,5.110041
+2025-08-27 13:15:33,2,5 100 12809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,790315300,5.006278,6.334533
+2025-08-27 13:15:38,5,5 1000 1601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,297786000,5.016315,16.845369
+2025-08-27 13:15:43,1,5 10000 809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,833270000,5.034329,6.041654
+2025-08-27 13:15:48,2,5 10 819229 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,933921060,5.022670,5.378046
+2025-08-27 13:15:53,5,5 1 25601000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,896035000,5.017994,5.600221
+2025-08-27 13:15:59,5,5 1000000 7 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,840000000,5.022443,5.979099
+2025-08-27 13:16:04,4,5 100 51203 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1321037400,5.011070,3.793284
+2025-08-27 13:16:10,2,5 1 409609000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819218000,5.217021,6.368294
+2025-08-27 13:16:32,4,5 10 204803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,522247650,5.008599,9.590467
+2025-08-27 13:16:38,2,5 100000 13 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,657800000,5.006637,7.611184
+2025-08-27 13:16:43,4,5 1000000 1 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,2202000000,5.001309,2.271257
+2025-08-27 13:16:48,2,5 10 409609 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,278534120,5.008095,17.980185
+2025-08-27 13:16:53,3,5 1000000 7 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301000000,5.001357,16.615804
+2025-08-27 13:16:58,5,5 10 102407 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,955457310,5.004305,5.237602
+2025-08-27 13:17:03,4,5 100000 53 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,927500000,5.009716,5.401311
+2025-08-27 13:17:08,2,5 1 204803000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1433621000,5.720277,3.990090
+2025-08-27 13:17:20,4,5 100 12809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299730600,5.001985,16.688269
+2025-08-27 13:17:25,1,5 100 51203 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,962616400,5.022290,5.217333
+2025-08-27 13:17:30,5,5 1000000 3 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1848000000,5.000524,2.705911
+2025-08-27 13:17:35,3,5 1 25601000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,844833000,5.088373,6.022934
+2025-08-27 13:17:41,2,5 10000 211 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299620000,5.015031,16.737971
+2025-08-27 13:17:46,1,5 1 12809000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794158000,5.041510,6.348246
+2025-08-27 13:17:52,4,5 100 12809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,789034400,5.008062,6.347077
+2025-08-27 13:17:57,4,5 100000 53 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,503500000,5.036693,10.003362
+2025-08-27 13:18:02,2,5 10 819229 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794652130,5.031094,6.331190
+2025-08-27 13:18:07,2,5 1 1638431 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,616050056,5.003499,8.121903
+2025-08-27 13:18:13,3,5 10000 401 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,866160000,5.021874,5.797860
+2025-08-27 13:18:18,4,5 1000 6473 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.048136,16.247412
+2025-08-27 13:18:23,3,5 1 102407000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204814000,5.863748,28.629625
+2025-08-27 13:18:33,5,5 1000 3203 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1342057000,5.009112,3.732414
+2025-08-27 13:18:38,3,5 1000 6473 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,789706000,5.001536,6.333415
+2025-08-27 13:18:43,1,5 100000 13 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286000000,5.016224,17.539245
+2025-08-27 13:18:48,1,5 10 409609 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794641460,5.015687,6.311887
+2025-08-27 13:18:53,5,5 100 51203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,476187900,5.048067,10.600998
+2025-08-27 13:18:58,4,5 10000 809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291240000,5.105917,17.531647
+2025-08-27 13:19:04,1,5 1000 3203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307488000,5.007634,16.285624
+2025-08-27 13:19:09,5,5 10 102407 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,791606110,5.004509,6.321969
+2025-08-27 13:19:14,2,5 1000000 1 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307000000,5.006617,16.308199
+2025-08-27 13:19:19,1,5 10000 101 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,485810000,5.005316,10.303032
+2025-08-27 13:19:24,2,5 1000000 1 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1926000000,5.001066,2.596607
+2025-08-27 13:19:29,5,5 1 204803000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819212000,5.225896,6.379174
+2025-08-27 13:19:43,5,5 10000 211 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,289070000,5.031984,17.407493
+2025-08-27 13:19:48,3,5 100 12809 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1314203400,5.004047,3.807666
+2025-08-27 13:19:53,4,5 10 819229 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286730150,5.097100,17.776645
+2025-08-27 13:19:58,3,5 10 204803 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,954381980,5.007805,5.247171
+2025-08-27 13:20:03,4,5 100 12809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,475213900,5.004864,10.531813
+2025-08-27 13:20:09,4,5 1000 3203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,800750000,5.010081,6.256736
+2025-08-27 13:20:14,4,5 1 204803000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1024015000,5.599271,5.467958
+2025-08-27 13:20:27,3,5 1000 3203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,480450000,5.012780,10.433510
+2025-08-27 13:20:32,1,5 1 1638431 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,280171701,5.021026,17.921246
+2025-08-27 13:20:37,5,5 1000000 3 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1995000000,5.005265,2.508905
+2025-08-27 13:20:42,5,5 100 51203 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,962616400,5.007877,5.202360
+2025-08-27 13:20:47,2,5 100 12809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,471371200,5.004157,10.616170
+2025-08-27 13:20:52,2,5 10 409609 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794641460,5.002994,6.295914
+2025-08-27 13:20:57,4,5 10000 211 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,308060000,5.029526,16.326449
+2025-08-27 13:21:03,3,5 10 409609 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299014570,5.056316,16.909932
+2025-08-27 13:21:08,5,5 1 6553621 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1258295232,5.003022,3.976032
+2025-08-27 13:21:13,3,5 1 409609000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,15.886459,38.784448
+2025-08-27 13:21:46,3,5 100 25601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,793631000,5.014902,6.318934
+2025-08-27 13:21:51,1,5 100 12809 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1301394400,5.004880,3.845783
+2025-08-27 13:21:56,2,5 10 204803 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1296402990,5.005835,3.861326
+2025-08-27 13:22:01,1,5 100000 29 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1012100000,5.006340,4.946488
+2025-08-27 13:22:06,2,5 1 3276803 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1264845958,5.011366,3.962037
+2025-08-27 13:22:11,4,5 1000000 3 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1860000000,5.000184,2.688271
+2025-08-27 13:22:16,5,5 1000 6473 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.055452,16.270959
+2025-08-27 13:22:21,4,5 100 12809 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1318046100,5.004440,3.796863
+2025-08-27 13:22:26,5,5 1 12809000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,935057000,5.009071,5.356969
+2025-08-27 13:22:32,1,5 10 204803 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1294354960,5.000813,3.863556
+2025-08-27 13:22:37,1,5 1000 6473 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.056972,16.275851
+2025-08-27 13:22:42,3,5 100000 29 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1595000000,5.001791,3.135919
+2025-08-27 13:22:47,5,5 10 102407 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,305172860,5.017401,16.441177
+2025-08-27 13:22:52,4,5 1 25601000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256010000,5.119736,19.998188
+2025-08-27 13:22:59,1,5 1 25601000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,921636000,5.045564,5.474573
+2025-08-27 13:23:05,5,5 10000 401 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1415530000,5.008050,3.537933
+2025-08-27 13:23:10,2,5 1 12809000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,806967000,5.009345,6.207621
+2025-08-27 13:23:15,1,5 1000 6473 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,796179000,5.021764,6.307330
+2025-08-27 13:23:20,1,5 10000 211 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1447460000,5.002566,3.456100
+2025-08-27 13:23:26,3,5 100000 29 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,530700000,5.016570,9.452742
+2025-08-27 13:23:31,2,5 100000 53 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286200000,5.008364,17.499525
+2025-08-27 13:23:36,1,5 100 25601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299531700,5.000394,16.694039
+2025-08-27 13:23:41,1,5 10 102407 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304148790,5.005310,16.456781
+2025-08-27 13:23:46,2,5 10000 401 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.012327,10.503839
+2025-08-27 13:23:51,4,5 10 204803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294916320,5.010250,16.988717
+2025-08-27 13:23:56,2,5 10000 401 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1415530000,5.013218,3.541584
+2025-08-27 13:24:01,1,5 1 12809000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,819776000,5.089040,6.207842
+2025-08-27 13:24:07,2,5 10 102407 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,957505450,5.004966,5.227089
+2025-08-27 13:24:12,1,5 100 12809 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,965798600,5.003248,5.180426
+2025-08-27 13:24:17,4,5 1 6553621 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,937167803,5.020229,5.356809
+2025-08-27 13:24:22,2,5 1 409609000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,15.969036,38.986048
+2025-08-27 13:24:55,5,5 1000 6473 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,970950000,5.008117,5.157956
+2025-08-27 13:25:00,4,5 100 51203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,476187900,5.010792,10.522720
+2025-08-27 13:25:05,1,5 10 819229 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1277997240,5.026986,3.933487
+2025-08-27 13:25:10,5,5 1 3276803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,789709523,5.006403,6.339550
+2025-08-27 13:25:15,1,5 1000 3203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,480450000,5.011324,10.430480
+2025-08-27 13:25:21,3,5 1 12809000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,806967000,5.027216,6.229767
+2025-08-27 13:25:26,4,5 100 51203 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,962616400,5.006562,5.200994
+2025-08-27 13:25:31,1,5 1 409609000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1228827000,6.979586,5.679877
+2025-08-27 13:25:54,5,5 10 409609 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,798737550,5.009134,6.271314
+2025-08-27 13:25:59,4,5 1000 1601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,805303000,5.000626,6.209620
+2025-08-27 13:26:04,4,5 100000 29 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1595000000,5.000761,3.135273
+2025-08-27 13:26:09,4,5 1 3276803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,789709523,5.005154,6.337968
+2025-08-27 13:26:14,4,5 1 204803000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1433621000,5.732671,3.998735
+2025-08-27 13:26:26,1,5 10000 211 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,871430000,5.001213,5.739087
+2025-08-27 13:26:31,1,5 10000 211 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1010690000,5.000729,4.947837
+2025-08-27 13:26:36,2,5 1000 3203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,480450000,5.012684,10.433310
+2025-08-27 13:26:41,4,5 100000 29 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,287100000,5.041410,17.559770
+2025-08-27 13:26:47,3,5 100000 53 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,991100000,5.001734,5.046649
+2025-08-27 13:26:52,2,5 1 12809000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794158000,5.039231,6.345376
+2025-08-27 13:26:57,2,5 100 25601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294411500,5.000496,16.984717
+2025-08-27 13:27:02,1,5 10000 101 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301990000,5.004820,16.572800
+2025-08-27 13:27:07,4,5 1 409609000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819218000,5.224285,6.377161
+2025-08-27 13:27:30,4,5 1 3276803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,278528255,5.005445,17.971049
+2025-08-27 13:27:35,1,5 1 6553621 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1264848853,5.013019,3.963334
+2025-08-27 13:27:41,3,5 1000000 1 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2203000000,5.001189,2.270172
+2025-08-27 13:27:46,4,5 1 409609000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1228827000,6.668682,5.426868
+2025-08-27 13:28:08,4,5 10000 809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,841360000,5.038311,5.988294
+2025-08-27 13:28:13,3,5 100000 53 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1526400000,5.013913,3.284796
+2025-08-27 13:28:18,3,5 10000 809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,817090000,5.019719,6.143410
+2025-08-27 13:28:23,2,5 100 51203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,476187900,5.045099,10.594765
+2025-08-27 13:28:28,2,5 10000 809 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1399570000,5.013450,3.582136
+2025-08-27 13:28:33,3,5 100 51203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302097700,5.043339,16.694397
+2025-08-27 13:28:39,3,5 1000 1601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,480300000,5.009528,10.429998
+2025-08-27 13:28:44,1,5 1000 3203 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,980118000,5.001617,5.103076
+2025-08-27 13:28:49,2,5 1 25601000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256010000,5.092680,19.892504
+2025-08-27 13:28:55,1,5 100 51203 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1310796800,5.010537,3.822512
+2025-08-27 13:29:00,1,5 1 1638431 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,933905670,5.005571,5.359825
+2025-08-27 13:29:05,1,5 1 102407000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1331291000,5.303025,3.983370
+2025-08-27 13:29:14,5,5 10000 101 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,300980000,5.010916,16.648668
+2025-08-27 13:29:19,3,5 1 204803000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1024015000,5.681759,5.548511
+2025-08-27 13:29:32,3,5 1000000 1 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302000000,5.009715,16.588460
+2025-08-27 13:29:37,4,5 100 25601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302091800,5.022704,16.626416
+2025-08-27 13:29:42,4,5 1 409609000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,819218000,5.438172,6.638248
+2025-08-27 13:30:03,2,5 1000 6473 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.066172,16.305461
+2025-08-27 13:30:08,2,5 10 819229 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1277997240,5.023846,3.931030
+2025-08-27 13:30:13,4,5 100 51203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291857100,5.014399,17.181007
+2025-08-27 13:30:18,4,5 10 204803 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1298451020,5.005129,3.854692
+2025-08-27 13:30:24,2,5 1 204803000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,8.012408,39.122513
+2025-08-27 13:30:40,2,5 10000 101 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,283810000,5.007840,17.645044
+2025-08-27 13:30:45,2,5 1 1638431 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,298194442,5.012779,16.810437
+2025-08-27 13:30:50,2,5 1 6553621 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,275252082,5.053736,18.360392
+2025-08-27 13:30:56,4,5 1 6553621 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1264848853,5.004210,3.956370
+2025-08-27 13:31:01,1,5 1 51203000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,921654000,5.018226,5.444805
+2025-08-27 13:31:08,1,5 10000 401 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1110770000,5.000918,4.502208
+2025-08-27 13:31:13,5,5 10 102407 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1300568900,5.003502,3.847164
+2025-08-27 13:31:18,5,5 1 102407000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819256000,5.223045,6.375352
+2025-08-27 13:31:28,5,5 100000 29 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,919300000,5.009197,5.448925
+2025-08-27 13:31:33,5,5 1 102407000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1331291000,5.301806,3.982455
+2025-08-27 13:31:41,1,5 1000000 1 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1926000000,5.000852,2.596496
+2025-08-27 13:31:46,2,5 1 6553621 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,747112794,5.027706,6.729514
+2025-08-27 13:31:52,2,5 1 3276803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,579994131,5.006910,8.632691
+2025-08-27 13:31:57,4,5 1000 1601 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,999024000,5.005564,5.010454
+2025-08-27 13:32:02,3,5 10 409609 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,897043710,5.009072,5.583978
+2025-08-27 13:32:07,3,5 10 102407 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,300052510,5.009663,16.695954
+2025-08-27 13:32:12,3,5 100 12809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,790315300,5.002583,6.329857
+2025-08-27 13:32:17,2,5 1 51203000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,921654000,5.032489,5.460280
+2025-08-27 13:32:24,4,5 10 204803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,808971850,5.011002,6.194285
+2025-08-27 13:32:29,2,5 10000 211 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1447460000,5.001778,3.455555
+2025-08-27 13:32:35,3,5 1 25601000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,921636000,5.022602,5.449659
+2025-08-27 13:32:41,1,5 1 12809000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1268091000,5.030865,3.967274
+2025-08-27 13:32:46,3,5 1000000 1 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1926000000,5.001702,2.596938
+2025-08-27 13:32:51,4,5 1 102407000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1331291000,5.303346,3.983611
+2025-08-27 13:33:00,4,5 1 204803000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,7.974756,38.938668
+2025-08-27 13:33:16,3,5 1 1638431 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,283448563,5.009420,17.673118
+2025-08-27 13:33:21,1,5 1000000 7 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,840000000,5.017379,5.973070
+2025-08-27 13:33:26,4,5 1000 3203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,480450000,5.010649,10.429075
+2025-08-27 13:33:31,1,5 1 102407000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819256000,5.221655,6.373655
+2025-08-27 13:33:41,3,5 10 204803 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1296402990,5.003902,3.859835
+2025-08-27 13:33:46,4,5 1 51203000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,972857000,5.268026,5.415005
+2025-08-27 13:33:53,4,5 1 102407000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204814000,5.856813,28.595765
+2025-08-27 13:34:03,1,5 1000 3203 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1268388000,5.012435,3.951815
+2025-08-27 13:34:09,4,5 10000 401 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,850120000,5.009203,5.892348
+2025-08-27 13:34:14,5,5 10000 211 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,827120000,5.003300,6.049062
+2025-08-27 13:34:19,1,5 10000 211 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,303840000,5.009162,16.486184
+2025-08-27 13:34:24,4,5 1000000 7 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,833000000,5.003517,6.006623
+2025-08-27 13:34:29,5,5 100000 53 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1526400000,5.013829,3.284741
+2025-08-27 13:34:34,1,5 1 102407000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,921663000,5.081923,5.513862
+2025-08-27 13:34:43,2,5 10 409609 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1294364440,5.005988,3.867526
+2025-08-27 13:34:48,4,5 1 409609000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1638436000,6.534268,3.988113
+2025-08-27 13:35:07,1,5 1 3276803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281805058,5.029072,17.845925
+2025-08-27 13:35:13,2,5 1000000 7 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,819000000,5.037626,6.150947
+2025-08-27 13:35:18,5,5 1000 1601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,480300000,5.006239,10.423150
+2025-08-27 13:35:23,5,5 1000 3203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794344000,5.015106,6.313519
+2025-08-27 13:35:28,2,5 1000000 7 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1414000000,5.005007,3.539609
+2025-08-27 13:35:33,2,5 1 204803000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819212000,5.221775,6.374144
+2025-08-27 13:35:47,4,5 10000 401 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1110770000,5.002022,4.503202
+2025-08-27 13:35:52,5,5 1000000 3 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2373000000,5.005230,2.109241
+2025-08-27 13:35:57,3,5 10 819229 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1277997240,5.015915,3.924825
+2025-08-27 13:36:02,3,5 10000 401 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.007842,10.494440
+2025-08-27 13:36:07,5,5 100 25601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,791070900,5.005760,6.327827
+2025-08-27 13:36:12,3,5 10000 401 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1415530000,5.011405,3.540303
+2025-08-27 13:36:18,2,5 100000 13 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,647400000,5.003743,7.728982
+2025-08-27 13:36:23,3,5 100 25601 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,957477400,5.003392,5.225598
+2025-08-27 13:36:28,5,5 10 102407 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,511010930,5.009760,9.803626
+2025-08-27 13:36:33,3,5 10000 101 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,485810000,5.005936,10.304308
+2025-08-27 13:36:38,2,5 1000 6473 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,977423000,5.026885,5.142998
+2025-08-27 13:36:43,4,5 10000 809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,493490000,5.060116,10.253736
+2025-08-27 13:36:48,4,5 10 204803 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,954381980,5.007918,5.247289
+2025-08-27 13:36:53,3,5 1 51203000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,819248000,5.268450,6.430837
+2025-08-27 13:37:00,2,5 10 102407 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,475168480,5.003497,10.529943
+2025-08-27 13:37:05,4,5 1 51203000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,768045000,5.022823,6.539751
+2025-08-27 13:37:12,2,5 100000 29 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1075900000,5.004613,4.651560
+2025-08-27 13:37:18,5,5 1000000 7 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,308000000,5.002275,16.241153
+2025-08-27 13:37:23,4,5 10000 101 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1478640000,5.001124,3.382246
+2025-08-27 13:37:28,3,5 10 819229 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,540691140,5.051900,9.343412
+2025-08-27 13:37:33,3,5 1 6553621 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,281805703,5.106538,18.120776
+2025-08-27 13:37:38,1,5 10000 101 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,934250000,5.004147,5.356325
+2025-08-27 13:37:43,3,5 10 204803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,806923820,5.001135,6.197778
+2025-08-27 13:37:48,5,5 10000 211 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1038120000,5.009356,4.825411
+2025-08-27 13:37:53,1,5 1000000 3 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1860000000,5.004442,2.690560
+2025-08-27 13:37:59,3,5 100000 29 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1197700000,5.006538,4.180127
+2025-08-27 13:38:04,2,5 10 102407 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,296980300,5.004689,16.851923
+2025-08-27 13:38:09,5,5 1 6553621 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,924060561,5.033916,5.447604
+2025-08-27 13:38:14,3,5 1 1638431 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,606219470,5.004270,8.254882
+2025-08-27 13:38:19,5,5 1 409609000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1228827000,6.650182,5.411813
+2025-08-27 13:38:41,3,5 1000 6473 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1339911000,5.002234,3.733258
+2025-08-27 13:38:46,5,5 1 25601000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,947237000,5.105979,5.390392
+2025-08-27 13:38:52,4,5 1000000 3 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,306000000,5.022945,16.414853
+2025-08-27 13:38:58,3,5 1000 1601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,305791000,5.008207,16.377876
+2025-08-27 13:39:03,5,5 10000 211 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.011622,10.417440
+2025-08-27 13:39:08,3,5 1 3276803 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1261569155,5.012757,3.973430
+2025-08-27 13:39:13,4,5 1 1638431 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,788085311,5.010283,6.357539
+2025-08-27 13:39:18,5,5 1 1638431 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,563620264,5.002578,8.875795
+2025-08-27 13:39:23,1,5 10000 809 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1399570000,5.015276,3.583441
+2025-08-27 13:39:28,3,5 100 12809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,475213900,5.000390,10.522398
+2025-08-27 13:39:33,5,5 10 409609 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,479242530,5.004000,10.441477
+2025-08-27 13:39:38,2,5 1 204803000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1024015000,5.558473,5.428117
+2025-08-27 13:39:52,3,5 10000 101 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,285830000,5.010412,17.529343
+2025-08-27 13:39:57,3,5 100000 53 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,503500000,5.037407,10.004781
+2025-08-27 13:40:02,2,5 10000 101 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,891830000,5.005355,5.612454
+2025-08-27 13:40:07,2,5 10 204803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,495623260,5.010650,10.109796
+2025-08-27 13:40:12,3,5 10 819229 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294922440,5.004352,16.968366
+2025-08-27 13:40:17,3,5 1 409609000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1228827000,7.042506,5.731080
+2025-08-27 13:40:40,2,5 1 12809000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1268091000,5.033664,3.969482
+2025-08-27 13:40:45,2,5 100 51203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,798766800,5.026117,6.292346
+2025-08-27 13:40:50,3,5 1000000 3 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1680000000,5.005763,2.979621
+2025-08-27 13:40:55,3,5 1 51203000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256015000,5.708304,22.296756
+2025-08-27 13:41:03,1,5 100000 29 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1595000000,5.002615,3.136436
+2025-08-27 13:41:08,3,5 1 204803000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1433621000,5.729410,3.996461
+2025-08-27 13:41:20,1,5 100 12809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307416000,5.020636,16.331733
+2025-08-27 13:41:25,5,5 1000 1601 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1362451000,5.000503,3.670226
+2025-08-27 13:41:31,2,5 100 12809 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,963236800,5.000228,5.191068
+2025-08-27 13:41:36,5,5 1 51203000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,972857000,5.255877,5.402518
+2025-08-27 13:41:43,3,5 1000000 3 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1968000000,5.006030,2.543714
+2025-08-27 13:41:48,2,5 10 204803 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,958478040,5.009380,5.226390
+2025-08-27 13:41:53,5,5 100 12809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,472652100,5.010804,10.601464
+2025-08-27 13:41:58,1,5 100000 29 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307400000,5.035278,16.380215
+2025-08-27 13:42:03,1,5 1 12809000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,935057000,5.015610,5.363962
+2025-08-27 13:42:09,5,5 1000 1601 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,999024000,5.005170,5.010060
+2025-08-27 13:42:14,1,5 1 409609000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819218000,5.214836,6.365627
+2025-08-27 13:42:37,1,5 1000 1601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,811707000,5.003395,6.164041
+2025-08-27 13:42:42,1,5 1000 6473 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,970950000,5.005370,5.155126
+2025-08-27 13:42:47,4,5 100 25601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,471058400,5.004153,10.623211
+2025-08-27 13:42:52,4,5 1000 6473 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,796179000,5.030217,6.317947
+2025-08-27 13:42:57,3,5 100000 13 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304200000,5.017981,16.495664
+2025-08-27 13:43:02,5,5 10 409609 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1294364440,5.015685,3.875018
+2025-08-27 13:43:07,5,5 1 3276803 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1264845958,5.012297,3.962773
+2025-08-27 13:43:12,1,5 1 51203000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,768045000,5.118034,6.663716
+2025-08-27 13:43:20,1,5 100 12809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,787753500,5.000046,6.347222
+2025-08-27 13:43:25,2,5 10000 101 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,485810000,5.003758,10.299825
+2025-08-27 13:43:30,1,5 10 409609 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299014570,5.003592,16.733606
+2025-08-27 13:43:35,5,5 1 409609000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819218000,5.224152,6.376999
+2025-08-27 13:43:58,2,5 1000 6473 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,796179000,5.010533,6.293224
+2025-08-27 13:44:03,2,5 1 12809000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,268989000,5.084176,18.901055
+2025-08-27 13:44:08,4,5 1 409609000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,15.954802,38.951297
+2025-08-27 13:44:41,1,5 100 25601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,473618500,5.025157,10.610137
+2025-08-27 13:44:46,3,5 1000 1601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,805303000,5.005164,6.215256
+2025-08-27 13:44:51,1,5 1 25601000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,793631000,5.046972,6.359343
+2025-08-27 13:44:57,4,5 1 12809000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,935057000,5.019104,5.367698
+2025-08-27 13:45:03,5,5 1 409609000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1638436000,6.528635,3.984675
+2025-08-27 13:45:22,5,5 10000 101 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,485810000,5.004281,10.300902
+2025-08-27 13:45:27,2,5 1 409609000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1228827000,6.851493,5.575637
+2025-08-27 13:45:49,2,5 1000 1601 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,999024000,5.005016,5.009906
+2025-08-27 13:45:54,2,5 100000 53 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1526400000,5.014051,3.284887
+2025-08-27 13:46:00,1,5 1000000 1 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2202000000,5.001135,2.271178
+2025-08-27 13:46:05,5,5 10 204803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,483335080,5.016620,10.379176
+2025-08-27 13:46:10,2,5 10 409609 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,921620250,5.000029,5.425259
+2025-08-27 13:46:15,5,5 100000 13 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,657800000,5.008791,7.614459
+2025-08-27 13:46:20,5,5 10 819229 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286730150,5.009389,17.470744
+2025-08-27 13:46:25,1,5 10000 211 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.014823,10.424094
+2025-08-27 13:46:30,1,5 1 6553621 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,930614182,5.025849,5.400572
+2025-08-27 13:46:35,3,5 1 25601000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,793631000,5.042414,6.353600
+2025-08-27 13:46:42,5,5 10000 401 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,288720000,5.052828,17.500790
+2025-08-27 13:46:47,4,5 10 409609 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,495626890,5.029829,10.148418
+2025-08-27 13:46:52,4,5 10 102407 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,483361040,5.010438,10.365829
+2025-08-27 13:46:57,4,5 10 409609 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,946196790,5.015356,5.300542
+2025-08-27 13:47:02,2,5 10000 211 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.009617,10.413272
+2025-08-27 13:47:07,3,5 1 6553621 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,937167803,5.023163,5.359940
+2025-08-27 13:47:13,1,5 1 3276803 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1261569155,5.003908,3.966416
+2025-08-27 13:47:18,4,5 10000 401 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1415530000,5.009324,3.538833
+2025-08-27 13:47:23,3,5 1000000 7 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1414000000,5.023981,3.553028
+2025-08-27 13:47:28,3,5 100 51203 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,476187900,5.045781,10.596197
+2025-08-27 13:47:33,4,5 1 12809000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,268989000,5.047735,18.765581
+2025-08-27 13:47:39,3,5 10000 809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,493490000,5.056968,10.247357
+2025-08-27 13:47:44,4,5 1000000 3 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2370000000,5.000297,2.109830
+2025-08-27 13:47:49,3,5 1 51203000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1280075000,5.089912,3.976261
+2025-08-27 13:47:56,5,5 1000 3203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307488000,5.039313,16.388649
+2025-08-27 13:48:01,4,5 1 3276803 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,927335249,5.015292,5.408284
+2025-08-27 13:48:06,3,5 1000 3203 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,976915000,5.006071,5.124367
+2025-08-27 13:48:11,2,5 1 51203000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,972857000,5.266177,5.413105
+2025-08-27 13:48:18,2,5 100000 29 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1595000000,5.005180,3.138044
+2025-08-27 13:48:23,1,5 1000 1601 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,999024000,5.005117,5.010007
+2025-08-27 13:48:29,1,5 10 204803 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,956430010,5.002550,5.230440
+2025-08-27 13:48:34,5,5 100 25601 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1297970700,5.007975,3.858311
+2025-08-27 13:48:39,2,5 100000 53 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1118300000,5.011459,4.481319
+2025-08-27 13:48:44,3,5 1 3276803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,599654949,5.009495,8.353963
+2025-08-27 13:48:49,3,5 10 102407 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,792630180,5.001407,6.309887
+2025-08-27 13:48:54,1,5 100000 53 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,927500000,5.008984,5.400522
+2025-08-27 13:48:59,5,5 1 1638431 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1264868732,5.005600,3.957407
+2025-08-27 13:49:04,2,5 100000 13 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1090700000,5.002630,4.586623
+2025-08-27 13:49:09,3,5 1 409609000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1228827000,6.694615,5.447972
+2025-08-27 13:49:31,4,5 10000 101 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,891830000,5.003499,5.610373
+2025-08-27 13:49:36,5,5 1 51203000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,870451000,5.251291,6.032839
+2025-08-27 13:49:44,4,5 1000 1601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,480300000,5.001896,10.414108
+2025-08-27 13:49:49,5,5 100 51203 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1305676500,5.002458,3.831315
+2025-08-27 13:49:54,2,5 10000 101 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1479650000,5.002939,3.381164
+2025-08-27 13:49:59,4,5 10000 401 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,308770000,5.032647,16.299015
+2025-08-27 13:50:04,1,5 1000000 7 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1414000000,5.007152,3.541126
+2025-08-27 13:50:09,5,5 100 25601 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,957477400,5.005609,5.227913
+2025-08-27 13:50:14,1,5 1 409609000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1638436000,6.530633,3.985894
+2025-08-27 13:50:33,4,5 1 25601000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,793631000,5.043979,6.355572
+2025-08-27 13:50:40,4,5 100000 53 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,312700000,5.083109,16.255545
+2025-08-27 13:50:45,1,5 10000 809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307420000,5.017522,16.321391
+2025-08-27 13:50:50,1,5 1 51203000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1280075000,5.094166,3.979584
+2025-08-27 13:50:57,4,5 100000 29 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1012100000,5.003809,4.943987
+2025-08-27 13:51:02,5,5 1000000 1 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2202000000,5.000344,2.270819
+2025-08-27 13:51:07,5,5 100000 13 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1683500000,5.003264,2.971942
+2025-08-27 13:51:12,3,5 1 3276803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294912270,5.027880,17.048731
+2025-08-27 13:51:17,2,5 1 25601000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,793631000,5.041519,6.352472
+2025-08-27 13:51:23,1,5 100000 53 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,503500000,5.046158,10.022161
+2025-08-27 13:51:28,3,5 1000 6473 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,977423000,5.029931,5.146115
+2025-08-27 13:51:34,1,5 1 204803000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1024015000,5.590995,5.459876
+2025-08-27 13:51:47,2,5 10000 809 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1035520000,5.019096,4.846933
+2025-08-27 13:51:52,3,5 100000 13 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,644800000,5.001653,7.756906
+2025-08-27 13:51:57,1,5 100 12809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,475213900,5.001947,10.525675
+2025-08-27 13:52:02,1,5 10 819229 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794652130,5.028551,6.327990
+2025-08-27 13:52:07,3,5 1 51203000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,921654000,5.007022,5.432648
+2025-08-27 13:52:14,4,5 100 25601 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1315891400,5.006312,3.804502
+2025-08-27 13:52:19,5,5 10 204803 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1302547080,5.005828,3.843107
+2025-08-27 13:52:24,5,5 1000 1601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,818111000,5.000241,6.111935
+2025-08-27 13:52:29,3,5 10000 211 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1029680000,5.002488,4.858294
+2025-08-27 13:52:35,1,5 1 409609000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,15.960437,38.965054
+2025-08-27 13:53:07,3,5 1 12809000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1268091000,5.031574,3.967834
+2025-08-27 13:53:13,3,5 10 102407 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,497698020,5.006455,10.059222
+2025-08-27 13:53:18,4,5 10000 101 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307040000,5.013885,16.329745
+2025-08-27 13:53:23,4,5 1 6553621 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,792988141,5.028191,6.340815
+2025-08-27 13:53:28,4,5 1000 1601 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1362451000,5.002971,3.672037
+2025-08-27 13:53:33,4,5 1 204803000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819212000,5.216934,6.368234
+2025-08-27 13:53:47,5,5 1 204803000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1024015000,5.542442,5.412462
+2025-08-27 13:54:01,5,5 100 12809 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,967079500,5.005233,5.175617
+2025-08-27 13:54:06,3,5 10000 211 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1447460000,5.003353,3.456643
+2025-08-27 13:54:11,4,5 10 409609 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299014570,5.021683,16.794108
+2025-08-27 13:54:16,3,5 100 51203 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1305676500,5.017432,3.842783
+2025-08-27 13:54:21,2,5 1000 3203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294676000,5.037340,17.094504
+2025-08-27 13:54:26,2,5 100000 29 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,295800000,5.038683,17.034087
+2025-08-27 13:54:31,2,5 10000 401 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,850120000,5.009040,5.892156
+2025-08-27 13:54:36,2,5 10 102407 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,791606110,5.002107,6.318934
+2025-08-27 13:54:41,4,5 1 12809000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1268091000,5.035989,3.971315
+2025-08-27 13:54:47,1,5 1 204803000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1024015000,5.616839,5.485114
+2025-08-27 13:55:00,5,5 1000000 1 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2203000000,5.000903,2.270042
+2025-08-27 13:55:05,1,5 100000 13 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,656500000,5.000335,7.616657
+2025-08-27 13:55:10,2,5 100000 13 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1760200000,5.000546,2.840896
+2025-08-27 13:55:16,3,5 1 409609000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819218000,5.242755,6.399707
+2025-08-27 13:55:38,3,5 1000000 1 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,2202000000,5.000637,2.270952
+2025-08-27 13:55:43,2,5 1 3276803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,278528255,5.008992,17.983784
+2025-08-27 13:55:49,4,5 1 25601000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,768030000,5.112773,6.656996
+2025-08-27 13:55:55,2,5 100 25601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,473618500,5.018873,10.596869
+2025-08-27 13:56:00,1,5 10 102407 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,791606110,5.002136,6.318971
+2025-08-27 13:56:05,4,5 100000 13 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286000000,5.015776,17.537678
+2025-08-27 13:56:10,3,5 1 6553621 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,734005552,5.000766,6.812981
+2025-08-27 13:56:15,3,5 1 204803000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819212000,5.228105,6.381871
+2025-08-27 13:56:29,2,5 1 25601000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,716828000,5.051974,7.047679
+2025-08-27 13:56:36,4,5 1 1638431 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,917521360,5.001288,5.450868
+2025-08-27 13:56:41,2,5 1 409609000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1638436000,6.525540,3.982786
+2025-08-27 13:57:00,3,5 10000 101 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1476620000,5.003015,3.388153
+2025-08-27 13:57:05,2,5 10 409609 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,524299520,5.035029,9.603345
+2025-08-27 13:57:10,2,5 1 6553621 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,937167803,5.034983,5.372552
+2025-08-27 13:57:16,5,5 100 12809 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1286023600,5.003091,3.890357
+2025-08-27 13:57:21,4,5 1 1638431 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1268145594,5.003691,3.945675
+2025-08-27 13:57:26,1,5 10 819229 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,499729690,5.006571,10.018558
+2025-08-27 13:57:31,2,5 100000 13 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286000000,5.016865,17.541486
+2025-08-27 13:57:36,3,5 10 204803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294916320,5.028849,17.051783
+2025-08-27 13:57:41,5,5 1 409609000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,819218000,5.005586,6.110200
+2025-08-27 13:58:01,4,5 1 3276803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,632422979,5.009751,7.921520
+2025-08-27 13:58:07,1,5 1000000 1 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,2202000000,5.001899,2.271525
+2025-08-27 13:58:12,5,5 10 819229 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794652130,5.035839,6.337162
+2025-08-27 13:58:17,2,5 10 204803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,806923820,5.011378,6.210472
+2025-08-27 13:58:22,3,5 1 102407000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819256000,5.217770,6.368913
+2025-08-27 13:58:32,3,5 100000 13 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,656500000,5.003204,7.621027
+2025-08-27 13:58:37,2,5 10000 401 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1110770000,5.000096,4.501468
+2025-08-27 13:58:42,2,5 1 51203000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819248000,5.221683,6.373751
+2025-08-27 13:58:49,1,5 10000 809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,493490000,5.059739,10.252972
+2025-08-27 13:58:54,1,5 1 25601000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,947237000,5.127268,5.412867
+2025-08-27 13:59:01,3,5 100 51203 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,962616400,5.009402,5.203944
+2025-08-27 13:59:06,4,5 10000 809 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1237770000,5.007935,4.045933
+2025-08-27 13:59:11,5,5 100 25601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,473618500,5.024280,10.608285
+2025-08-27 13:59:16,1,5 1 204803000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1433621000,5.717805,3.988366
+2025-08-27 13:59:28,4,5 1000000 7 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1414000000,5.010139,3.543238
+2025-08-27 13:59:33,4,5 10 819229 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1277997240,5.018997,3.927236
+2025-08-27 13:59:38,3,5 100000 53 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,927500000,5.008858,5.400386
+2025-08-27 13:59:43,1,5 100 25601 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,960037500,5.006177,5.214564
+2025-08-27 13:59:48,1,5 10 102407 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1314905880,5.000564,3.802982
+2025-08-27 13:59:53,4,5 10000 809 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1035520000,5.018555,4.846410
+2025-08-27 13:59:59,5,5 1 12809000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794158000,5.036861,6.342392
+2025-08-27 14:00:04,5,5 100000 29 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1595000000,5.001446,3.135703
+2025-08-27 14:00:09,3,5 1 12809000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794158000,5.040173,6.346562
+2025-08-27 14:00:15,1,5 1 12809000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,268989000,5.033541,18.712814
+2025-08-27 14:00:21,1,5 1000000 1 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2203000000,5.001122,2.270142
+2025-08-27 14:00:26,1,5 10 204803 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,530439770,5.016724,9.457669
+2025-08-27 14:00:31,4,5 1000 3203 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,980118000,5.006574,5.108134
+2025-08-27 14:00:36,2,5 1000000 1 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2203000000,5.001027,2.270099
+2025-08-27 14:00:41,2,5 100 25601 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,960037500,5.002852,5.211101
+2025-08-27 14:00:46,4,5 1 102407000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,921663000,5.130460,5.566525
+2025-08-27 14:00:55,2,5 1000000 3 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.033200,17.296220
+2025-08-27 14:01:00,3,5 1000000 3 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,303000000,5.004539,16.516630
+2025-08-27 14:01:05,5,5 10 204803 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294916320,5.003481,16.965765
+2025-08-27 14:01:10,1,5 10000 401 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.008888,10.496632
+2025-08-27 14:01:15,4,5 1 51203000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819248000,5.215150,6.365777
+2025-08-27 14:01:23,5,5 100000 29 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,530700000,5.010589,9.441472
+2025-08-27 14:01:28,1,5 10 409609 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,946196790,5.016737,5.302002
+2025-08-27 14:01:33,5,5 1000000 7 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2093000000,5.015763,2.396447
+2025-08-27 14:01:38,3,5 1 1638431 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,912606067,5.002937,5.482033
+2025-08-27 14:01:43,1,5 100000 53 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1001700000,5.035581,5.027035
+2025-08-27 14:01:48,1,5 100000 13 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,647400000,5.005187,7.731213
+2025-08-27 14:01:53,5,5 10 204803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,806923820,5.007683,6.205893
+2025-08-27 14:01:59,5,5 10000 401 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.008922,10.496704
+2025-08-27 14:02:04,1,5 10 819229 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286730150,5.124750,17.873077
+2025-08-27 14:02:09,5,5 100000 13 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1092000000,5.000479,4.579193
+2025-08-27 14:02:14,4,5 1 25601000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1280050000,5.084167,3.971850
+2025-08-27 14:02:20,3,5 1 204803000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1024015000,5.610348,5.478775
+2025-08-27 14:02:33,1,5 1 1638431 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,786446880,5.002896,6.361391
+2025-08-27 14:02:38,5,5 1 409609000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,16.108935,39.327590
+2025-08-27 14:03:11,3,5 100 25601 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,289291300,5.007940,17.311063
+2025-08-27 14:03:16,5,5 10 204803 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,942093800,5.000541,5.307901
+2025-08-27 14:03:21,1,5 1000000 7 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,308000000,5.068715,16.456867
+2025-08-27 14:03:26,2,5 1 12809000 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,935057000,5.032903,5.382456
+2025-08-27 14:03:32,1,5 1000 1601 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,480300000,5.005385,10.421372
+2025-08-27 14:03:37,4,5 1000 6473 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,970950000,5.001899,5.151552
+2025-08-27 14:03:42,5,5 1000 6473 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1307546000,5.009978,3.831588
+2025-08-27 14:03:47,5,5 10 409609 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299014570,5.057157,16.912744
+2025-08-27 14:03:52,3,5 1000 3203 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307488000,5.001176,16.264622
+2025-08-27 14:03:57,3,5 1000000 3 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2370000000,5.001046,2.110146
+2025-08-27 14:04:03,1,5 100000 29 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,530700000,5.012296,9.444688
+2025-08-27 14:04:08,3,5 1000 6473 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304231000,5.011914,16.474041
+2025-08-27 14:04:13,3,5 1 6553621 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,792988141,5.029521,6.342492
+2025-08-27 14:04:18,1,5 1 3276803 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,789709523,5.004846,6.337578
+2025-08-27 14:04:23,5,5 1000000 1 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1926000000,5.002361,2.597280
+2025-08-27 14:04:28,2,5 1000 1601 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,806904000,5.006769,6.204913
+2025-08-27 14:04:33,1,5 10 102407 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,961601730,5.004975,5.204832
+2025-08-27 14:04:39,5,5 10 409609 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,897043710,5.000760,5.574712
+2025-08-27 14:04:44,5,5 1 12809000 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,819776000,5.066139,6.179906
+2025-08-27 14:04:49,1,5 10 409609 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,528395610,5.012311,9.485906
+2025-08-27 14:04:54,5,5 1 102407000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204814000,5.880950,28.713613
+2025-08-27 14:05:04,1,5 1000000 7 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,812000000,5.036230,6.202254
+2025-08-27 14:05:10,2,5 10 819229 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286730150,5.014063,17.487045
+2025-08-27 14:05:15,4,5 1000000 1 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2203000000,5.002044,2.270560
+2025-08-27 14:05:20,3,5 1000 6473 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,479002000,5.023106,10.486608
+2025-08-27 14:05:25,4,5 100000 13 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1092000000,5.001608,4.580227
+2025-08-27 14:05:30,5,5 10000 809 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,493490000,5.057128,10.247681
+2025-08-27 14:05:35,4,5 1000000 7 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2093000000,5.012493,2.394884
+2025-08-27 14:05:40,3,5 1000 3203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,803953000,5.007412,6.228488
+2025-08-27 14:05:45,5,5 100000 13 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,644800000,5.000051,7.754422
+2025-08-27 14:05:50,1,5 10000 101 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,884760000,5.002334,5.653888
+2025-08-27 14:05:55,3,5 10 409609 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,483338620,5.008050,10.361369
+2025-08-27 14:06:00,2,5 1000000 3 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1989000000,5.002034,2.514849
+2025-08-27 14:06:06,3,5 100 51203 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,798766800,5.019810,6.284450
+2025-08-27 14:06:11,1,5 10000 401 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1415530000,5.012179,3.540850
+2025-08-27 14:06:16,2,5 1000 6473 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1333438000,5.017606,3.762909
+2025-08-27 14:06:21,3,5 10000 809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307420000,5.015059,16.313379
+2025-08-27 14:06:26,3,5 10000 401 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1110770000,5.000093,4.501466
+2025-08-27 14:06:31,1,5 1 25601000 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1280050000,5.078621,3.967518
+2025-08-27 14:06:37,4,5 10 102407 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1299544830,5.001932,3.848988
+2025-08-27 14:06:42,2,5 100 12809 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1316765200,5.000646,3.797675
+2025-08-27 14:06:47,4,5 1000000 3 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1980000000,5.007245,2.528912
+2025-08-27 14:06:52,4,5 1 12809000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,794158000,5.037570,6.343284
+2025-08-27 14:06:58,2,5 10000 809 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291240000,5.123589,17.592326
+2025-08-27 14:07:03,5,5 100 12809 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,785191700,5.000008,6.367882
+2025-08-27 14:07:08,4,5 1 102407000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819256000,5.229517,6.383251
+2025-08-27 14:07:18,2,5 1 102407000 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,819256000,5.214219,6.364578
+2025-08-27 14:07:28,4,5 1000000 7 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,819000000,5.040940,6.154994
+2025-08-27 14:07:33,5,5 1000000 1 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.001838,17.188447
+2025-08-27 14:07:38,4,5 10 409609 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,798737550,5.014203,6.277660
+2025-08-27 14:07:43,3,5 10000 101 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,954450000,5.003971,5.242780
+2025-08-27 14:07:48,2,5 1000000 7 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2086000000,5.001346,2.397577
+2025-08-27 14:07:53,5,5 100000 29 -1 -1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1012100000,5.004637,4.944805
+2025-08-27 14:07:58,5,5 100000 53 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,985800000,5.004777,5.076869
+2025-08-27 14:08:03,1,5 10000 101 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1481670000,5.002973,3.376577
+2025-08-27 14:08:08,4,5 1 51203000 -1 -1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,256015000,5.660797,22.111193
+2025-08-27 14:08:16,5,5 1000 6473 -1 -1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,479002000,5.018144,10.476249
+2025-08-27 14:08:21,4,5 100000 53 -1 -1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1526400000,5.013018,3.284210
+2025-08-27 14:08:26,3,5 1000 1601 -1 -1 0  ,./perfexp--lq-list--stack-insfirst-allhead,999024000,5.004893,5.009783
Index: doc/theses/mike_brooks_MMath/benchmarks/list/results-zoomout-shuf.csv
===================================================================
--- doc/theses/mike_brooks_MMath/benchmarks/list/results-zoomout-shuf.csv	(revision 9989781ad5d96b88ab5fe9f06b38717feaaf75ea)
+++ doc/theses/mike_brooks_MMath/benchmarks/list/results-zoomout-shuf.csv	(revision bb5b86660851b58d8e5a505176422ffa0c70a253)
@@ -1,725 +1,725 @@
-2025-08-12 12:58:17,2,5 1 1638431 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,22938034,5.333856,232.533268
-2025-08-12 12:58:23,2,5 1000000 7 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,812000000,5.006383,6.165496
-2025-08-12 12:58:28,2,5 100000 53 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,514100000,5.045774,9.814771
-2025-08-12 12:58:33,5,5 10 102407 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,131080960,5.010773,38.226551
-2025-08-12 12:58:38,2,5 1 12809000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,38427000,6.014264,156.511411
-2025-08-12 12:58:47,5,5 1 6553621 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,19660863,5.156308,262.262547
-2025-08-12 12:58:53,1,5 100 51203 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,168969900,5.058886,29.939569
-2025-08-12 12:58:59,2,5 1 204803000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,204803000,90.198502,440.415922
-2025-08-12 13:01:25,3,5 100000 29 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1334000000,5.004323,3.751367
-2025-08-12 13:01:30,5,5 1 51203000 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,51203000,15.506408,302.841787
-2025-08-12 13:01:58,2,5 1000 6473 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,317177000,5.066253,15.972952
-2025-08-12 13:02:04,3,5 1000 6473 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,491948000,5.045055,10.255261
-2025-08-12 13:02:09,5,5 1 6553621 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,19660863,5.222725,265.640679
-2025-08-12 13:02:15,1,5 1000000 1 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,3021000000,5.001028,1.655421
-2025-08-12 13:02:20,5,5 1000 3203 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,538104000,5.015723,9.321103
-2025-08-12 13:02:26,1,5 10000 809 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,412590000,5.017502,12.160988
-2025-08-12 13:02:31,2,5 1 25601000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25601000,7.392658,288.764423
-2025-08-12 13:02:44,2,5 1 51203000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51203000,9.818110,191.748726
-2025-08-12 13:03:07,2,5 100000 53 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,296800000,5.059040,17.045283
-2025-08-12 13:03:12,4,5 10000 809 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,404500000,5.012926,12.392895
-2025-08-12 13:03:17,3,5 1 6553621 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660863,5.285951,268.856510
-2025-08-12 13:03:24,4,5 1000000 7 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,819000000,5.033294,6.145658
-2025-08-12 13:03:29,4,5 100 51203 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,168969900,5.036405,29.806522
-2025-08-12 13:03:34,3,5 10 204803 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,98305440,5.056342,51.435017
-2025-08-12 13:03:40,4,5 1000 6473 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304231000,5.013022,16.477683
-2025-08-12 13:03:45,1,5 100 12809 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,260022700,5.001155,19.233532
-2025-08-12 13:03:50,4,5 10000 809 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,695740000,5.000445,7.187232
-2025-08-12 13:03:55,2,5 1 6553621 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660863,5.275889,268.344731
-2025-08-12 13:04:01,2,5 1 6553621 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,19660863,5.173021,263.112611
-2025-08-12 13:04:08,3,5 1 25601000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25601000,7.251152,283.237061
-2025-08-12 13:04:21,5,5 100000 29 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1334000000,5.004123,3.751217
-2025-08-12 13:04:26,3,5 100 12809 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,262584500,5.011903,19.086820
-2025-08-12 13:04:32,3,5 1 12809000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25618000,7.129671,278.307089
-2025-08-12 13:04:42,3,5 100000 29 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1009200000,5.006790,4.961147
-2025-08-12 13:04:47,3,5 1 6553621 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,19660863,5.148513,261.866074
-2025-08-12 13:04:53,1,5 1000000 3 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1614000000,5.007236,3.102377
-2025-08-12 13:04:58,5,5 1000000 7 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301000000,5.075446,16.861947
-2025-08-12 13:05:04,2,5 1 409609000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,409609000,191.277925,466.976861
-2025-08-12 13:10:17,4,5 1 3276803 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22937621,5.622617,245.126424
-2025-08-12 13:10:23,1,5 10 102407 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,140297590,5.008628,35.700029
-2025-08-12 13:10:28,1,5 1 102407000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,102407000,23.066796,225.246282
-2025-08-12 13:11:18,4,5 100000 53 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286200000,5.072228,17.722669
-2025-08-12 13:11:23,1,5 1 25601000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51202000,8.528156,166.559041
-2025-08-12 13:11:38,3,5 1000 1601 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291382000,5.025323,17.246511
-2025-08-12 13:11:43,4,5 1 3276803 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,22937621,5.820237,253.741964
-2025-08-12 13:11:50,5,5 10 819229 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,32769160,6.615560,201.883722
-2025-08-12 13:11:57,2,5 1 6553621 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,19660863,5.199737,264.471453
-2025-08-12 13:12:03,5,5 1 204803000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,204803000,90.226940,440.554777
-2025-08-12 13:14:30,4,5 1 102407000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,102407000,38.758727,378.477321
-2025-08-12 13:15:36,5,5 1 51203000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,51203000,16.116536,314.757651
-2025-08-12 13:16:05,2,5 100 51203 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,184330800,5.060383,27.452726
-2025-08-12 13:16:10,5,5 1000 3203 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,541307000,5.015800,9.266091
-2025-08-12 13:16:15,2,5 10 819229 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,40961450,5.203534,127.034907
-2025-08-12 13:16:20,1,5 1 409609000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,409609000,196.816691,480.498942
-2025-08-12 13:21:42,5,5 1000000 3 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2025000000,5.000938,2.469599
-2025-08-12 13:21:47,5,5 10 204803 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,94209380,5.045446,53.555665
-2025-08-12 13:21:52,3,5 10 204803 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,83969230,5.091059,60.630055
-2025-08-12 13:21:57,2,5 100000 29 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301600000,5.007504,16.603130
-2025-08-12 13:22:02,4,5 10000 401 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1299240000,5.013976,3.859161
-2025-08-12 13:22:07,1,5 1000 1601 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304190000,5.000417,16.438466
-2025-08-12 13:22:13,2,5 10 204803 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,122881800,5.001832,40.704417
-2025-08-12 13:22:18,2,5 1 51203000 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,51203000,15.467945,302.090600
-2025-08-12 13:22:46,2,5 100000 29 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1452900000,5.001677,3.442547
-2025-08-12 13:22:51,5,5 1 6553621 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660863,5.288592,268.990837
-2025-08-12 13:22:58,5,5 1000 1601 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291382000,5.023643,17.240746
-2025-08-12 13:23:03,3,5 100000 53 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1388600000,5.015293,3.611762
-2025-08-12 13:23:08,2,5 10 102407 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,140297590,5.009332,35.705047
-2025-08-12 13:23:13,5,5 100000 29 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304500000,5.011010,16.456519
-2025-08-12 13:23:18,4,5 1 12809000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25618000,7.021803,274.096456
-2025-08-12 13:23:28,3,5 100000 13 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1496300000,5.000702,3.342045
-2025-08-12 13:23:33,4,5 10000 211 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,951610000,5.004429,5.258908
-2025-08-12 13:23:38,4,5 1 409609000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,409609000,196.796916,480.450664
-2025-08-12 13:29:00,1,5 1 1638431 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,22938034,5.385165,234.770120
-2025-08-12 13:29:05,2,5 1000 1601 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,621188000,5.002515,8.053142
-2025-08-12 13:29:11,3,5 10000 101 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,954450000,5.004907,5.243760
-2025-08-12 13:29:16,3,5 10 102407 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,139273520,5.034221,36.146290
-2025-08-12 13:29:21,1,5 1000 6473 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,427218000,5.028078,11.769350
-2025-08-12 13:29:26,4,5 1000000 3 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1797000000,5.007697,2.786698
-2025-08-12 13:29:31,3,5 1 12809000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25618000,7.129673,278.307167
-2025-08-12 13:29:41,5,5 1 51203000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51203000,9.741857,190.259497
-2025-08-12 13:30:04,3,5 10000 401 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,890220000,5.010880,5.628811
-2025-08-12 13:30:09,1,5 10000 401 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,292730000,5.063606,17.297872
-2025-08-12 13:30:14,4,5 10 409609 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,36864810,5.042014,136.770378
-2025-08-12 13:30:19,1,5 1 1638431 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,22938034,5.115846,223.028966
-2025-08-12 13:30:25,2,5 1 102407000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,102407000,35.891245,350.476481
-2025-08-12 13:31:27,4,5 10000 211 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291180000,5.011463,17.210876
-2025-08-12 13:31:32,3,5 1 102407000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,102407000,23.083118,225.405666
-2025-08-12 13:32:22,2,5 100 25601 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,197127700,5.031084,25.521954
-2025-08-12 13:32:27,5,5 100000 29 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1452900000,5.002816,3.443331
-2025-08-12 13:32:32,1,5 1000000 7 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2212000000,5.006233,2.263216
-2025-08-12 13:32:37,3,5 1000 3203 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,361939000,5.024930,13.883362
-2025-08-12 13:32:43,2,5 1000000 1 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,3027000000,5.001030,1.652141
-2025-08-12 13:32:48,3,5 10000 211 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1145730000,5.001846,4.365641
-2025-08-12 13:32:53,4,5 1 51203000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,51203000,15.369965,300.177040
-2025-08-12 13:33:21,5,5 100000 53 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1118300000,5.013345,4.483005
-2025-08-12 13:33:26,4,5 10000 809 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,970800000,5.012041,5.162795
-2025-08-12 13:33:31,4,5 10000 101 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,958490000,5.000579,5.217143
-2025-08-12 13:33:36,3,5 1 25601000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25601000,7.422880,289.944924
-2025-08-12 13:33:50,2,5 1 51203000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,51203000,16.096134,314.359198
-2025-08-12 13:34:19,3,5 10000 211 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,945280000,5.003806,5.293464
-2025-08-12 13:34:24,3,5 100 51203 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,189451100,5.092268,26.879063
-2025-08-12 13:34:29,1,5 10 204803 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,94209380,5.067789,53.792828
-2025-08-12 13:34:34,1,5 1 3276803 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22937621,5.692942,248.192347
-2025-08-12 13:34:41,2,5 1000000 3 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2499000000,5.005245,2.002899
-2025-08-12 13:34:46,1,5 10 204803 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,122881800,5.067766,41.240981
-2025-08-12 13:34:51,4,5 10 204803 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,83969230,5.074048,60.427468
-2025-08-12 13:34:56,5,5 10000 211 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,949500000,5.010864,5.277371
-2025-08-12 13:35:01,1,5 1 25601000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25601000,7.398955,289.010390
-2025-08-12 13:35:15,5,5 1000000 7 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,819000000,5.029655,6.141215
-2025-08-12 13:35:20,3,5 100000 13 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1094600000,5.000592,4.568420
-2025-08-12 13:35:25,2,5 100000 53 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,975200000,5.010296,5.137711
-2025-08-12 13:35:30,4,5 1000000 1 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,3027000000,5.000900,1.652098
-2025-08-12 13:35:35,1,5 1 3276803 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660818,5.002963,254.463624
-2025-08-12 13:35:41,1,5 10 204803 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,94209380,5.028415,53.374887
-2025-08-12 13:35:46,1,5 10000 101 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1092820000,5.003711,4.578715
-2025-08-12 13:35:51,2,5 1 204803000 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,204803000,86.457015,422.147210
-2025-08-12 13:38:12,4,5 10 204803 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,96257410,5.025705,52.211097
-2025-08-12 13:38:17,1,5 10 409609 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,36864810,5.074765,137.658786
-2025-08-12 13:38:22,4,5 1000 1601 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,363427000,5.022030,13.818539
-2025-08-12 13:38:27,2,5 1000000 3 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1626000000,5.007200,3.079459
-2025-08-12 13:38:32,4,5 100000 53 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,975200000,5.009669,5.137068
-2025-08-12 13:38:37,1,5 1 51203000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,51203000,16.070043,313.849638
-2025-08-12 13:39:07,3,5 1000000 1 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1928000000,5.002381,2.594596
-2025-08-12 13:39:12,1,5 100000 53 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,514100000,5.034972,9.793760
-2025-08-12 13:39:17,2,5 100000 13 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,653900000,5.006301,7.656065
-2025-08-12 13:39:22,1,5 1000000 7 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,819000000,5.029502,6.141028
-2025-08-12 13:39:27,5,5 10000 809 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299330000,5.034432,16.819002
-2025-08-12 13:39:32,2,5 1 204803000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,52.061415,254.202404
-2025-08-12 13:41:21,5,5 10 409609 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,61441350,5.266285,85.712391
-2025-08-12 13:41:26,1,5 100 51203 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,174090200,5.142881,29.541473
-2025-08-12 13:41:32,5,5 10000 809 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,922260000,5.003408,5.425160
-2025-08-12 13:41:37,2,5 1 12809000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25618000,7.166498,279.744633
-2025-08-12 13:41:47,3,5 1000 1601 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,582764000,5.001025,8.581561
-2025-08-12 13:41:52,1,5 1000000 1 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,303000000,5.008881,16.530960
-2025-08-12 13:41:57,4,5 1000 1601 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,590769000,5.009837,8.480196
-2025-08-12 13:42:02,3,5 1 51203000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,51203000,16.131923,315.058161
-2025-08-12 13:42:31,4,5 1000000 7 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2212000000,5.006004,2.263112
-2025-08-12 13:42:36,3,5 1 3276803 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,22937621,5.682254,247.726388
-2025-08-12 13:42:43,5,5 1 1638431 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,22938034,5.074954,221.246250
-2025-08-12 13:42:48,4,5 10000 401 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.018247,10.516245
-2025-08-12 13:42:53,4,5 1 204803000 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,204803000,86.260186,421.186145
-2025-08-12 13:45:14,4,5 100 51203 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,153609000,5.097338,33.183850
-2025-08-12 13:45:19,2,5 10 819229 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,32769160,5.826529,177.805260
-2025-08-12 13:45:25,2,5 10 204803 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,94209380,5.054819,53.655156
-2025-08-12 13:45:30,3,5 1000 3203 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,531698000,5.004704,9.412682
-2025-08-12 13:45:35,4,5 1 204803000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,51.987970,253.843791
-2025-08-12 13:47:24,2,5 10 409609 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,36864810,5.048013,136.933108
-2025-08-12 13:47:29,5,5 1 51203000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,51203000,15.385100,300.472629
-2025-08-12 13:47:57,1,5 100000 53 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1383300000,5.001132,3.615363
-2025-08-12 13:48:02,1,5 1000000 3 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2511000000,5.002492,1.992231
-2025-08-12 13:48:08,1,5 1 25601000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25601000,7.284214,284.528495
-2025-08-12 13:48:21,4,5 100000 13 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1095900000,5.003665,4.565804
-2025-08-12 13:48:26,3,5 1000000 7 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2212000000,5.000605,2.260671
-2025-08-12 13:48:31,1,5 100000 13 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1748500000,5.001391,2.860389
-2025-08-12 13:48:36,3,5 1000000 1 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,3027000000,5.001252,1.652214
-2025-08-12 13:48:41,4,5 1000 6473 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,420745000,5.016179,11.922136
-2025-08-12 13:48:46,3,5 10 409609 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,57345260,5.335873,93.048196
-2025-08-12 13:48:52,4,5 10 102407 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,162827130,5.029227,30.886911
-2025-08-12 13:48:57,5,5 100000 13 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,652600000,5.000213,7.661987
-2025-08-12 13:49:02,2,5 1 25601000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25601000,7.249607,283.176712
-2025-08-12 13:49:15,5,5 10000 211 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286960000,5.011407,17.463782
-2025-08-12 13:49:20,5,5 100000 13 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1751100000,5.003013,2.857069
-2025-08-12 13:49:26,3,5 100 12809 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,368899200,5.001115,13.556861
-2025-08-12 13:49:31,3,5 1 102407000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,102407000,38.695424,377.859170
-2025-08-12 13:50:36,4,5 100000 29 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,548100000,5.010039,9.140739
-2025-08-12 13:50:41,1,5 10 409609 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,36864810,5.020928,136.198396
-2025-08-12 13:50:46,2,5 1000 1601 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,611582000,5.002162,8.179054
-2025-08-12 13:50:52,5,5 1000 6473 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,491948000,5.060236,10.286120
-2025-08-12 13:50:57,2,5 1000000 3 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.001278,17.186522
-2025-08-12 13:51:02,5,5 10 409609 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,36864810,5.134087,139.267963
-2025-08-12 13:51:07,1,5 100 12809 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,290764300,5.020027,17.264936
-2025-08-12 13:51:12,3,5 1 25601000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51202000,8.421847,164.482774
-2025-08-12 13:51:27,5,5 10000 401 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1182950000,5.008956,4.234292
-2025-08-12 13:51:32,3,5 10000 809 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291240000,5.030482,17.272634
-2025-08-12 13:51:37,5,5 1000 6473 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.014274,16.138428
-2025-08-12 13:51:42,4,5 10 819229 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,32769160,5.774201,176.208392
-2025-08-12 13:51:48,3,5 10000 401 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304760000,5.023967,16.484995
-2025-08-12 13:51:53,5,5 1 3276803 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660818,5.001847,254.406861
-2025-08-12 13:51:59,5,5 1 12809000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25618000,7.153228,279.226638
-2025-08-12 13:52:09,5,5 100 51203 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,168969900,5.016258,29.687287
-2025-08-12 13:52:14,3,5 1 6553621 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,19660863,5.210894,265.038925
-2025-08-12 13:52:21,2,5 100 51203 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,168969900,5.028201,29.757969
-2025-08-12 13:52:26,3,5 1 1638431 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,21299603,5.000262,234.758460
-2025-08-12 13:52:31,5,5 1 3276803 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,22937621,5.708259,248.860115
-2025-08-12 13:52:37,5,5 100 25601 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,248329700,5.046567,20.322044
-2025-08-12 13:52:43,5,5 10000 101 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,949400000,5.001022,5.267561
-2025-08-12 13:52:48,5,5 1 409609000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,409609000,196.171675,478.924230
-2025-08-12 13:58:09,2,5 10000 101 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1351380000,5.001983,3.701389
-2025-08-12 13:58:15,3,5 1 204803000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,204803000,90.075239,439.814060
-2025-08-12 14:00:41,1,5 1 204803000 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,204803000,86.219117,420.985615
-2025-08-12 14:03:02,3,5 1000 1601 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,617986000,5.009723,8.106532
-2025-08-12 14:03:07,5,5 1000 3203 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,541307000,5.012753,9.260462
-2025-08-12 14:03:12,1,5 1000000 7 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1344000000,5.020896,3.735786
-2025-08-12 14:03:17,3,5 1 51203000 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,51203000,15.489344,302.508525
-2025-08-12 14:03:45,4,5 1 12809000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25618000,7.150068,279.103287
-2025-08-12 14:03:55,4,5 1 25601000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25601000,7.432969,290.339010
-2025-08-12 14:04:09,3,5 10 409609 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,57345260,5.231455,91.227331
-2025-08-12 14:04:15,2,5 10000 101 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,486820000,5.009199,10.289633
-2025-08-12 14:04:20,1,5 100000 13 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,653900000,5.001621,7.648908
-2025-08-12 14:04:25,3,5 10 102407 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,162827130,5.017545,30.815166
-2025-08-12 14:04:30,3,5 10 819229 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,32769160,6.625588,202.189742
-2025-08-12 14:04:37,3,5 1000 1601 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,627592000,5.009337,7.981837
-2025-08-12 14:04:42,1,5 1000 3203 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,538104000,5.007738,9.306264
-2025-08-12 14:04:47,3,5 1 204803000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,204803000,90.398652,441.393202
-2025-08-12 14:07:14,2,5 1000000 1 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,306000000,5.013279,16.383265
-2025-08-12 14:07:19,4,5 100000 13 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1747200000,5.002285,2.863029
-2025-08-12 14:07:24,5,5 100 51203 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,148488700,5.104276,34.374845
-2025-08-12 14:07:29,4,5 100000 13 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,652600000,5.001177,7.663465
-2025-08-12 14:07:34,4,5 1 6553621 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660863,5.297449,269.441326
-2025-08-12 14:07:41,1,5 1000 3203 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,541307000,5.010573,9.256435
-2025-08-12 14:07:46,1,5 1000 1601 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,621188000,5.003455,8.054655
-2025-08-12 14:07:51,2,5 1000 1601 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291382000,5.024290,17.242966
-2025-08-12 14:07:56,4,5 1 3276803 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660818,5.004143,254.523642
-2025-08-12 14:08:02,2,5 1000 3203 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,345924000,5.026824,14.531585
-2025-08-12 14:08:07,2,5 1000 1601 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,592370000,5.002252,8.444472
-2025-08-12 14:08:12,1,5 10000 211 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,478970000,5.002038,10.443322
-2025-08-12 14:08:17,4,5 10000 809 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,315510000,5.031506,15.947216
-2025-08-12 14:08:22,4,5 10 819229 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,32769160,6.578382,200.749180
-2025-08-12 14:08:29,2,5 1 3276803 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660818,5.006653,254.651307
-2025-08-12 14:08:34,3,5 1000000 1 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,300000000,5.012268,16.707560
-2025-08-12 14:08:39,5,5 10 819229 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,40961450,5.035555,122.934003
-2025-08-12 14:08:45,3,5 10 819229 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,32769160,5.776111,176.266679
-2025-08-12 14:08:50,5,5 1000 6473 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,433691000,5.063657,11.675725
-2025-08-12 14:08:56,4,5 10000 401 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,292730000,5.052897,17.261289
-2025-08-12 14:09:01,3,5 100000 53 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,514100000,5.038817,9.801239
-2025-08-12 14:09:06,1,5 10 102407 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,139273520,5.036101,36.159788
-2025-08-12 14:09:11,3,5 100000 29 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1452900000,5.004826,3.444715
-2025-08-12 14:09:16,3,5 10 819229 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,24576870,5.007831,203.761952
-2025-08-12 14:09:21,4,5 10 409609 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,53249170,5.026315,94.392363
-2025-08-12 14:09:26,2,5 1 102407000 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,102407000,36.117530,352.686145
-2025-08-12 14:10:29,4,5 1 25601000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51202000,8.434938,164.738448
-2025-08-12 14:10:43,1,5 10 409609 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,57345260,5.126940,89.404774
-2025-08-12 14:10:49,4,5 100000 29 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1009200000,5.006959,4.961315
-2025-08-12 14:10:54,2,5 1000000 7 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1337000000,5.022750,3.756731
-2025-08-12 14:10:59,2,5 10 204803 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,126977860,5.071565,39.940546
-2025-08-12 14:11:04,3,5 1 12809000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25618000,6.998099,273.171169
-2025-08-12 14:11:14,3,5 1 51203000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51203000,9.737653,190.177392
-2025-08-12 14:11:37,1,5 1 3276803 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36044833,5.205535,144.418341
-2025-08-12 14:11:43,3,5 10 819229 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,32769160,5.718813,174.518144
-2025-08-12 14:11:48,5,5 1 409609000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,111.185640,271.443352
-2025-08-12 14:15:46,4,5 100000 29 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1452900000,5.001178,3.442204
-2025-08-12 14:15:51,4,5 100000 29 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1342700000,5.004003,3.726821
-2025-08-12 14:15:56,4,5 1 102407000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,102407000,35.947941,351.030115
-2025-08-12 14:16:58,2,5 1 409609000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,409609000,196.561743,479.876524
-2025-08-12 14:22:19,2,5 10 409609 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,53249170,5.043489,94.714885
-2025-08-12 14:22:24,5,5 10 204803 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,118785740,5.029363,42.339788
-2025-08-12 14:22:30,5,5 1 51203000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,51203000,16.034301,313.151593
-2025-08-12 14:22:59,3,5 100 12809 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,321505900,5.001346,15.556001
-2025-08-12 14:23:04,5,5 10000 101 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,486820000,5.006671,10.284440
-2025-08-12 14:23:09,4,5 1 204803000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,204803000,90.411206,441.454500
-2025-08-12 14:25:35,2,5 1 6553621 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660863,5.298305,269.484864
-2025-08-12 14:25:42,5,5 100 51203 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,184330800,5.113333,27.739982
-2025-08-12 14:25:47,3,5 1000000 7 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301000000,5.106884,16.966392
-2025-08-12 14:25:53,3,5 1 1638431 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,22938034,5.377418,234.432384
-2025-08-12 14:25:58,5,5 1 204803000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,204803000,90.428993,441.541349
-2025-08-12 14:28:25,1,5 100 51203 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,184330800,5.099706,27.666055
-2025-08-12 14:28:30,1,5 1 25601000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25601000,7.429234,290.193117
-2025-08-12 14:28:44,1,5 1 409609000 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,409609000,192.075478,468.923969
-2025-08-12 14:33:57,3,5 10 409609 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,36864810,5.217495,141.530500
-2025-08-12 14:34:02,4,5 10 409609 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,57345260,5.373834,93.710169
-2025-08-12 14:34:08,5,5 1 102407000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102407000,38.601513,376.942133
-2025-08-12 14:35:13,1,5 100000 29 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1452900000,5.001648,3.442527
-2025-08-12 14:35:18,3,5 1 409609000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,111.086331,271.200904
-2025-08-12 14:39:15,3,5 1000 6473 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,310704000,5.015245,16.141553
-2025-08-12 14:39:20,1,5 100 25601 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,258570100,5.004210,19.353398
-2025-08-12 14:39:25,3,5 10 819229 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,49153740,5.882720,119.680008
-2025-08-12 14:39:31,4,5 10 102407 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,130056890,5.015646,38.565016
-2025-08-12 14:39:37,2,5 10000 211 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,297510000,5.033087,16.917371
-2025-08-12 14:39:42,3,5 100000 13 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,651300000,5.007941,7.689146
-2025-08-12 14:39:47,1,5 10000 101 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,957480000,5.000948,5.223031
-2025-08-12 14:39:52,3,5 1000 3203 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,538104000,5.004696,9.300611
-2025-08-12 14:39:57,4,5 1000000 1 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301000000,5.006394,16.632538
-2025-08-12 14:40:02,4,5 10000 401 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,942350000,5.021028,5.328199
-2025-08-12 14:40:07,4,5 100 25601 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,197127700,5.062070,25.679141
-2025-08-12 14:40:12,1,5 1 102407000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,102407000,35.824807,349.827717
-2025-08-12 14:41:14,5,5 10 204803 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,83969230,5.090691,60.625672
-2025-08-12 14:41:19,1,5 100000 29 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1009200000,5.007956,4.962303
-2025-08-12 14:41:24,1,5 1 3276803 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660818,5.010197,254.831564
-2025-08-12 14:41:30,2,5 1 51203000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,51203000,16.083228,314.107142
-2025-08-12 14:41:59,5,5 10 102407 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,139273520,5.023060,36.066152
-2025-08-12 14:42:04,1,5 1000 3203 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,534901000,5.011349,9.368741
-2025-08-12 14:42:09,4,5 1000000 7 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,308000000,5.045094,16.380175
-2025-08-12 14:42:15,2,5 100000 29 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1334000000,5.001264,3.749073
-2025-08-12 14:42:20,1,5 10 819229 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,49153740,5.889270,119.813263
-2025-08-12 14:42:26,1,5 10 204803 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,118785740,5.018327,42.246881
-2025-08-12 14:42:31,5,5 1000000 1 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2202000000,5.000235,2.270770
-2025-08-12 14:42:36,2,5 10 204803 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,81921200,5.007405,61.124654
-2025-08-12 14:42:41,1,5 10 102407 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,131080960,5.030915,38.380212
-2025-08-12 14:42:46,5,5 1 102407000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,102407000,35.903190,350.593124
-2025-08-12 14:43:48,5,5 100000 13 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1098500000,5.004550,4.555803
-2025-08-12 14:43:53,3,5 1000 6473 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,317177000,5.095281,16.064472
-2025-08-12 14:43:58,5,5 1 3276803 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,22937621,5.815951,253.555109
-2025-08-12 14:44:05,5,5 100 25601 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,197127700,5.050887,25.622411
-2025-08-12 14:44:10,1,5 100 12809 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,376584600,5.001825,13.282075
-2025-08-12 14:44:15,2,5 10000 809 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,922260000,5.022474,5.445833
-2025-08-12 14:44:20,2,5 1000 3203 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,313894000,5.043387,16.067166
-2025-08-12 14:44:25,2,5 10 102407 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,131080960,5.002591,38.164132
-2025-08-12 14:44:30,2,5 100 25601 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,243209500,5.015497,20.622126
-2025-08-12 14:44:36,2,5 1000 6473 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,485475000,5.008589,10.316883
-2025-08-12 14:44:41,3,5 100 25601 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,197127700,5.028318,25.507922
-2025-08-12 14:44:46,5,5 10 409609 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,53249170,5.010512,94.095589
-2025-08-12 14:44:51,2,5 10000 401 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,938340000,5.018475,5.348248
-2025-08-12 14:44:56,5,5 10000 401 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,934330000,5.018775,5.371523
-2025-08-12 14:45:01,1,5 1 204803000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,204803000,90.121058,440.037783
-2025-08-12 14:47:28,4,5 1 6553621 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,39321726,5.901454,150.081255
-2025-08-12 14:47:35,4,5 10000 101 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1350370000,5.000299,3.702910
-2025-08-12 14:47:40,3,5 10000 809 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,954620000,5.029197,5.268271
-2025-08-12 14:47:45,2,5 10000 809 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,954620000,5.032116,5.271329
-2025-08-12 14:47:50,2,5 1 102407000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,102407000,23.069397,225.271681
-2025-08-12 14:48:41,5,5 1 102407000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,102407000,23.060453,225.184343
-2025-08-12 14:49:31,3,5 1 102407000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,102407000,35.835445,349.931596
-2025-08-12 14:50:33,5,5 10 204803 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,94209380,5.015753,53.240484
-2025-08-12 14:50:38,2,5 10000 211 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,949500000,5.006894,5.273190
-2025-08-12 14:50:43,1,5 1000 1601 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,611582000,5.008483,8.189389
-2025-08-12 14:50:48,5,5 10 204803 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,122881800,5.003412,40.717275
-2025-08-12 14:50:53,3,5 1000000 7 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1715000000,5.004362,2.917995
-2025-08-12 14:50:58,3,5 1 409609000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,409609000,196.118915,478.795424
-2025-08-12 14:56:20,1,5 1 409609000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,111.009110,271.012380
-2025-08-12 15:00:17,5,5 1 6553621 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,39321726,5.902070,150.096921
-2025-08-12 15:00:24,4,5 1000000 3 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.001910,17.188694
-2025-08-12 15:00:29,2,5 100000 29 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1009200000,5.006986,4.961342
-2025-08-12 15:00:34,4,5 1 51203000 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,51203000,15.510012,302.912173
-2025-08-12 15:01:02,1,5 1 1638431 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,21299603,5.030749,236.189801
-2025-08-12 15:01:08,4,5 1 51203000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,51203000,16.118320,314.792493
-2025-08-12 15:01:37,4,5 100 25601 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,184327200,5.021100,27.240147
-2025-08-12 15:01:42,2,5 10000 211 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1331410000,5.002383,3.757207
-2025-08-12 15:01:47,4,5 100 25601 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,197127700,5.055741,25.647035
-2025-08-12 15:01:52,2,5 1 1638431 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,37683913,5.170151,137.197828
-2025-08-12 15:01:57,5,5 10 819229 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,32769160,6.567853,200.427872
-2025-08-12 15:02:04,5,5 100000 53 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1388600000,5.013125,3.610201
-2025-08-12 15:02:09,5,5 1 25601000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25601000,7.441294,290.664193
-2025-08-12 15:02:23,1,5 100000 53 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,975200000,5.012011,5.139470
-2025-08-12 15:02:28,4,5 1 204803000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,204803000,90.054254,439.711596
-2025-08-12 15:04:55,4,5 1 6553621 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,19660863,5.205664,264.772915
-2025-08-12 15:05:01,5,5 10000 401 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304760000,5.034172,16.518480
-2025-08-12 15:05:06,3,5 10 102407 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,131080960,5.020782,38.302908
-2025-08-12 15:05:11,4,5 1 409609000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,111.366974,271.886052
-2025-08-12 15:09:09,5,5 1 409609000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,409609000,190.584213,465.283265
-2025-08-12 15:14:21,1,5 1 204803000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,204803000,90.403784,441.418260
-2025-08-12 15:16:48,3,5 100 25601 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,194567600,5.009894,25.748861
-2025-08-12 15:16:53,3,5 1000000 3 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2496000000,5.001165,2.003672
-2025-08-12 15:16:58,5,5 100 12809 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,270269900,5.007427,18.527505
-2025-08-12 15:17:03,1,5 10000 101 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1351380000,5.001320,3.700898
-2025-08-12 15:17:08,4,5 1000000 3 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2496000000,5.000811,2.003530
-2025-08-12 15:17:13,5,5 1000 1601 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,587567000,5.003068,8.514889
-2025-08-12 15:17:18,4,5 1000 1601 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,617986000,5.002651,8.095088
-2025-08-12 15:17:23,5,5 1 3276803 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36044833,5.212791,144.619646
-2025-08-12 15:17:29,1,5 10 409609 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,53249170,5.288391,99.314055
-2025-08-12 15:17:35,5,5 1 1638431 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,21299603,5.006028,235.029169
-2025-08-12 15:17:40,2,5 10000 809 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291240000,5.018080,17.230051
-2025-08-12 15:17:45,1,5 1000 6473 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,485475000,5.006375,10.312323
-2025-08-12 15:17:50,3,5 10 204803 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,98305440,5.101907,51.898522
-2025-08-12 15:17:55,4,5 100 25601 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,248329700,5.042530,20.305787
-2025-08-12 15:18:00,5,5 1000000 3 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1614000000,5.000814,3.098398
-2025-08-12 15:18:06,1,5 10000 809 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,930350000,5.041183,5.418588
-2025-08-12 15:18:11,2,5 100000 13 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1500200000,5.001550,3.333922
-2025-08-12 15:18:16,1,5 1 1638431 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,37683913,5.122523,135.933946
-2025-08-12 15:18:21,2,5 1000 1601 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,363427000,5.019413,13.811338
-2025-08-12 15:18:26,4,5 1000000 1 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1928000000,5.001964,2.594380
-2025-08-12 15:18:31,2,5 1 409609000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,409609000,195.828040,478.085296
-2025-08-12 15:23:52,3,5 1 3276803 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660818,5.019116,255.285207
-2025-08-12 15:23:58,4,5 1000000 7 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1344000000,5.002176,3.721857
-2025-08-12 15:24:03,1,5 1 25601000 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,25601000,7.305310,285.352525
-2025-08-12 15:24:17,4,5 1 25601000 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,25601000,7.313363,285.667083
-2025-08-12 15:24:30,2,5 100 51203 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,168969900,5.077322,30.048677
-2025-08-12 15:24:35,4,5 10 102407 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,138249450,5.025037,36.347609
-2025-08-12 15:24:40,2,5 1 3276803 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22937621,5.632358,245.551097
-2025-08-12 15:24:47,1,5 10000 101 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,314110000,5.000966,15.921066
-2025-08-12 15:24:52,5,5 10000 211 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.021876,10.438754
-2025-08-12 15:24:57,5,5 10000 401 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1303250000,5.011138,3.845109
-2025-08-12 15:25:02,3,5 10 102407 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,138249450,5.005132,36.203630
-2025-08-12 15:25:07,1,5 1000000 7 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.053419,17.188500
-2025-08-12 15:25:12,4,5 10 819229 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,32769160,5.788461,176.643558
-2025-08-12 15:25:18,3,5 1000000 7 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,812000000,5.005676,6.164626
-2025-08-12 15:25:23,5,5 1000 1601 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,614784000,5.011334,8.151373
-2025-08-12 15:25:28,1,5 1 409609000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,409609000,190.840220,465.908269
-2025-08-12 15:30:41,3,5 100 25601 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,258570100,5.009279,19.373002
-2025-08-12 15:30:46,3,5 1000000 3 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1809000000,5.005380,2.766932
-2025-08-12 15:30:51,5,5 1000000 3 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1812000000,5.006104,2.762751
-2025-08-12 15:30:56,3,5 10000 101 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1342290000,5.001322,3.725962
-2025-08-12 15:31:01,4,5 1 102407000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102407000,38.577505,376.707696
-2025-08-12 15:32:07,5,5 100 12809 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,312539600,5.001199,16.001809
-2025-08-12 15:32:12,3,5 1000000 7 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1337000000,5.008316,3.745936
-2025-08-12 15:32:17,1,5 100 25601 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,184327200,5.014662,27.205220
-2025-08-12 15:32:22,2,5 10000 211 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1152060000,5.006556,4.345742
-2025-08-12 15:32:27,4,5 1000 1601 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,630794000,5.002215,7.930029
-2025-08-12 15:32:32,1,5 100 25601 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,253449900,5.008760,19.762328
-2025-08-12 15:32:38,5,5 100 25601 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,194567600,5.040678,25.907078
-2025-08-12 15:32:43,3,5 1 409609000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,409609000,196.740415,480.312725
-2025-08-12 15:38:04,3,5 10000 101 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,486820000,5.004397,10.279769
-2025-08-12 15:38:10,2,5 1 1638431 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,22938034,5.069592,221.012490
-2025-08-12 15:38:15,4,5 100 25601 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,248329700,5.036226,20.280401
-2025-08-12 15:38:20,5,5 1 25601000 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,25601000,7.294195,284.918363
-2025-08-12 15:38:33,1,5 1000000 3 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,315000000,5.038551,15.995400
-2025-08-12 15:38:39,5,5 100 25601 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,256010000,5.046902,19.713691
-2025-08-12 15:38:44,1,5 100000 29 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,290000000,5.004988,17.258579
-2025-08-12 15:38:49,4,5 1000000 3 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1680000000,5.003168,2.978076
-2025-08-12 15:38:54,4,5 1000000 1 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2203000000,5.000917,2.270049
-2025-08-12 15:38:59,3,5 1000 3203 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,544510000,5.014851,9.209842
-2025-08-12 15:39:04,2,5 10 204803 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,96257410,5.061620,52.584211
-2025-08-12 15:39:09,3,5 10000 401 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1198990000,5.010828,4.179207
-2025-08-12 15:39:14,1,5 10000 809 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,315510000,5.121865,16.233606
-2025-08-12 15:39:20,4,5 10 819229 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,40961450,5.210753,127.211146
-2025-08-12 15:39:25,4,5 100000 29 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,290000000,5.004542,17.257041
-2025-08-12 15:39:30,3,5 1 1638431 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22938034,5.018435,218.782264
-2025-08-12 15:39:35,2,5 1 102407000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,102407000,38.742716,378.320974
-2025-08-12 15:40:41,4,5 1000000 7 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1715000000,5.015172,2.924299
-2025-08-12 15:40:46,1,5 1 204803000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,204803000,85.640794,418.161814
-2025-08-12 15:43:06,1,5 1 12809000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,38427000,6.013327,156.487027
-2025-08-12 15:43:15,5,5 1000 6473 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,317177000,5.082166,16.023123
-2025-08-12 15:43:21,3,5 100000 53 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1075900000,5.025076,4.670579
-2025-08-12 15:43:26,2,5 100000 53 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1033500000,5.003681,4.841491
-2025-08-12 15:43:31,5,5 10000 101 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1081710000,5.001935,4.624100
-2025-08-12 15:43:36,2,5 100000 29 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,551000000,5.019327,9.109486
-2025-08-12 15:43:41,3,5 10 409609 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,53249170,5.262765,98.832808
-2025-08-12 15:43:46,4,5 10000 101 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,288860000,5.005258,17.327626
-2025-08-12 15:43:51,3,5 1000000 1 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2203000000,5.001985,2.270533
-2025-08-12 15:43:57,1,5 10 819229 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,24576870,5.007370,203.743194
-2025-08-12 15:44:02,5,5 1000000 1 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1928000000,5.001248,2.594008
-2025-08-12 15:44:07,5,5 1 409609000 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,409609000,192.102887,468.990884
-2025-08-12 15:49:20,2,5 100 12809 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,275393500,5.018601,18.223382
-2025-08-12 15:49:25,2,5 10 409609 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,36864810,5.073596,137.627076
-2025-08-12 15:49:30,4,5 100000 53 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,514100000,5.040811,9.805118
-2025-08-12 15:49:36,1,5 10 819229 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,32769160,6.626478,202.216902
-2025-08-12 15:49:42,3,5 10000 101 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1076660000,5.004643,4.648304
-2025-08-12 15:49:47,3,5 10 204803 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,122881800,5.058232,41.163394
-2025-08-12 15:49:53,2,5 10 102407 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,142345730,5.025749,35.306637
-2025-08-12 15:49:58,1,5 1000000 3 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2064000000,5.000345,2.422648
-2025-08-12 15:50:03,2,5 10000 809 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,687650000,5.044080,7.335243
-2025-08-12 15:50:08,2,5 1 1638431 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22938034,5.043911,219.892908
-2025-08-12 15:50:13,4,5 1000 3203 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,538104000,5.020771,9.330484
-2025-08-12 15:50:18,5,5 1000000 7 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1337000000,5.012207,3.748846
-2025-08-12 15:50:24,5,5 100000 29 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,545200000,5.002526,9.175580
-2025-08-12 15:50:29,1,5 1 12809000 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,25618000,7.048303,275.130885
-2025-08-12 15:50:39,1,5 1 6553621 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,19660863,5.174113,263.168153
-2025-08-12 15:50:45,5,5 1 6553621 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660863,5.297116,269.424389
-2025-08-12 15:50:52,1,5 10 102407 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,171019690,5.016748,29.334330
-2025-08-12 15:50:57,1,5 1 6553621 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,19660863,5.194648,264.212614
-2025-08-12 15:51:04,2,5 10000 401 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.020167,10.520269
-2025-08-12 15:51:09,4,5 1000 3203 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310691000,5.008686,16.121117
-2025-08-12 15:51:14,5,5 10000 211 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1154170000,5.008781,4.339726
-2025-08-12 15:51:19,3,5 1 51203000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,51203000,16.068663,313.822686
-2025-08-12 15:51:48,2,5 1 204803000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,204803000,85.609367,418.008364
-2025-08-12 15:54:08,2,5 1000000 7 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.052211,17.184391
-2025-08-12 15:54:13,3,5 1 12809000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,38427000,6.012246,156.458896
-2025-08-12 15:54:22,3,5 100 25601 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,186887300,5.068566,27.120976
-2025-08-12 15:54:28,5,5 10000 211 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1331410000,5.000352,3.755682
-2025-08-12 15:54:33,4,5 1 51203000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,51203000,16.054836,313.552643
-2025-08-12 15:55:02,3,5 1000000 1 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2567000000,5.000048,1.947818
-2025-08-12 15:55:07,3,5 100 51203 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,153609000,5.092313,33.151137
-2025-08-12 15:55:12,3,5 100 51203 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,174090200,5.136557,29.505147
-2025-08-12 15:55:17,2,5 100 12809 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,224157500,5.012917,22.363370
-2025-08-12 15:55:22,4,5 10000 401 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1182950000,5.012608,4.237379
-2025-08-12 15:55:28,4,5 100 12809 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,271550800,5.012626,18.459257
-2025-08-12 15:55:33,1,5 1 409609000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,409609000,195.837380,478.108098
-2025-08-12 16:00:54,3,5 1 409609000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,409609000,190.736621,465.655347
-2025-08-12 16:06:06,2,5 10 819229 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,32769160,6.675595,203.715780
-2025-08-12 16:06:13,2,5 1 409609000 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,409609000,192.224739,469.288368
-2025-08-12 16:11:26,2,5 100 25601 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,194567600,5.015478,25.777560
-2025-08-12 16:11:31,2,5 1 51203000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,51203000,15.369790,300.173623
-2025-08-12 16:11:59,2,5 10000 101 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,959500000,5.004830,5.216081
-2025-08-12 16:12:04,3,5 1 51203000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,51203000,15.379909,300.371248
-2025-08-12 16:12:32,4,5 1 102407000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,102407000,22.992792,224.523636
-2025-08-12 16:13:22,5,5 1 1638431 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,37683913,5.209860,138.251566
-2025-08-12 16:13:28,4,5 1 51203000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51203000,9.722512,189.881687
-2025-08-12 16:13:51,1,5 100000 13 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1493700000,5.002476,3.349050
-2025-08-12 16:13:56,1,5 10 819229 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,32769160,5.807307,177.218671
-2025-08-12 16:14:02,3,5 1 102407000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102407000,38.572605,376.659847
-2025-08-12 16:15:07,2,5 1000 3203 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,538104000,5.023515,9.335584
-2025-08-12 16:15:12,1,5 1000000 1 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2203000000,5.001348,2.270244
-2025-08-12 16:15:17,5,5 100000 53 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291500000,5.022220,17.228885
-2025-08-12 16:15:23,4,5 100000 53 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1388600000,5.018730,3.614237
-2025-08-12 16:15:28,5,5 1000 1601 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,363427000,5.016778,13.804087
-2025-08-12 16:15:33,4,5 1 12809000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25618000,7.150249,279.110352
-2025-08-12 16:15:43,2,5 1000000 1 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2567000000,5.001167,1.948254
-2025-08-12 16:15:48,3,5 100 12809 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,226719300,5.023650,22.158017
-2025-08-12 16:15:53,4,5 100 51203 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,148488700,5.021549,33.817718
-2025-08-12 16:15:58,4,5 1 1638431 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,22938034,5.089878,221.896872
-2025-08-12 16:16:04,1,5 1 6553621 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660863,5.279367,268.521631
-2025-08-12 16:16:10,1,5 100 12809 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,225438400,5.024332,22.286940
-2025-08-12 16:16:15,1,5 1 3276803 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,22937621,5.662952,246.884888
-2025-08-12 16:16:22,1,5 1 51203000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,51203000,16.113999,314.708103
-2025-08-12 16:16:51,3,5 1 6553621 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,39321726,5.899341,150.027519
-2025-08-12 16:16:58,4,5 1000 6473 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,317177000,5.041593,15.895204
-2025-08-12 16:17:03,1,5 100000 53 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1065300000,5.004875,4.698090
-2025-08-12 16:17:08,5,5 10 102407 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,140297590,5.013411,35.734121
-2025-08-12 16:17:13,5,5 1000000 1 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,305000000,5.011741,16.431938
-2025-08-12 16:17:18,3,5 1 409609000 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,409609000,192.050546,468.863101
-2025-08-12 16:22:32,5,5 1 1638431 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,24576465,5.349330,217.660677
-2025-08-12 16:22:37,2,5 10000 809 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,412590000,5.027894,12.186175
-2025-08-12 16:22:42,1,5 100 25601 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,197127700,5.062721,25.682443
-2025-08-12 16:22:48,2,5 10000 101 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,297950000,5.001601,16.786713
-2025-08-12 16:22:53,1,5 100000 29 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,548100000,5.003729,9.129226
-2025-08-12 16:22:58,4,5 1 3276803 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36044833,5.218483,144.777561
-2025-08-12 16:23:04,4,5 10 102407 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,130056890,5.001444,38.455817
-2025-08-12 16:23:09,3,5 10000 101 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,285830000,5.004193,17.507585
-2025-08-12 16:23:14,2,5 1000 6473 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.014513,16.139197
-2025-08-12 16:23:19,5,5 1 102407000 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,102407000,36.136516,352.871542
-2025-08-12 16:24:21,2,5 10000 401 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,288720000,5.003618,17.330348
-2025-08-12 16:24:26,1,5 10000 401 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.020195,10.520327
-2025-08-12 16:24:31,4,5 100 12809 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,322786800,5.018286,15.546751
-2025-08-12 16:24:36,4,5 1000 3203 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,541307000,5.002690,9.241872
-2025-08-12 16:24:41,2,5 100 12809 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,372741900,5.010388,13.441977
-2025-08-12 16:24:46,1,5 10000 401 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,938340000,5.005717,5.334652
-2025-08-12 16:24:52,2,5 100 12809 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,307416000,5.011546,16.302164
-2025-08-12 16:24:57,2,5 10 819229 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,32769160,5.755305,175.631753
-2025-08-12 16:25:03,3,5 1 3276803 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660818,5.002601,254.445212
-2025-08-12 16:25:08,4,5 10 409609 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,36864810,5.023429,136.266239
-2025-08-12 16:25:13,1,5 10 819229 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,32769160,5.785474,176.552405
-2025-08-12 16:25:19,1,5 1 204803000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,52.079160,254.289049
-2025-08-12 16:27:08,1,5 1 51203000 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,51203000,15.455043,301.838623
-2025-08-12 16:27:36,3,5 1000000 3 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.001398,17.186935
-2025-08-12 16:27:41,3,5 1 3276803 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36044833,5.189044,143.960828
-2025-08-12 16:27:47,4,5 100000 53 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1054700000,5.010975,4.751090
-2025-08-12 16:27:52,2,5 100000 13 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,289900000,5.004678,17.263463
-2025-08-12 16:27:57,4,5 1 1638431 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,37683913,5.146682,136.575042
-2025-08-12 16:28:03,2,5 10 409609 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,57345260,5.324545,92.850656
-2025-08-12 16:28:08,2,5 1 204803000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,204803000,90.363620,441.222150
-2025-08-12 16:30:35,1,5 1 102407000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,102407000,38.800043,378.880770
-2025-08-12 16:31:40,5,5 10000 809 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,711920000,5.043388,7.084206
-2025-08-12 16:31:46,5,5 1000 6473 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,491948000,5.037751,10.240414
-2025-08-12 16:31:51,4,5 10000 211 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1329300000,5.001622,3.762598
-2025-08-12 16:31:56,1,5 10000 211 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1327190000,5.003053,3.769658
-2025-08-12 16:32:01,4,5 1 1638431 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22938034,5.046840,220.020600
-2025-08-12 16:32:06,3,5 1000 3203 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310691000,5.000607,16.095114
-2025-08-12 16:32:11,3,5 100 51203 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,168969900,5.094965,30.153092
-2025-08-12 16:32:17,1,5 1 6553621 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,39321726,5.901397,150.079806
-2025-08-12 16:32:24,5,5 100000 29 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1009200000,5.007455,4.961806
-2025-08-12 16:32:29,3,5 1 6553621 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660863,5.279180,268.512120
-2025-08-12 16:32:36,4,5 1 25601000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25601000,7.277381,284.261591
-2025-08-12 16:32:49,1,5 1000 1601 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,365028000,5.013738,13.735215
-2025-08-12 16:32:54,2,5 100000 13 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1768000000,5.001127,2.828692
-2025-08-12 16:32:59,1,5 10 409609 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,53249170,5.004227,93.977559
-2025-08-12 16:33:04,2,5 100000 53 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1383300000,5.005514,3.618531
-2025-08-12 16:33:09,3,5 100 51203 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,148488700,5.080846,34.217055
-2025-08-12 16:33:15,1,5 10000 101 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,484800000,5.000735,10.315047
-2025-08-12 16:33:20,3,5 1 12809000 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,25618000,7.059929,275.584706
-2025-08-12 16:33:30,5,5 10 409609 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,53249170,5.259998,98.780845
-2025-08-12 16:33:35,1,5 1 12809000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25618000,7.132010,278.398392
-2025-08-12 16:33:45,5,5 1 12809000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25618000,7.016372,273.884456
-2025-08-12 16:33:55,2,5 1000000 7 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2212000000,5.015435,2.267376
-2025-08-12 16:34:00,2,5 1 12809000 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,25618000,7.059697,275.575650
-2025-08-12 16:34:10,2,5 10000 401 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1295230000,5.001048,3.861127
-2025-08-12 16:34:15,2,5 1000 6473 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,427218000,5.014583,11.737762
-2025-08-12 16:34:20,1,5 1000 6473 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,491948000,5.055899,10.277304
-2025-08-12 16:34:25,3,5 10000 401 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1311270000,5.003882,3.816058
-2025-08-12 16:34:31,2,5 10000 401 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1186960000,5.009112,4.220119
-2025-08-12 16:34:36,3,5 1 25601000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25601000,7.396038,288.896449
-2025-08-12 16:34:49,2,5 10 102407 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,159754920,5.025882,31.459951
-2025-08-12 16:34:54,5,5 10 409609 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,36864810,5.071684,137.575211
-2025-08-12 16:35:00,5,5 100 25601 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,184327200,5.016978,27.217784
-2025-08-12 16:35:05,2,5 1000000 3 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1806000000,5.006163,2.771962
-2025-08-12 16:35:10,2,5 1000000 7 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1715000000,5.009595,2.921047
-2025-08-12 16:35:15,4,5 1 25601000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25601000,7.386720,288.532479
-2025-08-12 16:35:29,5,5 1000000 7 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1715000000,5.006871,2.919458
-2025-08-12 16:35:34,3,5 10000 211 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291180000,5.016605,17.228536
-2025-08-12 16:35:39,4,5 10 102407 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,142345730,5.032926,35.357056
-2025-08-12 16:35:44,5,5 100 12809 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,386831800,5.013896,12.961437
-2025-08-12 16:35:49,5,5 10 102407 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,140297590,5.030969,35.859269
-2025-08-12 16:35:54,2,5 1 102407000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102407000,38.560465,376.541301
-2025-08-12 16:37:00,1,5 1000 6473 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,317177000,5.036167,15.878096
-2025-08-12 16:37:05,4,5 100 12809 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,374022800,5.007483,13.388176
-2025-08-12 16:37:10,1,5 100000 13 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286000000,5.013504,17.529734
-2025-08-12 16:37:15,1,5 100 12809 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,368899200,5.003394,13.563038
-2025-08-12 16:37:20,2,5 10000 211 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.018503,10.431743
-2025-08-12 16:37:25,3,5 1000 1601 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,349018000,5.005689,14.342209
-2025-08-12 16:37:30,2,5 1 6553621 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,39321726,5.915332,150.434190
-2025-08-12 16:37:38,2,5 1 409609000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,111.051371,271.115554
-2025-08-12 16:41:34,5,5 100 12809 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,219033900,5.002005,22.836670
-2025-08-12 16:41:39,2,5 1000000 1 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1928000000,5.001931,2.594363
-2025-08-12 16:41:44,3,5 100 12809 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,377865500,5.001075,13.235066
-2025-08-12 16:41:50,3,5 1 204803000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,204803000,85.716177,418.529890
-2025-08-12 16:44:10,5,5 10 819229 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,32769160,5.728684,174.819373
-2025-08-12 16:44:16,4,5 1000 6473 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,491948000,5.041065,10.247150
-2025-08-12 16:44:21,4,5 10 409609 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,53249170,5.280339,99.162841
-2025-08-12 16:44:27,4,5 10000 211 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,476860000,5.009200,10.504551
-2025-08-12 16:44:32,5,5 1 409609000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,409609000,196.571935,479.901406
-2025-08-12 16:49:53,2,5 1 3276803 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36044833,5.190866,144.011376
-2025-08-12 16:49:59,2,5 1000000 1 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2203000000,5.002019,2.270549
-2025-08-12 16:50:04,5,5 10000 809 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,970800000,5.020398,5.171403
-2025-08-12 16:50:09,1,5 100000 53 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,302100000,5.051403,16.720963
-2025-08-12 16:50:14,4,5 1000 6473 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,491948000,5.054597,10.274657
-2025-08-12 16:50:19,3,5 1 3276803 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22937621,5.630235,245.458542
-2025-08-12 16:50:26,3,5 1 204803000 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,204803000,86.211903,420.950391
-2025-08-12 16:52:46,4,5 1 204803000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,204803000,85.624916,418.084286
-2025-08-12 16:55:07,3,5 10 409609 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,36864810,5.047694,136.924455
-2025-08-12 16:55:12,5,5 100 12809 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,347123900,5.015370,14.448357
-2025-08-12 16:55:17,1,5 1000000 3 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1797000000,5.005025,2.785211
-2025-08-12 16:55:22,4,5 10 204803 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,94209380,5.033138,53.425020
-2025-08-12 16:55:27,5,5 1 204803000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,52.088280,254.333579
-2025-08-12 16:57:16,5,5 1 25601000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51202000,8.428835,164.619253
-2025-08-12 16:57:31,1,5 1000000 1 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2567000000,5.000776,1.948101
-2025-08-12 16:57:36,2,5 10 102407 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,124936540,5.034960,40.300140
-2025-08-12 16:57:41,4,5 1000 3203 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,349127000,5.009640,14.349048
-2025-08-12 16:57:46,4,5 1 3276803 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,22937621,5.673128,247.328526
-2025-08-12 16:57:52,3,5 1 204803000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,51.933766,253.579127
-2025-08-12 16:59:41,4,5 1 6553621 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660863,5.294331,269.282737
-2025-08-12 16:59:48,5,5 1 102407000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,102407000,38.697747,377.881854
-2025-08-12 17:00:53,1,5 100 51203 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,148488700,5.077131,34.192036
-2025-08-12 17:00:58,5,5 100 51203 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,168969900,5.069071,29.999846
-2025-08-12 17:01:04,5,5 1000000 7 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2212000000,5.001490,2.261071
-2025-08-12 17:01:09,5,5 1 204803000 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,204803000,86.190078,420.843826
-2025-08-12 17:03:29,3,5 10000 401 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481200000,5.025500,10.443682
-2025-08-12 17:03:34,1,5 1 51203000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51203000,9.776640,190.938812
-2025-08-12 17:03:57,5,5 1000 3203 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307488000,5.024597,16.340791
-2025-08-12 17:04:03,5,5 1 1638431 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,22938034,5.354620,233.438489
-2025-08-12 17:04:08,4,5 100000 13 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1495000000,5.003944,3.347120
-2025-08-12 17:04:13,5,5 10000 401 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.017088,10.513816
-2025-08-12 17:04:18,5,5 1 12809000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25618000,7.148420,279.038957
-2025-08-12 17:04:28,1,5 1 12809000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25618000,7.009002,273.596768
-2025-08-12 17:04:38,1,5 1 102407000 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,102407000,36.129364,352.801703
-2025-08-12 17:05:41,4,5 10000 211 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1152060000,5.000765,4.340716
-2025-08-12 17:05:46,4,5 10000 101 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1088780000,5.000823,4.593052
-2025-08-12 17:05:51,3,5 10000 211 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1327190000,5.005477,3.771485
-2025-08-12 17:05:56,1,5 100 25601 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,194567600,5.053532,25.973142
-2025-08-12 17:06:01,1,5 1 102407000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102407000,38.653754,377.452264
-2025-08-12 17:07:07,4,5 1 6553621 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,19660863,5.132814,261.067584
-2025-08-12 17:07:13,4,5 1 12809000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,38427000,5.997632,156.078591
-2025-08-12 17:07:22,2,5 1 25601000 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,25601000,7.296693,285.015937
-2025-08-12 17:07:35,1,5 10000 401 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1311270000,5.010071,3.820778
-2025-08-12 17:07:41,1,5 10 204803 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,83969230,5.083543,60.540546
-2025-08-12 17:07:46,1,5 1000000 1 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1928000000,5.001269,2.594019
-2025-08-12 17:07:51,3,5 1 25601000 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,25601000,7.299170,285.112691
-2025-08-12 17:08:04,5,5 10000 101 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1351380000,5.002008,3.701407
-2025-08-12 17:08:09,3,5 100000 29 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,548100000,5.018774,9.156676
-2025-08-12 17:08:14,3,5 100000 53 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291500000,5.024638,17.237180
-2025-08-12 17:08:20,2,5 1000000 3 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2025000000,5.006042,2.472120
-2025-08-12 17:08:25,3,5 10 102407 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,124936540,5.020671,40.185770
-2025-08-12 17:08:30,4,5 100 51203 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,174090200,5.122720,29.425666
-2025-08-12 17:08:35,1,5 1000 1601 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,585966000,5.004063,8.539852
-2025-08-12 17:08:40,1,5 1 51203000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,51203000,15.374623,300.268012
-2025-08-12 17:09:08,5,5 100000 53 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,975200000,5.010470,5.137890
-2025-08-12 17:09:13,4,5 10 819229 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,24576870,5.047800,205.388237
-2025-08-12 17:09:18,3,5 10000 211 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.017931,10.430554
-2025-08-12 17:09:23,2,5 1000 3203 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,538104000,5.009795,9.310087
-2025-08-12 17:09:29,3,5 10000 809 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,720010000,5.041392,7.001836
-2025-08-12 17:09:34,3,5 100000 29 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,290000000,5.005761,17.261245
-2025-08-12 17:09:39,5,5 1000 1601 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,624390000,5.001471,8.010172
-2025-08-12 17:09:44,4,5 100 12809 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,376584600,5.010817,13.305953
-2025-08-12 17:09:49,4,5 10 204803 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,124929830,5.042142,40.359792
-2025-08-12 17:09:54,4,5 100 51203 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,184330800,5.051783,27.406071
-2025-08-12 17:09:59,1,5 10000 211 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,949500000,5.009397,5.275826
-2025-08-12 17:10:04,4,5 1 102407000 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,102407000,36.254521,354.023856
-2025-08-12 17:11:07,1,5 10000 401 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1190970000,5.011904,4.208254
-2025-08-12 17:11:12,4,5 1000 1601 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,308993000,5.000576,16.183460
-2025-08-12 17:11:17,5,5 1 12809000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,38427000,6.065168,157.836105
-2025-08-12 17:11:26,1,5 10000 211 -1 1 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1152060000,5.001463,4.341322
-2025-08-12 17:11:31,1,5 1000 3203 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,355533000,5.031222,14.151210
-2025-08-12 17:11:36,2,5 1 1638431 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,22938034,5.353580,233.393150
-2025-08-12 17:11:42,4,5 10000 101 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,486820000,5.005123,10.281260
-2025-08-12 17:11:47,2,5 1 12809000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25618000,6.992074,272.935983
-2025-08-12 17:11:57,5,5 10000 101 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,314110000,5.005867,15.936669
-2025-08-12 17:12:02,4,5 10000 809 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,930350000,5.008869,5.383854
-2025-08-12 17:12:07,5,5 1 204803000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,204803000,85.721568,418.556213
-2025-08-12 17:14:27,4,5 1 1638431 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,22938034,5.336410,232.644611
-2025-08-12 17:14:33,1,5 1000 3203 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310691000,5.027550,16.181833
-2025-08-12 17:14:38,3,5 100000 13 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1748500000,5.001166,2.860261
-2025-08-12 17:14:43,2,5 10000 101 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,1089790000,5.001748,4.589644
-2025-08-12 17:14:48,5,5 1000 3203 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,339518000,5.004264,14.739319
-2025-08-12 17:14:53,5,5 1 25601000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25601000,7.260994,283.621499
-2025-08-12 17:15:07,1,5 1000000 7 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1715000000,5.005807,2.918838
-2025-08-12 17:15:12,2,5 100 25601 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,184327200,5.065547,27.481278
-2025-08-12 17:15:17,3,5 1 102407000 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,102407000,36.050306,352.029705
-2025-08-12 17:16:19,1,5 1 1638431 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22938034,5.049677,220.144281
-2025-08-12 17:16:24,3,5 1000000 3 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2028000000,5.001493,2.466219
-2025-08-12 17:16:29,2,5 1 3276803 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660818,5.013402,254.994579
-2025-08-12 17:16:35,2,5 100000 13 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1095900000,5.005735,4.567693
-2025-08-12 17:16:40,3,5 1 1638431 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,22938034,5.154430,224.711063
-2025-08-12 17:16:46,5,5 10 819229 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,32769160,5.803184,177.092852
-2025-08-12 17:16:52,2,5 10 819229 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,32769160,6.655403,203.099591
-2025-08-12 17:16:58,5,5 1000000 1 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,3038000000,5.001073,1.646173
-2025-08-12 17:17:03,5,5 10 102407 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,131080960,5.024651,38.332424
-2025-08-12 17:17:09,4,5 1 409609000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,409609000,190.594357,465.308030
-2025-08-12 17:22:21,3,5 1000 6473 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,433691000,5.051765,11.648305
-2025-08-12 17:22:26,5,5 100 51203 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,153609000,5.107634,33.250877
-2025-08-12 17:22:31,4,5 1 409609000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,409609000,195.890838,478.238608
-2025-08-12 17:27:52,1,5 10000 809 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,711920000,5.019076,7.050056
-2025-08-12 17:27:57,2,5 1 25601000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25601000,7.422501,289.930120
-2025-08-12 17:28:11,3,5 1000 6473 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,491948000,5.066243,10.298330
-2025-08-12 17:28:16,5,5 1000000 1 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2567000000,5.000038,1.947814
-2025-08-12 17:28:21,3,5 10 204803 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,122881800,5.040617,41.020045
-2025-08-12 17:28:26,5,5 100000 53 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,514100000,5.039816,9.803182
-2025-08-12 17:28:31,2,5 100 25601 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,261130200,5.035051,19.281764
-2025-08-12 17:28:36,1,5 10000 211 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,312280000,5.031728,16.112873
-2025-08-12 17:28:42,5,5 1 25601000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25601000,7.388535,288.603375
-2025-08-12 17:28:55,4,5 1000 3203 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,541307000,5.025007,9.283100
-2025-08-12 17:29:00,5,5 1000000 3 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,309000000,5.008693,16.209362
-2025-08-12 17:29:05,3,5 1000000 3 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1680000000,5.008961,2.981524
-2025-08-12 17:29:10,2,5 100 12809 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,385550900,5.007120,12.986923
-2025-08-12 17:29:16,2,5 1000 3203 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,544510000,5.024490,9.227544
-2025-08-12 17:29:21,5,5 1 12809000 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,25618000,7.041829,274.878172
-2025-08-12 17:29:31,1,5 100000 13 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1095900000,5.005543,4.567518
-2025-08-12 17:29:36,4,5 1 12809000 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,25618000,7.066459,275.839605
-2025-08-12 17:29:46,5,5 1 3276803 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22937621,5.643529,246.038114
-2025-08-12 17:29:52,2,5 100 51203 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,148488700,5.086996,34.258472
-2025-08-12 17:29:57,5,5 1000000 3 -1 5 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,2496000000,5.001571,2.003835
-2025-08-12 17:30:02,3,5 100000 13 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,279500000,5.017055,17.950107
-2025-08-12 17:30:07,3,5 100000 53 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,975200000,5.009158,5.136544
-2025-08-12 17:30:12,1,5 1000 6473 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,297758000,5.015303,16.843554
-2025-08-12 17:30:17,5,5 10000 809 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,404500000,5.001783,12.365347
-2025-08-12 17:30:23,4,5 100000 13 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,289900000,5.006209,17.268744
-2025-08-12 17:30:28,4,5 1 409609000 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,409609000,192.118078,469.027971
-2025-08-12 17:35:40,4,5 1000000 1 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,2567000000,5.000083,1.947831
-2025-08-12 17:35:46,4,5 10 204803 -1 4 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,122881800,5.017571,40.832499
-2025-08-12 17:35:51,2,5 1 3276803 -1 2 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,22937621,5.685483,247.867161
-2025-08-12 17:35:57,3,5 100 25601 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,248329700,5.029806,20.254549
-2025-08-12 17:36:02,1,5 100000 29 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1331100000,5.004323,3.759539
-2025-08-12 17:36:07,4,5 1000000 3 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2025000000,5.005520,2.471862
-2025-08-12 17:36:12,1,5 10000 809 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,970800000,5.036965,5.188468
-2025-08-12 17:36:18,3,5 10000 809 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,404500000,5.099781,12.607617
-2025-08-12 17:36:23,2,5 100 51203 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,153609000,5.164104,33.618499
-2025-08-12 17:36:28,5,5 100000 13 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1496300000,5.003304,3.343784
-2025-08-12 17:36:33,1,5 100 51203 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,153609000,5.154310,33.554740
-2025-08-12 17:36:38,2,5 1 25601000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51202000,8.424744,164.539354
-2025-08-12 17:36:53,2,5 10 409609 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,53249170,5.251954,98.629781
-2025-08-12 17:36:58,3,5 10000 809 -1 3 0  ,./perfexp--cfa-strip--stack-insfirst-allhead,922260000,5.019363,5.442460
-2025-08-12 17:37:03,1,5 10 102407 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,131080960,5.037077,38.427221
-2025-08-12 17:37:09,4,5 100 12809 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,222876600,5.008673,22.472853
-2025-08-12 17:37:14,2,5 1000 6473 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,491948000,5.046635,10.258472
-2025-08-12 17:37:19,5,5 100000 13 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291200000,5.020001,17.239014
-2025-08-12 17:37:24,1,5 1 6553621 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660863,5.296039,269.369610
-2025-08-12 17:37:31,1,5 1 12809000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25618000,7.130160,278.326177
-2025-08-12 17:37:41,2,5 1 12809000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25618000,7.127070,278.205559
-2025-08-12 17:37:51,3,5 1 1638431 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36045482,5.011699,139.038202
-2025-08-12 17:37:56,4,5 1 1638431 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,21299603,5.010429,235.235793
+2025-08-27 14:08:33,3,5 100000 13 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1092000000,5.000285,4.579016
+2025-08-27 14:08:38,4,5 10000 211 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1451680000,5.001816,3.445536
+2025-08-27 14:08:43,3,5 1 204803000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,204803000,90.062175,439.750272
+2025-08-27 14:11:10,4,5 10000 809 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1367210000,5.014433,3.667639
+2025-08-27 14:11:15,2,5 1 1638431 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,24576465,5.226303,212.654790
+2025-08-27 14:11:20,1,5 10000 809 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,728100000,5.017439,6.891140
+2025-08-27 14:11:25,5,5 10000 211 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,308060000,5.008374,16.257787
+2025-08-27 14:11:31,4,5 1 409609000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,111.569820,272.381271
+2025-08-27 14:15:28,4,5 1 102407000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,102407000,23.059361,225.173680
+2025-08-27 14:16:17,2,5 1 6553621 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660863,5.292114,269.169975
+2025-08-27 14:16:24,2,5 10000 211 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1436910000,5.003451,3.482091
+2025-08-27 14:16:29,4,5 10000 809 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,720010000,5.012589,6.961832
+2025-08-27 14:16:34,5,5 100 51203 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,184330800,5.002096,27.136518
+2025-08-27 14:16:39,2,5 1 409609000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,409609000,186.026755,454.156903
+2025-08-27 14:21:45,2,5 10000 809 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,428770000,5.090338,11.871955
+2025-08-27 14:21:51,4,5 1000000 7 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,308000000,5.043045,16.373523
+2025-08-27 14:21:56,2,5 1000 1601 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,573158000,5.006337,8.734654
+2025-08-27 14:22:01,2,5 1000 3203 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,531698000,5.023016,9.447122
+2025-08-27 14:22:06,1,5 1000000 1 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,2203000000,5.001600,2.270359
+2025-08-27 14:22:11,2,5 1 25601000 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,25601000,7.402511,289.149291
+2025-08-27 14:22:24,2,5 100 12809 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,231842900,5.013751,21.625640
+2025-08-27 14:22:30,2,5 10000 809 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,736190000,5.044401,6.852037
+2025-08-27 14:22:35,5,5 1 102407000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,102407000,23.063718,225.216225
+2025-08-27 14:23:25,2,5 100 51203 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,153609000,5.096021,33.175276
+2025-08-27 14:23:30,2,5 1 102407000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,102407000,23.070628,225.283701
+2025-08-27 14:24:20,3,5 1000 6473 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,323650000,5.050008,15.603300
+2025-08-27 14:24:25,2,5 1 3276803 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,22937621,5.830571,254.192490
+2025-08-27 14:24:31,3,5 10 819229 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,32769160,6.561001,200.218773
+2025-08-27 14:24:38,3,5 1 1638431 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,24576465,5.182983,210.892128
+2025-08-27 14:24:43,3,5 10000 401 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,1110770000,5.002875,4.503970
+2025-08-27 14:24:48,4,5 1000 1601 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,726854000,5.006782,6.888291
+2025-08-27 14:24:53,5,5 1 1638431 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,22938034,5.387619,234.877104
+2025-08-27 14:24:59,5,5 1 25601000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25601000,7.427024,290.106793
+2025-08-27 14:25:13,1,5 1000 6473 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,323650000,5.073492,15.675860
+2025-08-27 14:25:18,4,5 1 1638431 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,22938034,5.370573,234.133972
+2025-08-27 14:25:23,2,5 10 102407 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,134153170,5.012876,37.366810
+2025-08-27 14:25:29,3,5 10 204803 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,131073920,5.059201,38.598075
+2025-08-27 14:25:34,1,5 1000 1601 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,382639000,5.018854,13.116420
+2025-08-27 14:25:39,4,5 100 25601 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,199687800,5.062685,25.353001
+2025-08-27 14:25:44,5,5 1 409609000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,409609000,195.898273,478.256759
+2025-08-27 14:31:05,1,5 10 819229 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,32769160,5.209682,158.981249
+2025-08-27 14:31:11,1,5 100000 53 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,916900000,5.013405,5.467777
+2025-08-27 14:31:16,2,5 100000 53 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286200000,5.020653,17.542463
+2025-08-27 14:31:21,2,5 100000 53 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1521100000,5.000944,3.287715
+2025-08-27 14:31:26,5,5 100000 29 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301600000,5.031044,16.681180
+2025-08-27 14:31:31,1,5 10000 809 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,679560000,5.050844,7.432521
+2025-08-27 14:31:36,5,5 10000 101 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,485810000,5.005801,10.304030
+2025-08-27 14:31:41,3,5 1 3276803 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36044833,5.223437,144.915001
+2025-08-27 14:31:47,3,5 1 25601000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51202000,8.450281,165.038104
+2025-08-27 14:32:02,4,5 1 409609000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,409609000,185.801512,453.607006
+2025-08-27 14:37:08,2,5 10000 101 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,1143320000,5.003956,4.376689
+2025-08-27 14:37:13,5,5 1 51203000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,51203000,16.191048,316.212878
+2025-08-27 14:37:42,5,5 1000000 1 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,306000000,5.013274,16.383248
+2025-08-27 14:37:47,5,5 1000 1601 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,382639000,5.001177,13.070223
+2025-08-27 14:37:52,2,5 1 102407000 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,102407000,38.812945,379.006757
+2025-08-27 14:38:57,1,5 10 819229 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,32769160,6.583614,200.908842
+2025-08-27 14:39:04,3,5 1000000 3 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1971000000,5.005156,2.539399
+2025-08-27 14:39:09,3,5 1000000 7 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2086000000,5.009026,2.401259
+2025-08-27 14:39:14,1,5 1000000 1 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304000000,5.001334,16.451757
+2025-08-27 14:39:19,3,5 100 25601 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,202247900,5.061153,25.024502
+2025-08-27 14:39:24,2,5 1 25601000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25601000,7.436185,290.464630
+2025-08-27 14:39:38,3,5 1 3276803 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660818,5.034339,256.059488
+2025-08-27 14:39:43,4,5 100 12809 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,265146300,5.002736,18.867833
+2025-08-27 14:39:49,5,5 10000 101 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,298960000,5.003771,16.737259
+2025-08-27 14:39:54,5,5 1 12809000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25618000,6.918653,270.069990
+2025-08-27 14:40:03,4,5 1000 1601 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,601976000,5.010117,8.322785
+2025-08-27 14:40:08,2,5 10 204803 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,98305440,5.063798,51.510862
+2025-08-27 14:40:14,4,5 1 3276803 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660818,5.016120,255.132823
+2025-08-27 14:40:19,3,5 10 819229 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,32769160,6.640851,202.655515
+2025-08-27 14:40:26,1,5 1 12809000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,38427000,6.062731,157.772686
+2025-08-27 14:40:35,4,5 10000 211 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,873540000,5.009495,5.734706
+2025-08-27 14:40:40,1,5 1 51203000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51203000,9.773558,190.878620
+2025-08-27 14:41:03,2,5 100 51203 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,184330800,5.073759,27.525291
+2025-08-27 14:41:08,4,5 10000 401 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,1110770000,5.002517,4.503648
+2025-08-27 14:41:13,3,5 10 819229 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,32769160,5.192839,158.467260
+2025-08-27 14:41:18,3,5 100000 29 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301600000,5.029196,16.675053
+2025-08-27 14:41:23,2,5 10000 101 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1474600000,5.003072,3.392833
+2025-08-27 14:41:29,1,5 1 204803000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,204803000,89.964364,439.272686
+2025-08-27 14:43:55,3,5 1 12809000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25618000,7.144888,278.901085
+2025-08-27 14:44:05,1,5 1000000 7 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,812000000,5.028849,6.193164
+2025-08-27 14:44:10,3,5 1 3276803 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,19660818,5.032420,255.961883
+2025-08-27 14:44:16,3,5 100000 29 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1012100000,5.005421,4.945579
+2025-08-27 14:44:21,4,5 1 25601000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51202000,8.462087,165.268681
+2025-08-27 14:44:36,3,5 10000 211 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,955830000,5.003106,5.234305
+2025-08-27 14:44:41,4,5 1 51203000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,51203000,16.053708,313.530613
+2025-08-27 14:45:10,1,5 10 204803 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,81921200,5.059208,61.757006
+2025-08-27 14:45:15,2,5 1000 3203 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,361939000,5.033839,13.907976
+2025-08-27 14:45:20,3,5 1000000 1 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2202000000,5.000297,2.270798
+2025-08-27 14:45:25,4,5 10 409609 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,36864810,5.076231,137.698553
+2025-08-27 14:45:30,4,5 10000 401 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1391470000,5.006474,3.597975
+2025-08-27 14:45:35,1,5 1000000 3 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1998000000,5.004720,2.504865
+2025-08-27 14:45:41,1,5 1 51203000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,51203000,15.036340,293.661309
+2025-08-27 14:46:08,4,5 100000 29 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,530700000,5.002456,9.426147
+2025-08-27 14:46:13,5,5 10 102407 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,156682710,5.030212,32.104449
+2025-08-27 14:46:18,3,5 10000 211 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.016210,10.426977
+2025-08-27 14:46:23,3,5 10000 809 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1367210000,5.021787,3.673018
+2025-08-27 14:46:28,2,5 10 409609 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,36864810,5.046294,136.886478
+2025-08-27 14:46:34,5,5 1 204803000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,52.204423,254.900675
+2025-08-27 14:48:22,3,5 1000 6473 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,440164000,5.032293,11.432768
+2025-08-27 14:48:27,4,5 1 6553621 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660863,5.293013,269.215700
+2025-08-27 14:48:34,3,5 1 409609000 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,409609000,197.489322,482.141071
+2025-08-27 14:53:56,1,5 10000 101 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1019090000,5.001917,4.908219
+2025-08-27 14:54:01,5,5 100000 53 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,1044100000,5.014097,4.802315
+2025-08-27 14:54:06,1,5 1000000 3 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1869000000,5.004810,2.677801
+2025-08-27 14:54:11,1,5 1 6553621 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,19660863,5.087309,258.753087
+2025-08-27 14:54:17,5,5 1 102407000 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,102407000,38.815344,379.030183
+2025-08-27 14:55:23,5,5 1000000 7 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1407000000,5.002641,3.555537
+2025-08-27 14:55:28,4,5 1 51203000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,51203000,16.135503,315.128078
+2025-08-27 14:55:57,1,5 1000 3203 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,361939000,5.038918,13.922009
+2025-08-27 14:56:02,3,5 1000000 3 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2370000000,5.002595,2.110800
+2025-08-27 14:56:07,1,5 100 12809 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,334314900,5.006057,14.974077
+2025-08-27 14:56:12,2,5 1 6553621 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,39321726,5.956550,151.482415
+2025-08-27 14:56:19,3,5 10000 211 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1445350000,5.005982,3.463508
+2025-08-27 14:56:24,5,5 100000 29 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,1270200000,5.014241,3.947600
+2025-08-27 14:56:30,1,5 1 6553621 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,39321726,5.936482,150.972061
+2025-08-27 14:56:37,5,5 10 102407 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,148490150,5.012065,33.753518
+2025-08-27 14:56:42,3,5 1000000 3 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1860000000,5.003623,2.690120
+2025-08-27 14:56:47,3,5 1 51203000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,51203000,16.098926,314.413726
+2025-08-27 14:57:16,3,5 100 25601 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,199687800,5.053406,25.306533
+2025-08-27 14:57:21,5,5 1000 6473 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,433691000,5.031248,11.600997
+2025-08-27 14:57:26,5,5 10000 401 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,1110770000,5.003486,4.504520
+2025-08-27 14:57:31,1,5 100 51203 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,148488700,5.019211,33.801973
+2025-08-27 14:57:37,1,5 1 3276803 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660818,5.009872,254.815034
+2025-08-27 14:57:42,5,5 1 6553621 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,19660863,5.302281,269.687094
+2025-08-27 14:57:49,4,5 10000 401 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,284710000,5.013335,17.608567
+2025-08-27 14:57:54,4,5 10 102407 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,134153170,5.018149,37.406116
+2025-08-27 14:57:59,5,5 100 51203 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,184330800,5.066008,27.483242
+2025-08-27 14:58:04,4,5 100 12809 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,391955400,5.015549,12.796224
+2025-08-27 14:58:09,4,5 1000000 1 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,2203000000,5.001651,2.270382
+2025-08-27 14:58:14,3,5 1000 1601 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,720450000,5.007958,6.951153
+2025-08-27 14:58:19,4,5 1 102407000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,102407000,38.879725,379.658861
+2025-08-27 14:59:25,2,5 100000 53 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,1107700000,5.018258,4.530340
+2025-08-27 14:59:30,5,5 100000 13 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,653900000,5.003952,7.652473
+2025-08-27 14:59:35,1,5 100000 13 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,651300000,5.005125,7.684823
+2025-08-27 14:59:40,4,5 1000000 3 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1854000000,5.003146,2.698569
+2025-08-27 14:59:45,1,5 10 819229 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,32769160,6.646856,202.838767
+2025-08-27 14:59:52,4,5 100 25601 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,199687800,5.057405,25.326560
+2025-08-27 14:59:57,1,5 1 51203000 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,51203000,16.154259,315.494385
+2025-08-27 15:00:26,2,5 1 409609000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,111.426050,272.030278
+2025-08-27 15:04:23,2,5 1 12809000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,38427000,6.058433,157.660837
+2025-08-27 15:04:32,3,5 1000000 1 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,2202000000,5.000586,2.270929
+2025-08-27 15:04:37,4,5 1 409609000 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,409609000,197.526614,482.232114
+2025-08-27 15:09:59,1,5 1 204803000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,204803000,90.722892,442.976382
+2025-08-27 15:12:25,4,5 1000 1601 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299387000,5.014284,16.748503
+2025-08-27 15:12:30,4,5 10 102407 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,146442010,5.016970,34.259090
+2025-08-27 15:12:35,3,5 10000 809 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,695740000,5.040022,7.244117
+2025-08-27 15:12:41,1,5 1000 6473 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,440164000,5.066119,11.509617
+2025-08-27 15:12:46,3,5 10 102407 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,154634570,5.017422,32.446962
+2025-08-27 15:12:51,2,5 1 12809000 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,25618000,7.135658,278.540792
+2025-08-27 15:13:01,1,5 1 102407000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,102407000,38.859967,379.465925
+2025-08-27 15:14:06,4,5 1 409609000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,409609000,195.808029,478.036442
+2025-08-27 15:19:28,4,5 1000000 7 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1659000000,5.018758,3.025171
+2025-08-27 15:19:33,1,5 100000 13 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286000000,5.016200,17.539161
+2025-08-27 15:19:38,2,5 1000 1601 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,715647000,5.011186,7.002315
+2025-08-27 15:19:43,1,5 1 204803000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,52.255273,255.148963
+2025-08-27 15:21:32,4,5 100000 29 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,1273100000,5.009051,3.934531
+2025-08-27 15:21:37,1,5 100 51203 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,189451100,5.107420,26.959041
+2025-08-27 15:21:42,1,5 10000 401 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.016501,10.512586
+2025-08-27 15:21:47,1,5 1 102407000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102407000,38.565023,376.585810
+2025-08-27 15:22:53,2,5 10 204803 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,81921200,5.073284,61.928829
+2025-08-27 15:22:58,4,5 1 1638431 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,22938034,5.374872,234.321390
+2025-08-27 15:23:03,1,5 1 3276803 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,22937621,5.832337,254.269482
+2025-08-27 15:23:10,5,5 1000000 7 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.026282,17.096197
+2025-08-27 15:23:15,1,5 1 102407000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,102407000,23.064623,225.225063
+2025-08-27 15:24:05,1,5 100000 13 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1726400000,5.003141,2.898020
+2025-08-27 15:24:10,5,5 100 25601 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,184327200,5.016538,27.215397
+2025-08-27 15:24:15,2,5 10000 211 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,869320000,5.002499,5.754497
+2025-08-27 15:24:20,3,5 10 204803 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,112641650,5.026125,44.620485
+2025-08-27 15:24:25,3,5 100000 53 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286200000,5.019254,17.537575
+2025-08-27 15:24:30,5,5 10 409609 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,81921800,5.212482,63.627533
+2025-08-27 15:24:36,4,5 1 204803000 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,204803000,90.711570,442.921100
+2025-08-27 15:27:02,5,5 1000 3203 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,534901000,5.043341,9.428550
+2025-08-27 15:27:07,3,5 10000 101 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,1132210000,5.000661,4.416726
+2025-08-27 15:27:12,3,5 1000 1601 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307392000,5.007177,16.289224
+2025-08-27 15:27:17,1,5 1 1638431 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,21299603,5.009696,235.201379
+2025-08-27 15:27:23,5,5 10 204803 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,129025890,5.012117,38.845824
+2025-08-27 15:27:28,1,5 10000 809 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1367210000,5.017121,3.669605
+2025-08-27 15:27:33,5,5 1 102407000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,102407000,33.910174,331.131407
+2025-08-27 15:28:33,2,5 100 51203 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,153609000,5.169504,33.653653
+2025-08-27 15:28:38,2,5 1 409609000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,409609000,195.926382,478.325383
+2025-08-27 15:33:59,5,5 1 25601000 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,25601000,7.408342,289.377056
+2025-08-27 15:34:13,4,5 100000 53 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1521100000,5.014651,3.296727
+2025-08-27 15:34:18,4,5 100000 29 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,287100000,5.041317,17.559446
+2025-08-27 15:34:23,1,5 10000 101 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,891830000,5.001872,5.608549
+2025-08-27 15:34:28,4,5 1000000 3 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2373000000,5.004853,2.109083
+2025-08-27 15:34:33,4,5 10 102407 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,131080960,5.022152,38.313360
+2025-08-27 15:34:38,3,5 10000 401 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481200000,5.026947,10.446690
+2025-08-27 15:34:43,5,5 1000 1601 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,576360000,5.001819,8.678290
+2025-08-27 15:34:49,3,5 100 51203 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,148488700,5.091240,34.287053
+2025-08-27 15:34:54,2,5 1000000 1 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,314000000,5.011476,15.960115
+2025-08-27 15:34:59,5,5 100 12809 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,261303600,5.011250,19.177884
+2025-08-27 15:35:04,2,5 1 6553621 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660863,5.280012,268.554437
+2025-08-27 15:35:11,1,5 1000 3203 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,534901000,5.027094,9.398176
+2025-08-27 15:35:16,5,5 1000 1601 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,600375000,5.004181,8.335092
+2025-08-27 15:35:21,4,5 1000 6473 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,440164000,5.014867,11.393178
+2025-08-27 15:35:26,2,5 100000 29 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,287100000,5.041117,17.558750
+2025-08-27 15:35:31,5,5 1 51203000 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,51203000,16.127812,314.977872
+2025-08-27 15:36:00,1,5 10 409609 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,73729620,5.200300,70.532033
+2025-08-27 15:36:05,2,5 1000 3203 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,534901000,5.012180,9.370295
+2025-08-27 15:36:10,5,5 1 51203000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,51203000,15.051717,293.961623
+2025-08-27 15:36:38,1,5 10000 101 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,297950000,5.009985,16.814851
+2025-08-27 15:36:43,2,5 100000 29 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1595000000,5.000893,3.135356
+2025-08-27 15:36:48,5,5 10 204803 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,81921200,5.050233,61.647449
+2025-08-27 15:36:53,3,5 1 25601000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25601000,7.210870,281.663607
+2025-08-27 15:37:06,5,5 1000000 3 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1878000000,5.004379,2.664739
+2025-08-27 15:37:11,2,5 100 25601 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,197127700,5.039002,25.562120
+2025-08-27 15:37:16,1,5 10 409609 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,36864810,5.035392,136.590749
+2025-08-27 15:37:21,4,5 100000 13 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,646100000,5.006648,7.749030
+2025-08-27 15:37:27,1,5 10 409609 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,36864810,5.087142,137.994526
+2025-08-27 15:37:32,1,5 100000 29 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1012100000,5.005446,4.945604
+2025-08-27 15:37:37,3,5 1 204803000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,204803000,81.841934,399.612965
+2025-08-27 15:39:53,2,5 1 204803000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,204803000,81.796038,399.388866
+2025-08-27 15:42:08,5,5 1 25601000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51202000,8.459507,165.218292
+2025-08-27 15:42:23,2,5 1 3276803 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660818,5.013366,254.992748
+2025-08-27 15:42:29,1,5 10000 401 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,850120000,5.023255,5.908878
+2025-08-27 15:42:34,2,5 10 409609 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,73729620,5.129839,69.576366
+2025-08-27 15:42:39,5,5 100 51203 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,148488700,5.126531,34.524721
+2025-08-27 15:42:44,5,5 1 6553621 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660863,5.304554,269.802704
+2025-08-27 15:42:51,2,5 10 819229 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,32769160,5.185803,158.252546
+2025-08-27 15:42:56,2,5 1000000 1 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2202000000,5.000396,2.270843
+2025-08-27 15:43:01,5,5 1000000 3 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1995000000,5.005467,2.509006
+2025-08-27 15:43:06,5,5 10000 101 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,1143320000,5.003363,4.376170
+2025-08-27 15:43:11,3,5 1000000 7 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,819000000,5.029564,6.141104
+2025-08-27 15:43:17,4,5 10000 809 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,428770000,5.094734,11.882207
+2025-08-27 15:43:22,1,5 100 51203 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,184330800,5.064333,27.474155
+2025-08-27 15:43:27,4,5 100 51203 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,184330800,5.000082,27.125592
+2025-08-27 15:43:32,3,5 100 51203 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,184330800,5.050859,27.401058
+2025-08-27 15:43:37,3,5 1 1638431 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,21299603,5.027049,236.016089
+2025-08-27 15:43:42,2,5 10000 809 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291240000,5.109316,17.543318
+2025-08-27 15:43:48,3,5 100 51203 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,153609000,5.106728,33.244979
+2025-08-27 15:43:53,4,5 1 1638431 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,21299603,5.023307,235.840405
+2025-08-27 15:43:58,4,5 1 6553621 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,39321726,5.949832,151.311568
+2025-08-27 15:44:05,5,5 100000 13 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,305500000,5.011060,16.402815
+2025-08-27 15:44:10,2,5 100 51203 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,153609000,5.031822,32.757338
+2025-08-27 15:44:16,1,5 100 12809 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,270269900,5.021443,18.579365
+2025-08-27 15:44:21,2,5 1 3276803 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660818,5.015773,255.115174
+2025-08-27 15:44:26,4,5 100 51203 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,189451100,5.120041,27.025660
+2025-08-27 15:44:31,2,5 1000000 3 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,1668000000,5.005814,3.001088
+2025-08-27 15:44:37,1,5 1000000 1 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2202000000,5.000358,2.270826
+2025-08-27 15:44:42,1,5 100000 13 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1094600000,5.002221,4.569908
+2025-08-27 15:44:47,3,5 10000 101 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,485810000,5.007567,10.307666
+2025-08-27 15:44:52,2,5 10000 211 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.009197,10.412399
+2025-08-27 15:44:57,3,5 10 409609 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,36864810,5.033142,136.529715
+2025-08-27 15:45:02,2,5 10000 809 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,679560000,5.012511,7.376112
+2025-08-27 15:45:07,2,5 100000 29 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1012100000,5.005398,4.945557
+2025-08-27 15:45:12,4,5 10 204803 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,81921200,5.045561,61.590419
+2025-08-27 15:45:17,4,5 1000 1601 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,385841000,5.020536,13.011930
+2025-08-27 15:45:22,1,5 1 1638431 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,21299603,5.003170,234.894988
+2025-08-27 15:45:28,2,5 1 102407000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,102407000,38.910522,379.959593
+2025-08-27 15:46:33,3,5 1 12809000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,38427000,6.050443,157.452911
+2025-08-27 15:46:42,1,5 1000 6473 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,543732000,5.006977,9.208538
+2025-08-27 15:46:47,1,5 1000000 1 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2203000000,5.001883,2.270487
+2025-08-27 15:46:52,5,5 1 25601000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25601000,7.420607,289.856138
+2025-08-27 15:47:06,3,5 1 25601000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25601000,7.418953,289.791532
+2025-08-27 15:47:20,1,5 1000000 7 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2093000000,5.009076,2.393252
+2025-08-27 15:47:25,5,5 100 12809 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,420135200,5.000655,11.902490
+2025-08-27 15:47:30,1,5 100 12809 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,421416100,5.012675,11.894835
+2025-08-27 15:47:35,3,5 100 12809 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,229281100,5.019543,21.892528
+2025-08-27 15:47:40,4,5 1 204803000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,204803000,90.812611,443.414457
+2025-08-27 15:50:07,2,5 100 12809 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,318944100,5.005049,15.692559
+2025-08-27 15:50:12,2,5 10 102407 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,146442010,5.003846,34.169471
+2025-08-27 15:50:17,4,5 1000000 1 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2202000000,5.000782,2.271018
+2025-08-27 15:50:22,5,5 1 409609000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,111.389703,271.941542
+2025-08-27 15:54:19,5,5 1 204803000 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,204803000,90.794539,443.326216
+2025-08-27 15:56:45,3,5 1 204803000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,52.011076,253.956612
+2025-08-27 15:58:34,4,5 1000 6473 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,543732000,5.008727,9.211757
+2025-08-27 15:58:39,1,5 10 409609 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,36864810,5.020502,136.186841
+2025-08-27 15:58:44,2,5 10 819229 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,32769160,6.573116,200.588480
+2025-08-27 15:58:51,2,5 10000 101 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,485810000,5.007170,10.306848
+2025-08-27 15:58:56,1,5 1 409609000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,409609000,185.678684,453.307139
+2025-08-27 16:04:02,1,5 1000 3203 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,534901000,5.005994,9.358730
+2025-08-27 16:04:07,5,5 1 3276803 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22937621,5.513640,240.375408
+2025-08-27 16:04:13,3,5 1000000 1 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2203000000,5.000956,2.270066
+2025-08-27 16:04:18,2,5 10000 101 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,891830000,5.003112,5.609939
+2025-08-27 16:04:23,3,5 1 51203000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,51203000,16.118898,314.803781
+2025-08-27 16:04:52,4,5 10 204803 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,98305440,5.022113,51.086827
+2025-08-27 16:04:57,4,5 1 51203000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,51203000,15.042302,293.777747
+2025-08-27 16:05:25,4,5 1 3276803 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660818,5.026821,255.677104
+2025-08-27 16:05:30,3,5 1 25601000 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,25601000,7.408510,289.383618
+2025-08-27 16:05:44,3,5 1 1638431 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,21299603,5.078225,238.418763
+2025-08-27 16:05:49,1,5 1 102407000 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,102407000,38.902036,379.876727
+2025-08-27 16:06:55,2,5 1000 6473 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.102160,16.421288
+2025-08-27 16:07:00,2,5 1 1638431 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,21299603,5.010570,235.242413
+2025-08-27 16:07:05,3,5 1 409609000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,409609000,195.970408,478.432866
+2025-08-27 16:12:27,1,5 10 204803 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,131073920,5.042888,38.473619
+2025-08-27 16:12:32,2,5 1 3276803 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22937621,5.510415,240.234809
+2025-08-27 16:12:38,1,5 1 1638431 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,37683913,5.205615,138.138919
+2025-08-27 16:12:44,5,5 1 25601000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25601000,7.202826,281.349400
+2025-08-27 16:12:57,1,5 1 204803000 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,204803000,90.754780,443.132083
+2025-08-27 16:15:23,1,5 1 51203000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,51203000,16.112732,314.683358
+2025-08-27 16:15:52,2,5 100000 13 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,657800000,5.010587,7.617189
+2025-08-27 16:15:57,3,5 1000 1601 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,384240000,5.011118,13.041635
+2025-08-27 16:16:02,5,5 100000 13 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,646100000,5.005471,7.747208
+2025-08-27 16:16:08,5,5 1 12809000 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,25618000,7.146961,278.982005
+2025-08-27 16:16:18,4,5 100 51203 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,148488700,5.025392,33.843599
+2025-08-27 16:16:23,4,5 1 102407000 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,102407000,38.846886,379.338190
+2025-08-27 16:17:28,1,5 1000000 3 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1674000000,5.005668,2.990244
+2025-08-27 16:17:33,2,5 1000000 3 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,300000000,5.001663,16.672210
+2025-08-27 16:17:38,2,5 1000000 3 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2022000000,5.004224,2.474888
+2025-08-27 16:17:43,1,5 1 1638431 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,24576465,5.271984,214.513519
+2025-08-27 16:17:49,3,5 1000 6473 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.081325,16.354231
+2025-08-27 16:17:54,3,5 100000 29 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,1203500000,5.001743,4.155998
+2025-08-27 16:17:59,3,5 10 102407 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,131080960,5.012161,38.237140
+2025-08-27 16:18:04,5,5 1 6553621 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,19660863,5.078539,258.307023
+2025-08-27 16:18:11,2,5 1000000 1 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1926000000,5.001891,2.597036
+2025-08-27 16:18:16,2,5 1 204803000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,52.343316,255.578854
+2025-08-27 16:20:04,1,5 100000 53 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286200000,5.021533,17.545538
+2025-08-27 16:20:10,3,5 100000 53 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1526400000,5.013126,3.284281
+2025-08-27 16:20:15,3,5 10000 101 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,782750000,5.000961,6.388963
+2025-08-27 16:20:20,1,5 1000000 1 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1926000000,5.001189,2.596671
+2025-08-27 16:20:25,2,5 100000 13 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,644800000,5.000854,7.755667
+2025-08-27 16:20:30,3,5 1000 3203 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,361939000,5.040716,13.926977
+2025-08-27 16:20:35,1,5 1000 6473 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.078279,16.344427
+2025-08-27 16:20:40,1,5 10000 211 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1449570000,5.004237,3.452222
+2025-08-27 16:20:45,3,5 1000 3203 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,534901000,5.006875,9.360377
+2025-08-27 16:20:50,5,5 10000 401 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.015809,10.511136
+2025-08-27 16:20:55,4,5 10 819229 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,32769160,6.563148,200.284292
+2025-08-27 16:21:02,3,5 1000 6473 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,543732000,5.009170,9.212572
+2025-08-27 16:21:07,1,5 1000 1601 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286579000,5.027142,17.541906
+2025-08-27 16:21:12,3,5 10 204803 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,100353470,5.081493,50.635947
+2025-08-27 16:21:17,2,5 1 25601000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25601000,7.181126,280.501777
+2025-08-27 16:21:31,5,5 10000 211 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,1036010000,5.001335,4.827497
+2025-08-27 16:21:36,2,5 100 12809 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,331753100,5.001622,15.076338
+2025-08-27 16:21:41,2,5 1000000 7 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,819000000,5.040979,6.155042
+2025-08-27 16:21:46,1,5 100 25601 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,197127700,5.019735,25.464382
+2025-08-27 16:21:51,2,5 1 1638431 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,37683913,5.143879,136.500660
+2025-08-27 16:21:56,5,5 1 12809000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25618000,7.185362,280.480990
+2025-08-27 16:22:07,2,5 1 102407000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,102407000,33.900721,331.039099
+2025-08-27 16:23:06,5,5 100 25601 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,294411500,5.033206,17.095820
+2025-08-27 16:23:11,5,5 1000000 7 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2093000000,5.011440,2.394381
+2025-08-27 16:23:16,2,5 1000 6473 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,446637000,5.072055,11.356101
+2025-08-27 16:23:22,2,5 1000000 7 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2086000000,5.001547,2.397674
+2025-08-27 16:23:27,4,5 1 51203000 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,51203000,16.136906,315.155479
+2025-08-27 16:23:56,2,5 10000 211 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,1036010000,5.000126,4.826330
+2025-08-27 16:24:01,4,5 10 102407 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,131080960,5.033715,38.401573
+2025-08-27 16:24:06,4,5 1 25601000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25601000,7.424146,289.994375
+2025-08-27 16:24:19,4,5 10 819229 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,32769160,6.601278,201.447886
+2025-08-27 16:24:26,3,5 1 102407000 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,102407000,38.825941,379.133663
+2025-08-27 16:25:31,3,5 1 409609000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,409609000,197.535582,482.254008
+2025-08-27 16:30:53,3,5 10000 101 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1481670000,5.001582,3.375638
+2025-08-27 16:30:59,5,5 1000 3203 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307488000,5.039502,16.389264
+2025-08-27 16:31:04,3,5 100 12809 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,329191300,5.015184,15.234862
+2025-08-27 16:31:09,5,5 1 1638431 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,37683913,5.188328,137.680182
+2025-08-27 16:31:14,5,5 1000000 3 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2370000000,5.002445,2.110736
+2025-08-27 16:31:19,1,5 100000 29 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,530700000,5.018297,9.455996
+2025-08-27 16:31:24,5,5 10 819229 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,49153740,5.907993,120.194170
+2025-08-27 16:31:30,2,5 100000 13 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,275600000,5.010815,18.181477
+2025-08-27 16:31:35,1,5 100000 53 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1526400000,5.016520,3.286504
+2025-08-27 16:31:41,1,5 1000 3203 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307488000,5.051095,16.426966
+2025-08-27 16:31:46,1,5 1 409609000 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,409609000,197.904925,483.155705
+2025-08-27 16:37:08,5,5 1000 3203 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,361939000,5.039467,13.923526
+2025-08-27 16:37:13,2,5 1 102407000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102407000,38.643604,377.353150
+2025-08-27 16:38:19,1,5 10000 211 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,869320000,5.002119,5.754059
+2025-08-27 16:38:24,4,5 1 409609000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,409609000,197.635973,482.499098
+2025-08-27 16:43:46,3,5 100 25601 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,302091800,5.033397,16.661813
+2025-08-27 16:43:51,2,5 1 409609000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,409609000,197.400346,481.923849
+2025-08-27 16:49:13,5,5 10 409609 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,36864810,5.061204,137.290929
+2025-08-27 16:49:18,3,5 10000 401 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,300750000,5.035460,16.743009
+2025-08-27 16:49:23,1,5 1000 3203 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,598961000,5.009452,8.363570
+2025-08-27 16:49:28,5,5 100000 29 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1580500000,5.001194,3.164311
+2025-08-27 16:49:33,2,5 100000 29 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,530700000,5.005263,9.431436
+2025-08-27 16:49:38,5,5 10000 401 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,284710000,5.004857,17.578789
+2025-08-27 16:49:43,3,5 10000 809 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,728100000,5.031945,6.911063
+2025-08-27 16:49:48,5,5 10000 211 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.014297,10.423000
+2025-08-27 16:49:54,3,5 10 102407 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,147466080,5.033500,34.133273
+2025-08-27 16:49:59,2,5 1 204803000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,204803000,90.058323,439.731464
+2025-08-27 16:52:25,3,5 10 102407 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,131080960,5.030932,38.380341
+2025-08-27 16:52:30,4,5 1000 6473 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.082477,16.357939
+2025-08-27 16:52:36,2,5 1 204803000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,204803000,90.843065,443.563156
+2025-08-27 16:55:02,4,5 10 819229 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,40961450,5.238191,127.880995
+2025-08-27 16:55:08,1,5 1 25601000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25601000,7.417166,289.721730
+2025-08-27 16:55:21,3,5 1 12809000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25618000,7.180628,280.296198
+2025-08-27 16:55:32,4,5 10000 401 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,858140000,5.006650,5.834304
+2025-08-27 16:55:37,4,5 10 819229 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,24576870,5.004557,203.628737
+2025-08-27 16:55:42,5,5 10 409609 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,36864810,5.004658,135.757054
+2025-08-27 16:55:47,4,5 10000 211 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,293290000,5.028726,17.145917
+2025-08-27 16:55:52,4,5 1000 3203 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,304285000,5.003240,16.442611
+2025-08-27 16:55:57,1,5 1 6553621 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660863,5.294632,269.298047
+2025-08-27 16:56:04,1,5 1000000 3 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.043323,17.154160
+2025-08-27 16:56:09,5,5 1000 3203 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,531698000,5.001167,9.406029
+2025-08-27 16:56:14,1,5 1 102407000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,102407000,33.887608,330.911051
+2025-08-27 16:57:13,5,5 100 51203 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,158729300,5.147875,32.431788
+2025-08-27 16:57:19,2,5 100000 29 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,1136800000,5.011047,4.408029
+2025-08-27 16:57:24,2,5 1 6553621 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,19660863,5.080522,258.407884
+2025-08-27 16:57:30,2,5 1000000 7 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1414000000,5.020676,3.550690
+2025-08-27 16:57:35,4,5 100 25601 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,322572600,5.027955,15.587049
+2025-08-27 16:57:40,5,5 1000000 1 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1926000000,5.001422,2.596792
+2025-08-27 16:57:45,5,5 10000 211 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,869320000,5.003204,5.755308
+2025-08-27 16:57:51,5,5 10000 101 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1481670000,5.001062,3.375287
+2025-08-27 16:57:56,4,5 1 12809000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25618000,6.928869,270.468772
+2025-08-27 16:58:05,5,5 10 819229 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,24576870,5.031610,204.729488
+2025-08-27 16:58:11,5,5 10000 809 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,428770000,5.074577,11.835196
+2025-08-27 16:58:16,3,5 1 12809000 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,25618000,7.185021,280.467679
+2025-08-27 16:58:26,2,5 1000 6473 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,427218000,5.019031,11.748173
+2025-08-27 16:58:31,3,5 1 51203000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,51203000,15.008063,293.109056
+2025-08-27 16:58:58,4,5 10 102407 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,158730850,5.004839,31.530348
+2025-08-27 16:59:03,3,5 1 204803000 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,204803000,90.735230,443.036625
+2025-08-27 17:01:30,3,5 10000 401 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,814030000,5.016286,6.162286
+2025-08-27 17:01:35,3,5 1000 1601 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,577961000,5.013070,8.673717
+2025-08-27 17:01:40,4,5 1 1638431 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,37683913,5.143937,136.502199
+2025-08-27 17:01:46,5,5 1 3276803 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,22937621,5.834726,254.373634
+2025-08-27 17:01:52,1,5 10 102407 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,146442010,5.001611,34.154209
+2025-08-27 17:01:57,2,5 10000 401 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1407510000,5.001600,3.553509
+2025-08-27 17:02:02,1,5 100 25601 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,186887300,5.055294,27.049960
+2025-08-27 17:02:07,5,5 10000 809 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307420000,5.058647,16.455166
+2025-08-27 17:02:13,2,5 10 409609 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,53249170,5.303472,99.597271
+2025-08-27 17:02:18,4,5 1 3276803 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36044833,5.251193,145.685042
+2025-08-27 17:02:24,4,5 100 12809 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,347123900,5.011864,14.438257
+2025-08-27 17:02:29,3,5 100 25601 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,199687800,5.038017,25.229468
+2025-08-27 17:02:34,4,5 1 102407000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,102407000,33.906176,331.092367
+2025-08-27 17:03:34,3,5 1 409609000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,409609000,185.815464,453.641067
+2025-08-27 17:08:41,3,5 1000 3203 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301082000,5.033425,16.717788
+2025-08-27 17:08:46,5,5 10 819229 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,24576870,5.031303,204.716996
+2025-08-27 17:08:51,2,5 1 3276803 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36044833,5.248891,145.621177
+2025-08-27 17:08:57,1,5 100 12809 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,320225000,5.004641,15.628514
+2025-08-27 17:09:02,3,5 100000 13 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1510600000,5.003599,3.312326
+2025-08-27 17:09:07,2,5 1000 3203 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307488000,5.007398,16.284857
+2025-08-27 17:09:12,1,5 100000 53 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,927500000,5.010056,5.401678
+2025-08-27 17:09:17,5,5 1 409609000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,409609000,197.622938,482.467275
+2025-08-27 17:14:39,5,5 100000 29 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1012100000,5.004211,4.944384
+2025-08-27 17:14:44,2,5 1 25601000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51202000,8.549702,166.979845
+2025-08-27 17:14:59,1,5 1000000 7 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,840000000,5.013769,5.968773
+2025-08-27 17:15:04,3,5 1 25601000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25601000,7.420225,289.841217
+2025-08-27 17:15:18,3,5 10000 809 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291240000,5.110586,17.547679
+2025-08-27 17:15:23,1,5 10000 101 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,485810000,5.005912,10.304259
+2025-08-27 17:15:28,3,5 10000 401 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1315280000,5.001954,3.802958
+2025-08-27 17:15:33,2,5 10000 101 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294920000,5.014810,17.003967
+2025-08-27 17:15:38,1,5 10 102407 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,130056890,5.013202,38.546224
+2025-08-27 17:15:43,4,5 10000 401 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.019646,10.519177
+2025-08-27 17:15:48,2,5 10 819229 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,49153740,5.971213,121.480339
+2025-08-27 17:15:54,4,5 1000000 1 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1926000000,5.001504,2.596835
+2025-08-27 17:15:59,5,5 1000000 1 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2203000000,5.001828,2.270462
+2025-08-27 17:16:05,2,5 100000 13 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1514500000,5.002124,3.302822
+2025-08-27 17:16:10,3,5 100 12809 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,275393500,5.006057,18.177833
+2025-08-27 17:16:15,5,5 1 6553621 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660863,5.267976,267.942257
+2025-08-27 17:16:21,2,5 1000 6473 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,543732000,5.010580,9.215165
+2025-08-27 17:16:27,5,5 10 204803 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,98305440,5.105790,51.938021
+2025-08-27 17:16:32,4,5 1000000 7 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,833000000,5.027246,6.035109
+2025-08-27 17:16:37,4,5 1000 6473 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,323650000,5.053520,15.614151
+2025-08-27 17:16:42,2,5 1 12809000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25618000,7.158206,279.420954
+2025-08-27 17:16:52,3,5 10000 809 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,428770000,5.091495,11.874653
+2025-08-27 17:16:57,2,5 1 51203000 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51203000,9.822064,191.825948
+2025-08-27 17:17:20,5,5 1000 6473 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,433691000,5.070782,11.692154
+2025-08-27 17:17:25,2,5 1000000 7 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,833000000,5.027027,6.034846
+2025-08-27 17:17:30,3,5 10 409609 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,98306160,5.195711,52.852344
+2025-08-27 17:17:36,3,5 1000000 1 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1926000000,5.001984,2.597084
+2025-08-27 17:17:41,3,5 1 102407000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,102407000,23.133973,225.902263
+2025-08-27 17:18:31,5,5 1000000 3 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,1668000000,5.002390,2.999035
+2025-08-27 17:18:36,2,5 1 409609000 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,409609000,197.763102,482.809465
+2025-08-27 17:23:58,5,5 10 102407 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,135177240,5.033222,37.234242
+2025-08-27 17:24:03,1,5 1 12809000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25618000,7.128146,278.247560
+2025-08-27 17:24:13,4,5 10000 809 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307420000,5.021769,16.335206
+2025-08-27 17:24:18,5,5 1000000 3 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,309000000,5.021610,16.251165
+2025-08-27 17:24:23,2,5 100000 53 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,503500000,5.038872,10.007690
+2025-08-27 17:24:28,5,5 1000 3203 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,595758000,5.006131,8.402961
+2025-08-27 17:24:34,4,5 10 409609 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,36864810,5.044541,136.838926
+2025-08-27 17:24:39,4,5 1 204803000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,204803000,90.026319,439.575197
+2025-08-27 17:27:05,2,5 10000 401 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,1110770000,5.011321,4.511574
+2025-08-27 17:27:10,5,5 1 204803000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,204803000,81.821584,399.513601
+2025-08-27 17:29:26,4,5 10000 809 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,695740000,5.050939,7.259808
+2025-08-27 17:29:31,2,5 1000000 3 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2370000000,5.001401,2.110296
+2025-08-27 17:29:36,1,5 10000 809 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307420000,5.006296,16.284874
+2025-08-27 17:29:41,2,5 100 25601 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,202247900,5.049293,24.965861
+2025-08-27 17:29:47,3,5 100 51203 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,153609000,5.032302,32.760463
+2025-08-27 17:29:52,3,5 1 409609000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,111.316846,271.763672
+2025-08-27 17:33:48,5,5 1 204803000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,204803000,90.039644,439.640259
+2025-08-27 17:36:15,5,5 1 1638431 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,24576465,5.173308,210.498459
+2025-08-27 17:36:21,4,5 10 819229 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,32769160,5.222478,159.371739
+2025-08-27 17:36:26,3,5 1 102407000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,102407000,38.955564,380.399426
+2025-08-27 17:37:31,4,5 1000 6473 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,433691000,5.064149,11.676860
+2025-08-27 17:37:37,2,5 1 51203000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,51203000,15.012330,293.192391
+2025-08-27 17:38:04,4,5 100000 13 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,292500000,5.003479,17.105911
+2025-08-27 17:38:09,2,5 1000 1601 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299387000,5.005007,16.717516
+2025-08-27 17:38:14,5,5 1 102407000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,102407000,38.802093,378.900788
+2025-08-27 17:39:19,3,5 100000 53 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,503500000,5.040515,10.010953
+2025-08-27 17:39:25,1,5 10 204803 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,98305440,5.076685,51.641954
+2025-08-27 17:39:30,1,5 1 3276803 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22937621,5.508342,240.144433
+2025-08-27 17:39:36,1,5 10000 101 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1474600000,5.001174,3.391546
+2025-08-27 17:39:41,5,5 100 12809 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,304854200,5.003102,16.411458
+2025-08-27 17:39:46,2,5 1000 3203 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,595758000,5.004311,8.399906
+2025-08-27 17:39:51,5,5 10000 809 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1367210000,5.026475,3.676447
+2025-08-27 17:39:56,2,5 1 204803000 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,204803000,90.844380,443.569577
+2025-08-27 17:42:23,1,5 1 409609000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,409609000,197.559538,482.312493
+2025-08-27 17:47:45,4,5 10000 211 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,1036010000,5.008605,4.834514
+2025-08-27 17:47:50,5,5 1 409609000 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,409609000,197.523219,482.223826
+2025-08-27 17:53:12,4,5 1000000 7 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,812000000,5.030754,6.195510
+2025-08-27 17:53:17,1,5 10 204803 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,100353470,5.094231,50.762878
+2025-08-27 17:53:22,4,5 1 6553621 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,19660863,5.082261,258.496334
+2025-08-27 17:53:29,3,5 1000 3203 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,595758000,5.017566,8.422155
+2025-08-27 17:53:34,2,5 100 25601 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,184327200,5.007580,27.166799
+2025-08-27 17:53:39,4,5 100 12809 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,311258700,5.001262,16.067863
+2025-08-27 17:53:44,5,5 100 12809 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,228000200,5.004342,21.948849
+2025-08-27 17:53:49,5,5 100000 53 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1526400000,5.017495,3.287143
+2025-08-27 17:53:54,4,5 10 204803 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,131073920,5.044245,38.483971
+2025-08-27 17:53:59,4,5 100 51203 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,158729300,5.119207,32.251179
+2025-08-27 17:54:04,2,5 10 102407 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,131080960,5.036136,38.420042
+2025-08-27 17:54:10,3,5 10 409609 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,53249170,5.306927,99.662154
+2025-08-27 17:54:15,3,5 1 12809000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25618000,6.931772,270.582091
+2025-08-27 17:54:25,5,5 100000 29 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,530700000,5.017370,9.454249
+2025-08-27 17:54:30,3,5 1000000 1 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310000000,5.000252,16.129845
+2025-08-27 17:54:35,4,5 1000000 3 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,1983000000,5.002667,2.522777
+2025-08-27 17:54:40,2,5 10 409609 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,36864810,5.057057,137.178437
+2025-08-27 17:54:45,3,5 1 102407000 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102407000,38.838777,379.259006
+2025-08-27 17:55:51,3,5 1 6553621 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,19660863,5.287348,268.927564
+2025-08-27 17:55:58,4,5 10 409609 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,73729620,5.237397,71.035182
+2025-08-27 17:56:03,4,5 10 204803 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,96257410,5.071610,52.687996
+2025-08-27 17:56:08,4,5 1 204803000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,204803000,52.297051,255.352954
+2025-08-27 17:57:57,4,5 1 1638431 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,24576465,5.223652,212.546922
+2025-08-27 17:58:03,5,5 10 819229 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,24576870,5.004459,203.624750
+2025-08-27 17:58:08,4,5 1 25601000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25601000,7.414206,289.606109
+2025-08-27 17:58:21,3,5 100000 13 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286000000,5.013408,17.529399
+2025-08-27 17:58:26,4,5 1 204803000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,204803000,82.043115,400.595279
+2025-08-27 18:00:42,2,5 10 102407 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,149514220,5.003815,33.467151
+2025-08-27 18:00:47,1,5 100 25601 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,304651900,5.006136,16.432315
+2025-08-27 18:00:53,2,5 1 51203000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,51203000,16.093671,314.311095
+2025-08-27 18:01:22,3,5 1 204803000 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,204803000,90.659191,442.665347
+2025-08-27 18:03:48,5,5 1000000 1 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,2202000000,5.000280,2.270790
+2025-08-27 18:03:53,4,5 1000 3203 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,586149000,5.016499,8.558402
+2025-08-27 18:03:58,3,5 1000000 7 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.103932,17.360313
+2025-08-27 18:04:04,4,5 100000 53 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,503500000,5.040472,10.010868
+2025-08-27 18:04:09,1,5 1 3276803 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660818,5.002390,254.434480
+2025-08-27 18:04:14,3,5 1000 3203 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,528495000,5.013399,9.486181
+2025-08-27 18:04:19,3,5 10 204803 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,81921200,5.048041,61.620692
+2025-08-27 18:04:25,5,5 1 1638431 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,21299603,5.006327,235.043207
+2025-08-27 18:04:30,2,5 1000 1601 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,381038000,5.015787,13.163482
+2025-08-27 18:04:35,3,5 10000 101 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,285830000,5.012006,17.534919
+2025-08-27 18:04:40,4,5 10 204803 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,98305440,5.034187,51.209648
+2025-08-27 18:04:45,2,5 1 1638431 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,21299603,5.055133,237.334611
+2025-08-27 18:04:50,1,5 1 204803000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,204803000,81.750501,399.166521
+2025-08-27 18:07:06,4,5 1000000 1 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2203000000,5.001112,2.270137
+2025-08-27 18:07:11,2,5 1000000 7 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,294000000,5.120681,17.417282
+2025-08-27 18:07:16,5,5 1 1638431 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,22938034,5.343606,232.958326
+2025-08-27 18:07:22,5,5 1000000 7 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,840000000,5.038811,5.998585
+2025-08-27 18:07:27,5,5 10000 101 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,771640000,5.004571,6.485629
+2025-08-27 18:07:32,1,5 10000 211 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.010385,10.414869
+2025-08-27 18:07:37,4,5 10000 101 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,293910000,5.014127,17.060076
+2025-08-27 18:07:42,3,5 100000 13 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,635700000,5.002506,7.869287
+2025-08-27 18:07:47,3,5 10 819229 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,40961450,5.263726,128.504386
+2025-08-27 18:07:53,4,5 1 51203000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51203000,9.816258,191.712556
+2025-08-27 18:08:16,5,5 10 409609 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,36864810,5.036967,136.633472
+2025-08-27 18:08:21,2,5 10000 211 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286960000,5.032335,17.536712
+2025-08-27 18:08:26,2,5 10000 809 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1367210000,5.000158,3.657198
+2025-08-27 18:08:31,1,5 1000 1601 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,598774000,5.009399,8.366093
+2025-08-27 18:08:36,3,5 10000 211 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,852440000,5.002285,5.868196
+2025-08-27 18:08:41,5,5 100 25601 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,207368100,5.033795,24.274684
+2025-08-27 18:08:46,4,5 1 12809000 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,25618000,7.116726,277.801780
+2025-08-27 18:08:56,5,5 1000000 7 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,819000000,5.028531,6.139842
+2025-08-27 18:09:01,5,5 10 102407 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,131080960,5.014776,38.257089
+2025-08-27 18:09:06,3,5 100000 29 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1580500000,5.004189,3.166206
+2025-08-27 18:09:11,2,5 1 6553621 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,19660863,5.283532,268.733473
+2025-08-27 18:09:18,3,5 100000 53 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,853300000,5.010493,5.871901
+2025-08-27 18:09:23,2,5 100 12809 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,270269900,5.021153,18.578292
+2025-08-27 18:09:28,4,5 1000000 3 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,1680000000,5.000370,2.976411
+2025-08-27 18:09:33,2,5 100000 53 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,927500000,5.008553,5.400057
+2025-08-27 18:09:38,4,5 100000 13 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1463800000,5.000925,3.416399
+2025-08-27 18:09:43,5,5 10 204803 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,94209380,5.011086,53.190946
+2025-08-27 18:09:49,1,5 1 25601000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25601000,7.423777,289.979962
+2025-08-27 18:10:02,5,5 1000 1601 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299387000,5.013407,16.745573
+2025-08-27 18:10:07,2,5 1 12809000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25618000,7.141427,278.765985
+2025-08-27 18:10:17,1,5 100000 13 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,647400000,5.006041,7.732532
+2025-08-27 18:10:22,3,5 100000 29 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,533600000,5.013182,9.395019
+2025-08-27 18:10:27,3,5 1000 6473 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,427218000,5.022330,11.755895
+2025-08-27 18:10:32,1,5 1000000 7 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,301000000,5.001596,16.616598
+2025-08-27 18:10:38,1,5 1 409609000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,409609000,196.004168,478.515287
+2025-08-27 18:15:59,4,5 1000000 3 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,309000000,5.018933,16.242502
+2025-08-27 18:16:04,1,5 100000 53 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,503500000,5.035277,10.000550
+2025-08-27 18:16:09,3,5 1 6553621 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,19660863,5.065941,257.666258
+2025-08-27 18:16:16,2,5 100 25601 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,286731200,5.019833,17.507104
+2025-08-27 18:16:21,4,5 100000 13 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1099800000,5.005317,4.551116
+2025-08-27 18:16:26,1,5 1 25601000 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,25601000,7.400310,289.063318
+2025-08-27 18:16:39,4,5 1000000 1 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,291000000,5.001718,17.188034
+2025-08-27 18:16:44,2,5 1 51203000 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,51203000,16.115866,314.744566
+2025-08-27 18:17:13,1,5 10000 211 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1038120000,5.010164,4.826190
+2025-08-27 18:17:18,5,5 100000 53 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,927500000,5.010969,5.402662
+2025-08-27 18:17:23,2,5 1000000 3 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1863000000,5.007299,2.687761
+2025-08-27 18:17:28,2,5 10 204803 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,100353470,5.075934,50.580553
+2025-08-27 18:17:34,3,5 1000000 3 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,1674000000,5.006296,2.990619
+2025-08-27 18:17:39,1,5 1000 6473 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,427218000,5.008665,11.723909
+2025-08-27 18:17:44,4,5 10 409609 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,53249170,5.328600,100.069165
+2025-08-27 18:17:49,5,5 100000 13 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1835600000,5.001939,2.724961
+2025-08-27 18:17:54,4,5 1 12809000 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25618000,7.139378,278.686002
+2025-08-27 18:18:04,2,5 100 51203 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,189451100,5.119472,27.022657
+2025-08-27 18:18:10,5,5 10 409609 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,53249170,5.288923,99.324046
+2025-08-27 18:18:15,3,5 10 819229 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,32769160,6.566673,200.391862
+2025-08-27 18:18:22,3,5 100 25601 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,186887300,5.042115,26.979442
+2025-08-27 18:18:27,5,5 10000 809 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,720010000,5.002094,6.947256
+2025-08-27 18:18:32,5,5 100000 53 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,307400000,5.034821,16.378728
+2025-08-27 18:18:37,2,5 10000 401 -1 2 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,288720000,5.067520,17.551676
+2025-08-27 18:18:42,2,5 1 12809000 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25618000,6.933348,270.643610
+2025-08-27 18:18:52,1,5 1000000 3 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2370000000,5.005510,2.112030
+2025-08-27 18:18:57,4,5 10 409609 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,36864810,5.132538,139.225945
+2025-08-27 18:19:02,5,5 1000 1601 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,718849000,5.009480,6.968751
+2025-08-27 18:19:07,4,5 1 6553621 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,19660863,5.287672,268.944044
+2025-08-27 18:19:14,3,5 1 102407000 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,102407000,33.942501,331.447079
+2025-08-27 18:20:14,2,5 1 51203000 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,51203000,16.161595,315.637658
+2025-08-27 18:20:43,4,5 100 25601 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,194567600,5.003563,25.716322
+2025-08-27 18:20:48,1,5 1 409609000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,409609000,111.372783,271.900234
+2025-08-27 18:24:44,2,5 100000 13 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1093300000,5.005161,4.578031
+2025-08-27 18:24:49,5,5 10 204803 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,114689680,5.019955,43.769893
+2025-08-27 18:24:55,4,5 1 12809000 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,38427000,6.060856,157.723892
+2025-08-27 18:25:04,2,5 10000 401 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,477190000,5.011152,10.501377
+2025-08-27 18:25:09,1,5 1 51203000 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,51203000,16.077685,313.998887
+2025-08-27 18:25:38,1,5 100 51203 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,148488700,5.074806,34.176378
+2025-08-27 18:25:43,1,5 10 204803 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,96257410,5.016337,52.113775
+2025-08-27 18:25:48,4,5 100000 29 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1554400000,5.003603,3.218993
+2025-08-27 18:25:53,4,5 10000 101 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,892840000,5.004919,5.605617
+2025-08-27 18:25:58,3,5 10 409609 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,36864810,5.067612,137.464753
+2025-08-27 18:26:03,3,5 10 102407 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,134153170,5.008460,37.333892
+2025-08-27 18:26:08,5,5 1 3276803 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36044833,5.235535,145.250638
+2025-08-27 18:26:14,2,5 1000000 1 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,2203000000,5.001320,2.270232
+2025-08-27 18:26:19,1,5 100 12809 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,224157500,5.013127,22.364306
+2025-08-27 18:26:24,5,5 100000 13 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1095900000,5.003512,4.565665
+2025-08-27 18:26:30,3,5 1 6553621 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,39321726,5.933779,150.903320
+2025-08-27 18:26:37,5,5 1 102407000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102407000,38.742723,378.321043
+2025-08-27 18:27:43,1,5 1 25601000 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51202000,8.549025,166.966622
+2025-08-27 18:27:57,5,5 1000 6473 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,323650000,5.061769,15.639638
+2025-08-27 18:28:02,5,5 100000 53 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,503500000,5.041426,10.012763
+2025-08-27 18:28:08,1,5 10000 401 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1407510000,5.003522,3.554875
+2025-08-27 18:28:13,4,5 1000 3203 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,361939000,5.029411,13.895742
+2025-08-27 18:28:18,2,5 1000 1601 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,592370000,5.001492,8.443189
+2025-08-27 18:28:23,5,5 10 102407 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,130056890,5.014153,38.553536
+2025-08-27 18:28:28,3,5 1 6553621 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,19660863,5.290541,269.089968
+2025-08-27 18:28:35,3,5 100 12809 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,308696900,5.016886,16.251819
+2025-08-27 18:28:40,1,5 1 3276803 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,36044833,5.184874,143.845139
+2025-08-27 18:28:45,3,5 100 12809 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,421416100,5.006966,11.881288
+2025-08-27 18:28:51,1,5 1000000 7 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1414000000,5.016551,3.547773
+2025-08-27 18:28:56,4,5 1000 3203 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,538104000,5.024793,9.337959
+2025-08-27 18:29:01,5,5 10000 401 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1399490000,5.001188,3.573579
+2025-08-27 18:29:06,5,5 100 25601 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,197127700,5.046317,25.599228
+2025-08-27 18:29:11,5,5 1 6553621 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,39321726,5.955346,151.451795
+2025-08-27 18:29:18,2,5 1000000 1 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,2202000000,5.001389,2.271294
+2025-08-27 18:29:23,1,5 10 102407 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,145417940,5.002491,34.400783
+2025-08-27 18:29:28,5,5 1000000 1 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,2202000000,5.000691,2.270977
+2025-08-27 18:29:34,3,5 1000000 7 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1414000000,5.023172,3.552455
+2025-08-27 18:29:39,5,5 1 12809000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25618000,7.172496,279.978765
+2025-08-27 18:29:49,5,5 1 51203000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51203000,9.806019,191.512587
+2025-08-27 18:30:11,5,5 1 51203000 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,51203000,16.115434,314.736129
+2025-08-27 18:30:41,4,5 1 102407000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102407000,38.628329,377.203990
+2025-08-27 18:31:46,1,5 10 102407 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,131080960,5.011363,38.231052
+2025-08-27 18:31:51,4,5 1 3276803 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,19660818,5.030311,255.854614
+2025-08-27 18:31:57,4,5 100000 53 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,286200000,5.022959,17.550521
+2025-08-27 18:32:02,1,5 10 819229 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,32769160,6.655104,203.090467
+2025-08-27 18:32:09,1,5 1 12809000 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,25618000,7.148753,279.051956
+2025-08-27 18:32:19,2,5 1 25601000 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25601000,7.411273,289.491543
+2025-08-27 18:32:33,2,5 10 204803 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,102401500,5.010121,48.926246
+2025-08-27 18:32:38,5,5 100 25601 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,199687800,5.012660,25.102485
+2025-08-27 18:32:43,1,5 100000 29 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,287100000,5.041522,17.560160
+2025-08-27 18:32:48,1,5 100 51203 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,153609000,5.041660,32.821384
+2025-08-27 18:32:53,1,5 10000 401 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1110770000,5.003825,4.504825
+2025-08-27 18:32:58,5,5 100 12809 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,326629500,5.018224,15.363658
+2025-08-27 18:33:03,3,5 1 51203000 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,51203000,9.787057,191.142257
+2025-08-27 18:33:26,3,5 100 51203 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,189451100,5.117755,27.013593
+2025-08-27 18:33:31,5,5 1 3276803 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660818,5.027122,255.692413
+2025-08-27 18:33:37,1,5 1000 1601 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,582764000,5.006775,8.591428
+2025-08-27 18:33:42,4,5 100 25601 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,184327200,5.040357,27.344619
+2025-08-27 18:33:47,3,5 1000000 7 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,833000000,5.001080,6.003697
+2025-08-27 18:33:52,3,5 1 3276803 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660818,5.012076,254.927135
+2025-08-27 18:33:58,4,5 10000 211 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,481080000,5.009860,10.413777
+2025-08-27 18:34:03,5,5 10000 401 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,846110000,5.001840,5.911572
+2025-08-27 18:34:08,5,5 1 12809000 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,38427000,6.055480,157.583990
+2025-08-27 18:34:17,1,5 1 12809000 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,25618000,7.154531,279.277500
+2025-08-27 18:34:27,3,5 1000 1601 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,601976000,5.004801,8.313954
+2025-08-27 18:34:32,1,5 1 1638431 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,21299603,5.007813,235.112974
+2025-08-27 18:34:37,3,5 10 204803 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,96257410,5.082341,52.799478
+2025-08-27 18:34:42,4,5 10000 101 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,500960000,5.003006,9.986837
+2025-08-27 18:34:47,2,5 10 102407 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,131080960,5.023573,38.324201
+2025-08-27 18:34:52,1,5 1 12809000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25618000,6.926168,270.363338
+2025-08-27 18:35:02,1,5 10000 809 -1 1 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,420680000,5.008624,11.906019
+2025-08-27 18:35:07,5,5 100 51203 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,148488700,5.011435,33.749605
+2025-08-27 18:35:12,1,5 1 25601000 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25601000,7.187654,280.756767
+2025-08-27 18:35:25,4,5 100 12809 -1 4 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,222876600,5.009712,22.477514
+2025-08-27 18:35:31,4,5 100000 53 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,1007000000,5.000169,4.965411
+2025-08-27 18:35:36,3,5 1 51203000 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,51203000,16.130555,315.031443
+2025-08-27 18:36:05,1,5 100000 29 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,1290500000,5.008394,3.880972
+2025-08-27 18:36:10,2,5 10 819229 -1 2 0  ,./perfexp--lq-list--stack-insfirst-allhead,24576870,5.013141,203.978009
+2025-08-27 18:36:15,3,5 10 409609 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,36864810,5.034076,136.555051
+2025-08-27 18:36:20,4,5 1000 3203 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,528495000,5.008872,9.477615
+2025-08-27 18:36:25,4,5 1000000 7 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1421000000,5.020259,3.532906
+2025-08-27 18:36:30,2,5 1 1638431 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,22938034,5.347215,233.115663
+2025-08-27 18:36:36,2,5 1000 6473 -1 2 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,323650000,5.063335,15.644477
+2025-08-27 18:36:41,4,5 100000 13 -1 4 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,642200000,5.009568,7.800635
+2025-08-27 18:36:46,3,5 1 1638431 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,37683913,5.163807,137.029480
+2025-08-27 18:36:51,1,5 1 6553621 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,19660863,5.273648,268.230749
+2025-08-27 18:36:58,4,5 1 3276803 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22937621,5.489912,239.340950
+2025-08-27 18:37:04,5,5 1 409609000 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,409609000,185.821875,453.656719
+2025-08-27 18:42:10,4,5 100000 53 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,694300000,5.016555,7.225342
+2025-08-27 18:42:15,2,5 100 25601 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,199687800,5.041008,25.244447
+2025-08-27 18:42:20,1,5 100 25601 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,199687800,5.046414,25.271519
+2025-08-27 18:42:25,1,5 10000 401 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,296740000,5.002057,16.856699
+2025-08-27 18:42:30,2,5 10 819229 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,32769160,6.586927,201.009943
+2025-08-27 18:42:37,1,5 10 409609 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,53249170,5.299799,99.528293
+2025-08-27 18:42:42,2,5 100 12809 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,418854300,5.007605,11.955482
+2025-08-27 18:42:47,4,5 1 6553621 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660863,5.284335,268.774316
+2025-08-27 18:42:54,5,5 10000 211 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1449570000,5.007111,3.454204
+2025-08-27 18:42:59,5,5 10 819229 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,32769160,5.180111,158.078846
+2025-08-27 18:43:05,3,5 100000 53 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,927500000,5.006774,5.398139
+2025-08-27 18:43:10,1,5 1000 1601 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,720450000,5.000498,6.940798
+2025-08-27 18:43:15,5,5 1000 6473 -1 5 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,543732000,5.009580,9.213326
+2025-08-27 18:43:20,3,5 1000000 3 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,306000000,5.014099,16.385944
+2025-08-27 18:43:25,1,5 10 102407 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,134153170,5.014932,37.382136
+2025-08-27 18:43:30,4,5 1000 1601 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,581163000,5.012104,8.624265
+2025-08-27 18:43:35,2,5 10 204803 -1 2 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,131073920,5.056506,38.577514
+2025-08-27 18:43:40,2,5 10000 401 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,858140000,5.001272,5.828037
+2025-08-27 18:43:45,1,5 100000 29 -1 1 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1583400000,5.003247,3.159812
+2025-08-27 18:43:51,4,5 1 25601000 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,25601000,7.393730,288.806297
+2025-08-27 18:44:04,4,5 100000 29 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,1012100000,5.004521,4.944690
+2025-08-27 18:44:09,5,5 1000 6473 -1 5 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,310704000,5.087313,16.373503
+2025-08-27 18:44:14,1,5 100 25601 -1 1 0  ,./perfexp--lq-list--stack-insfirst-allhead,207368100,5.040762,24.308281
+2025-08-27 18:44:19,4,5 1 25601000 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,25601000,7.210353,281.643412
+2025-08-27 18:44:33,4,5 100 51203 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,153609000,5.089881,33.135305
+2025-08-27 18:44:38,3,5 1 1638431 -1 3 0  ,./perfexp--lq-list--stack-insfirst-allhead,22938034,5.361348,233.731801
+2025-08-27 18:44:43,3,5 100000 13 -1 3 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,643500000,5.003107,7.774836
+2025-08-27 18:44:48,3,5 10000 211 -1 3 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,284850000,5.017689,17.615197
+2025-08-27 18:44:54,3,5 1 3276803 -1 3 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,22937621,5.520453,240.672431
+2025-08-27 18:45:00,1,5 10 819229 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,49153740,5.889279,119.813447
+2025-08-27 18:45:06,5,5 1 204803000 -1 5 0  ,./perfexp--lq-tailq--stack-insfirst-allhead,204803000,90.788700,443.297706
+2025-08-27 18:47:32,4,5 1 12809000 -1 4 0  ,./perfexp--upp-upp--stack-insfirst-allhead,25618000,7.143624,278.851745
+2025-08-27 18:47:42,2,5 10 409609 -1 2 0  ,./perfexp--upp-upp--stack-insfirst-allhead,36864810,5.036035,136.608191
+2025-08-27 18:47:48,1,5 10000 211 -1 1 0  ,./perfexp--cpp-stlref--stack-insfirst-allhead,299620000,5.025567,16.773136
+2025-08-27 18:47:53,4,5 10000 101 -1 4 0  ,./perfexp--cfa-cfa--stack-insfirst-allhead,1476620000,5.000921,3.386735
+2025-08-27 18:47:58,5,5 10000 809 -1 5 0  ,./perfexp--upp-upp--stack-insfirst-allhead,687650000,5.000823,7.272338
+2025-08-27 18:48:03,1,5 1 6553621 -1 1 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660863,5.297018,269.419404
+2025-08-27 18:48:09,5,5 1 3276803 -1 5 0  ,./perfexp--lq-list--stack-insfirst-allhead,22937621,5.826245,254.003892
+2025-08-27 18:48:16,3,5 1 6553621 -1 3 0  ,./perfexp--upp-upp--stack-insfirst-allhead,19660863,5.293779,269.254661
+2025-08-27 18:48:23,4,5 10000 101 -1 4 0  ,./perfexp--lq-list--stack-insfirst-allhead,1142310000,5.003708,4.380342
