1
2026-07-19 228d838fdb7f7dde7edc4993fdbb9654c9c31df7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
{
  "run_id": "RUN-ANA-WUJI-V1-SELL-ROLLING-REPLAY-AFTER-BUY-REPAIR-20260616-001",
  "generated_at": "2026-06-16T03:11:18+08:00",
  "file_count": 559,
  "files": [
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230403/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00001.png",
      "size": 68328,
      "sha256": "f8b3f4e7e052aefc7bb6647addebfc1dec875cba9ae7449d4a9b149c2ca8d1e4"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230410/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00002.png",
      "size": 90716,
      "sha256": "0f68e4fd3d85407e6c43777dd1cafd323b4e087c66da6f3459bb5ae48896bbb2"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230512/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00005.png",
      "size": 89842,
      "sha256": "4afe8b3bfea3b35c6c0b39bd248e766df448baadf98b24ebd2d023205f81878d"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230518/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00008.png",
      "size": 69444,
      "sha256": "3ea545e0d0b00222a31dbb4faf8de3431983c0639e8f59ae7a032bb4b86a98f4"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230605/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00010.png",
      "size": 69349,
      "sha256": "a9177596c77c26c5374374cf50a089051d959ac36e103edd6fc0781310d72fe9"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230628/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00016.png",
      "size": 69191,
      "sha256": "27eb7a4429402fc6e9ca05cee6c76a70af337698391c79d601fea08096e4f2a8"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230704/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00020.png",
      "size": 68981,
      "sha256": "3ef1d449a4c779f65f94f0110a22c06cbf7d5d3e11f21771b38d63f8b13fc8a0"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230704/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00022.png",
      "size": 89836,
      "sha256": "ac2a0e7ed3faff8261534899bf06887c4196d63bd8beadf6cbfd51c200701e31"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230712/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00025.png",
      "size": 68772,
      "sha256": "1e1c63e2e8893db14868ddad8105c2fbe1ea192c3fb4ac868279ad3cf399c10e"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230714/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00027.png",
      "size": 68547,
      "sha256": "32d7183e87d29a20f36211f7a6fd16ffd503e173125010492c713e3f043675ad"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230801/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00032.png",
      "size": 68841,
      "sha256": "0665efc825be77b36c9c7548049b1b011a46c9f23afe95bf81cc0fd3a208e6a3"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230818/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00034.png",
      "size": 68504,
      "sha256": "da57674a15677f4bb316403270e474c293a945be2a42894e0fe9ba46575b958f"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230829/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00039.png",
      "size": 91848,
      "sha256": "1546f7dfa89874dda735c894b1afa0b3e8a8341080cdea1c57d9db73294541c7"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230831/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00040.png",
      "size": 68989,
      "sha256": "74778c94aef0b532b27fc3964d1999af0c32d8bf9e144942eab299e7d4fff11d"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230831/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00041.png",
      "size": 91051,
      "sha256": "15c35cb51caf48dc372ba5965a766323ca87e29991a1a2a6fb0b0e5c6066535d"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230919/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00042.png",
      "size": 69169,
      "sha256": "018aed50ceacc7a1626e995f8eded2906555165847fd8aa0ab8db6e58f5039d4"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20230925/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00043.png",
      "size": 69396,
      "sha256": "71c00a3eb3d2b9f0ec5e2c4823e1becf063ba058ed439d8c9525c302d632ed48"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231013/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00044.png",
      "size": 68314,
      "sha256": "68614e6bcce3448efa5390b5e2d1fd224daf56689d10e52b07db9b4552738364"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231013/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00045.png",
      "size": 68811,
      "sha256": "0f1f032161386a34295bf477a18f2e9044783d8fc10a272a5daaae7b63049b30"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231025/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00047.png",
      "size": 69117,
      "sha256": "94145b25f7d3111eb02161f4af04284dea6a590b2aab4edd2690aee0b44d2d61"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231106/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00053.png",
      "size": 68372,
      "sha256": "c808ec3ae68afcdad2035ee8b870e73f626fba7bcfd97cb9fc174c1a696ff7d0"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231120/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00062.png",
      "size": 68399,
      "sha256": "f3a541fefbf7bdb0f21a6c320d87f9fc29447e7ebc5407c39191fa4200788eac"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231121/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00063.png",
      "size": 69128,
      "sha256": "3156a9e1aedf9352eaeca13360b9e91761176c08d931b7da7393c0d0856b97fc"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231121/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00064.png",
      "size": 68546,
      "sha256": "b442752a3d57278bbf4f329566dd9436013a8153054ce6a85273c7e2563e8914"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231124/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00066.png",
      "size": 69637,
      "sha256": "811d1bf4ade9bfdc74e37dd808bc36a0b510c5aaf84a37805f1c854b614ab405"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231212/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00074.png",
      "size": 68731,
      "sha256": "1cc8178a363115a1e85882a334372116da8a24d76c4aa3c0dee0680776647fba"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231213/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00076.png",
      "size": 69075,
      "sha256": "32ba68b046a48cdd338e8b421454395a3c9eed65170bdfaa66b841c5130a6ed4"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20231213/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00077.png",
      "size": 68336,
      "sha256": "a31b68bc4b023742036d6a03d43c73eaa2a487dc3c7797a3fcb96cb1a99cb6e3"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240219/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00085.png",
      "size": 69415,
      "sha256": "dbe69b41dbce3d545ef2396e3b49e5f548fe867884d24a2a47732cd1d9ee4b3f"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240312/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00097.png",
      "size": 68742,
      "sha256": "32422c95075b3608ce1788213d5e939acf0314572cdcd51e2e13a382b6159619"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240402/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00110.png",
      "size": 90433,
      "sha256": "1ffe2d5581b26ad3ec1c83e1821a4903a1e9d0247ced6541bad0c58f6be5dde7"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240402/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00111.png",
      "size": 89622,
      "sha256": "a8723779dfef4942f1c9e55bacd0ab5298726ece29691ca959461ed71019ddc4"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240515/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00132.png",
      "size": 89346,
      "sha256": "beb3e0047229d225c43dd0fe27acbccdd833a60f465069327bf32365553a9acc"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240515/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00133.png",
      "size": 69115,
      "sha256": "52b5345aa6266c7a068fc14b65b86c01e2a588da7ad3fa1f9f377675340acf84"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240612/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00138.png",
      "size": 88837,
      "sha256": "7dd7024138d34a070688abae60d5fe6dda7fa17b96e96509e994f8567bdcc099"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240612/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00139.png",
      "size": 68501,
      "sha256": "841c4d127861529b8cb95285890fbe885858cbd59b0495eadd77735f310e73ed"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240925/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00179.png",
      "size": 68989,
      "sha256": "4ca92a19cd1c3157413981b7835e093e6f9212b2b9bbab7fb4dfb47760e31923"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240925/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00181.png",
      "size": 69218,
      "sha256": "529a3f793b818a5dbe7b18f2aa9a0f7c64bba66716ef7fbb2c040433c4aa958d"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240926/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00184.png",
      "size": 91233,
      "sha256": "5bf569c8ffe8d5ca4956b8d23121f523498209145fcce2d9d2a2d76b35a92910"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240926/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00185.png",
      "size": 90951,
      "sha256": "0fd40062f6550490f705fded226eaccc695711047e2aa8c063ee198ba3b18f03"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240926/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00186.png",
      "size": 88021,
      "sha256": "f38ce6b3d41bd3fa91cc9f3f61d2f20a6b172d0de43b4a415b2f6c5c52233bfc"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240927/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00188.png",
      "size": 88347,
      "sha256": "b5cd165a1c621bd23d31b6f13cb502e7f814d68a5d78a85d492632c0aa736504"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240927/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00189.png",
      "size": 91991,
      "sha256": "74e1712ed6c38eb097b4cdf4b7019d393fae5c9ec9285cdcf663e25cbe816e2c"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20240930/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00190.png",
      "size": 90123,
      "sha256": "5e0372bffc90799a5277aa69812d1d07737b7dd7a5add04a1a2808bec427347c"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20241023/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00201.png",
      "size": 68971,
      "sha256": "8e991c205a72612339e0341ada4f850496ba21790a8fc1b159fee97cbb0b7d58"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20241101/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00206.png",
      "size": 68169,
      "sha256": "e3c3d641b2255fc87e10d8bfe1399e31053426bb7c0d5a12193d861454def8f0"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20241105/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00207.png",
      "size": 68798,
      "sha256": "1f400a5f0cac4fd79491d3793c3b3fe142036b6898af85ead291bb0bdc891129"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20241112/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00213.png",
      "size": 68480,
      "sha256": "3ec6d2237eab0e572839d4e0d5edf8b69c0a4a9bbbec30527ed615253c8c1786"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20241120/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00214.png",
      "size": 89839,
      "sha256": "ee9d9216a1deb0856fe0540d41a42068109d7a7e1987b34d48be0110ba962948"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20241121/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00219.png",
      "size": 68767,
      "sha256": "826bfad9ff7fd05a2f935da13f3d1abfd2213b3ef19da6db6988ef07e19da053"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20241202/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00222.png",
      "size": 68283,
      "sha256": "2f0c64682ef36f9aa66eb06be8b90e2eab3e1be502ec86bf96e9c3e143a60639"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20241203/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00223.png",
      "size": 68223,
      "sha256": "08ec25b267a3dd400c914e4894896b21e1c807c014447bcf38fa63b092414066"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250207/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00248.png",
      "size": 92658,
      "sha256": "611e1239f251c9d320fa962703c0a0cb51c9d75f166e114470dc57c2f35bc33e"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250210/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00252.png",
      "size": 89396,
      "sha256": "333c974fe874e39b15f10b72613dd0930863d4adcdf934a3624d6ce2e505f217"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250210/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00253.png",
      "size": 90823,
      "sha256": "bb0bd613884359dfaa45ba9d1b3591824e373ec915411d75035a466c07816101"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250210/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00254.png",
      "size": 68545,
      "sha256": "39e822858abea65721993efbb3f953991a80f466c4720b0cdbdb7e14a63f4891"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250220/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00258.png",
      "size": 68964,
      "sha256": "40bad5ccf735716d660d1ebe80ec0b64754aceb70decb23b360a7fe898c0feca"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250227/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00264.png",
      "size": 91162,
      "sha256": "42685200bb75b6c99b95d150b3342ca7817b733823ed246eaf53139749c4d56f"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250304/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00268.png",
      "size": 69042,
      "sha256": "c63f1b6d3b442052994e75d20e3d4b6e8e44dc41b2113e137aff982f390b63b5"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250305/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00269.png",
      "size": 92751,
      "sha256": "95d39dfe243dd9b64a9b4c404fa8623e91f644240dd08fad9e3f8b483ff0daba"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250409/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00281.png",
      "size": 69682,
      "sha256": "5a09a2c8107ddee6d0d2cf7e8fcf3c2e4b9c27d98a95fb6e43b4ed3550b9416b"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250430/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00296.png",
      "size": 90434,
      "sha256": "c44416175b6fab5dbfc6e54483cbfacfa3b8dbdb14e6a13cb3df975334497041"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250508/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00301.png",
      "size": 90519,
      "sha256": "a9e631eb6b1788d4c7c94c15946b681739d0177cee8600c60d22b2407bc78f9b"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250521/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00309.png",
      "size": 68878,
      "sha256": "4102428504e3256ecc9bff00b7e2b76cfa458db02933412dfd4434cf5acf739f"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250604/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00314.png",
      "size": 69114,
      "sha256": "e7ddc7c7229896ac739205dd5e998c74dd74f933b7d5859ff0f5e987c66184e9"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250604/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00315.png",
      "size": 89928,
      "sha256": "41758229ec5cdf039a6c6b5aac2c8aa9641a66bde1a823ec55caf65c83b7ab4f"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250605/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00317.png",
      "size": 68679,
      "sha256": "ca5ca1ff7b54c1c0e4562b70c84fb2d6375f7d5e7ed3b32c39d51199d6417686"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250709/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00333.png",
      "size": 69426,
      "sha256": "ba79b87ef25603068a185a1bb2bd2b996639e53306632005ad9e99db67fd3902"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250717/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00339.png",
      "size": 90369,
      "sha256": "8165674fd15b64e3c1994544a95c5d7b4ef603c60510c51ef8dfdaca1414926a"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250722/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00343.png",
      "size": 90230,
      "sha256": "a56c75aa628be15b524845930efa13185429862f0c16ad6db8b41b24c4e48b40"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250804/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00347.png",
      "size": 90070,
      "sha256": "b9899da63ddc28bbec22309d90db86104432d89c9acc044ae9f7ae2763596afb"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250806/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00348.png",
      "size": 91654,
      "sha256": "4cba454979a88befaeca0a396bba6bd34b8c187f7f4c405d81749473a1ea8feb"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250902/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00355.png",
      "size": 90769,
      "sha256": "28c00c776760b0743b71f61624c9da96cbae81a9f5f46c95545a1b17ddf82212"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250908/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00357.png",
      "size": 69288,
      "sha256": "c82e99f4cf2d14a29a1345668ae1d0fcc43d5432fde747a69e05de374f9cba85"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20250930/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00363.png",
      "size": 69355,
      "sha256": "c0b2288694eb211e53ccc2f5f00c492567a9de623e8c7bdee2f3f5be4dd74fa2"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20251010/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00364.png",
      "size": 68640,
      "sha256": "cfcadf84efa0d83825bde709c5cd4f3193bd18430640684c89b24011e1055f6d"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20251021/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00366.png",
      "size": 92513,
      "sha256": "cc9be3f478fd5788c759c1ce2033516abd5de31f61def22a067c15a1094ba7d6"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20251021/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00367.png",
      "size": 89782,
      "sha256": "2582442d9e78c833a7b8973e94d91767e0508763081f33d7d4ea6e2881942e90"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20251027/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00371.png",
      "size": 90336,
      "sha256": "bf0b6bed9a3c913154203dc2eb6ceb9e9f7a517cf552f5bad6579a63c8e25116"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20251201/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00388.png",
      "size": 68981,
      "sha256": "1828b04effa856247b9e1ac76ab52a889a4a82bb3882cd057951393b1444f262"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20260106/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00404.png",
      "size": 68589,
      "sha256": "197d98906df47e23a677ee9a0a10c51e43a2cd867484a1af13d9983d6fa58272"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20260122/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00413.png",
      "size": 68697,
      "sha256": "35d49a6423072d4e318ad3256254e8ed87b81d275e1f7045dccbef547dbd4515"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20260123/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00415.png",
      "size": 90876,
      "sha256": "9ea028757f45bbe63c724804b239317f2930f88c25a635fba0e03ef8744ff056"
    },
    {
      "path": "charts/rolling_low_review/WUJI-STRICT-20260210/ROLL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00419.png",
      "size": 68666,
      "sha256": "0a31aa1c8a84db3170d4a0a2a9cbce475c7e3535df3b2685fb6864cd8d76c396"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230403/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00001.png",
      "size": 86943,
      "sha256": "7e8dc96fed7b8639db0d002e4f148633cf4a9cf7c5e9e5544f3e785146727094"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230410/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00002.png",
      "size": 88955,
      "sha256": "c928d75a693bd5c566ebb3c76ba4ede2f8d5a56391a9cfb3ba6e08ecd8d2fb63"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230427/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00003.png",
      "size": 82961,
      "sha256": "9f36924398aa68e6935866d9380679a80541086d7856a743d4e04b8af4d79483"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230427/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00004.png",
      "size": 84715,
      "sha256": "c6762e7d72f7807390f403208a5869f2e6df5bec72f626ea688601703dfa51e6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230512/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00005.png",
      "size": 88389,
      "sha256": "8d9951ab8302583f4f7517e808ad4244f126e5e88520c415357b645654d7a3a0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230516/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00006.png",
      "size": 84464,
      "sha256": "5c3814b19ef56d1be8b78588ad05b80616a07b5e007087214c360877d84f112b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230518/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00007.png",
      "size": 79967,
      "sha256": "f27a487b1139553229869e1621d3e6d6bb7711ad438368b90dd983e9f9bf78cd"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230518/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00008.png",
      "size": 88537,
      "sha256": "da343089b27687270ae4f879a55206af7ac48ae3a5c61301b089787a8b4da998"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230605/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00009.png",
      "size": 82449,
      "sha256": "e6959fc694e67432e82393a28b3955f3f8a3d3eaf0707bfde7ce1722a30b9d7c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230605/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00010.png",
      "size": 87426,
      "sha256": "a64b2ed3e4a1f223c92204ee9f130055ae003ffb9839cf1c5e5bc686dd0b7d14"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230605/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00011.png",
      "size": 87542,
      "sha256": "061cacfce97a8953955049daed67d641add0b41fdf733b48d715f7d9ce44a29f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230619/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00012.png",
      "size": 86113,
      "sha256": "8d0822c509b6a904dc608763f1c6e2a0403bdbf2d2e5f2309cdcb1a7005c5ab5"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230619/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00013.png",
      "size": 86019,
      "sha256": "3072759ed17a9278ae75ceb080e4d024aca32daaf30f0f39729ee11bb205366b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230619/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00014.png",
      "size": 88953,
      "sha256": "aa0be038cdd5447c8aaa28c79a2675035ae51521d60919a021e516e9264f5fde"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230628/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00015.png",
      "size": 89750,
      "sha256": "83492603b940b0aa46672a76cb6e13c7b9c4f233b64af6a03fef39489edf47d3"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230628/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00016.png",
      "size": 86621,
      "sha256": "55bd9433138375ef4a09a14c51d6dd960325edd2576f77d922cae07acbc42403"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230630/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00017.png",
      "size": 83581,
      "sha256": "ae90a8d27f5b17cdd09f7fadb74b7c50ae576097c808ee636aee019e69e734e9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230703/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00018.png",
      "size": 87045,
      "sha256": "992ffdd80ef563c39fb8c7fb46d0d2e0398f91feec1427819be3d8eac63e8f78"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230703/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00019.png",
      "size": 79611,
      "sha256": "0985411b21d3473ee4f236400da5a57e32a6b49d2e1d4f8df2cf7f7ad2dda12d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230704/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00020.png",
      "size": 85365,
      "sha256": "7eb04943496fdeb7fe32421c2acf4614c895d80eaeaa787175357ca71eda6221"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230704/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00021.png",
      "size": 86731,
      "sha256": "fc113200cd3ea00ae047e164128f5b069fda72531a2596a04ab67b84a2839185"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230704/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00022.png",
      "size": 87866,
      "sha256": "b567ad3072f0e9a344f8ed536a7d0212da7e6e0ed08b2a591d2ffc3d98ee50d9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230712/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00023.png",
      "size": 86426,
      "sha256": "3e0af906b4488b452d0e99022aa3e949d3081edd7a255ae55d2767a2c1a77f7d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230712/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00024.png",
      "size": 83914,
      "sha256": "62883ad4b13bae737b4dc22aa2860b6033f3a376b20b93f0df50b2a06e7e6a5f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230712/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00025.png",
      "size": 85296,
      "sha256": "256ae7b2caf27886bce02a91bcacdac5f41c1da4af123cd314d5e91ca2c54803"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230712/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00026.png",
      "size": 85943,
      "sha256": "db3fddb9c091d127f23c488a802d153caf04aa56cb9c94f65385ad921c6ffb9a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230714/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00027.png",
      "size": 86183,
      "sha256": "4f5d1b145ea1ec6b5dcaf4ed8d15eeed5c7463ea2c8340141319f03327735620"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230714/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00028.png",
      "size": 80700,
      "sha256": "d4bec03beff4b9ae77e05b6a180906de5a04f81c41257d6a2c15816f60a39c53"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230726/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00029.png",
      "size": 80460,
      "sha256": "67f4c88930e37965df88b7a32f850ca0087f9f0e66582cb6f569bbb7d21bb3a4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230731/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00030.png",
      "size": 81008,
      "sha256": "dcc70d6d6176b2ef1fef32c52cefb9fcd15ccc76525ada8bad4c9abfbd940551"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230731/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00031.png",
      "size": 88203,
      "sha256": "52491de07cc721db24d06edc6aa22baa89387646606bb81a8d5cb15aea1bae94"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230801/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00032.png",
      "size": 86721,
      "sha256": "bbc3ad19d2ec9df8ad53059b8d9d9592a4a8b60d27a977cac2febf6aed6a5177"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230801/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00033.png",
      "size": 88529,
      "sha256": "d087407b299b1d966f5689619951a8cf146283be5cf12aa40e193b1deb971671"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230818/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00034.png",
      "size": 86911,
      "sha256": "79b77ce8f2a0def49d29abb6dcfabe77a3ca4834d6bdf8672659622bd47bf8ee"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230818/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00035.png",
      "size": 88847,
      "sha256": "03c88a17dc922b179f6769f32f6e24801da0dc1893304800b239d0b30c727e96"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230829/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00036.png",
      "size": 85614,
      "sha256": "1a78ed09fee2efe1ccf1204be5cbaa023de683c4e03229fff0428e0fb6d53343"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230829/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00037.png",
      "size": 87310,
      "sha256": "18efd9d11dbcaf70de7f91b3bbb9507b075a870ade74cfc1ad6cfde9309464e0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230829/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00038.png",
      "size": 86583,
      "sha256": "e93f7476b3e086331addd0962faec5f24cce3d1360b2287d4b63fcb17f79c5b3"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230829/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00039.png",
      "size": 88536,
      "sha256": "5d4204f9cde818643486bd8de1653ab9abf089aa6e0384002c40ea96e5877ea4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230831/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00040.png",
      "size": 88797,
      "sha256": "6d8cf163f1c250b28ec647f77d7716ab52d9f470cb975974d8c8830f339bccbe"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230831/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00041.png",
      "size": 88525,
      "sha256": "959bd7897e789c82cdbd1e48f46118f64d489738ea9333572ebc8400db706ccf"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230919/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00042.png",
      "size": 84248,
      "sha256": "1fe358d0c99737230cf4ff0cd341c1ff53d4bb368c0b25d614936525ddb81ac4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20230925/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00043.png",
      "size": 84638,
      "sha256": "8fb03692f209f962e0b39b024bc6535d26600e2ec94fcba5f799bea8197be160"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231013/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00044.png",
      "size": 83612,
      "sha256": "05d7a06b110c4e4c1ca99359787b7c75099717be55bb91bd998830ae65a01527"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231013/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00045.png",
      "size": 85998,
      "sha256": "164caaadc72a528638673c622137066789018b7900d91b9804bf7a3062334851"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231013/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00046.png",
      "size": 81606,
      "sha256": "1aa718d45ff1f9ba85da8b875ee2dcbbdaa36cab1e1c33007ee1145687721984"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231025/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00047.png",
      "size": 88255,
      "sha256": "07756e679edd91821f1e3518b5093706b67d2d28f70ac71eae11341916bb184f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231025/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00048.png",
      "size": 87853,
      "sha256": "3ee9a04ef17458f872ebcf267e5297c208f3e58d4bb1c36707a57e856947c6af"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231026/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00049.png",
      "size": 78959,
      "sha256": "8b4f1cb13b23c48b6ec4a02a506695f61a63092efb1cd0931e910dccef17772e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231026/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00050.png",
      "size": 83052,
      "sha256": "117467b310085df3479350a19e220c0d7ad455835432de842d1a9517c0dd1b5e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231030/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00051.png",
      "size": 85010,
      "sha256": "11390d7af1927fc5a9b2fbcda4dc2e198f7d771e9557647dbce55463ecf01020"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231031/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00052.png",
      "size": 81820,
      "sha256": "9a8e1f277a1d5bb518b227795672bb8bd413c43c5080e95ab3238110a5535518"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231106/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00053.png",
      "size": 85957,
      "sha256": "5a72508b85d74e86280a112bebd968df4812e14abd86d6d0a18e6adca4a03cbd"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231106/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00054.png",
      "size": 88558,
      "sha256": "503dc2814482da6777effe508e8a46100a095ee823ffed7b9fe1efb77fff87f9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231106/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00055.png",
      "size": 85803,
      "sha256": "147cc23d6a1a308933566430cde8ff74e5d3c3bad21dbe83e36831ef8db3c6f6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231107/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00056.png",
      "size": 84149,
      "sha256": "f60843af3a0ad25cc9ee126b7c55818ee14bac5caca008d8b424a752472720d2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231114/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00057.png",
      "size": 81418,
      "sha256": "def2b94b8bd94a214ed9f2e4a0812a8f7043b49fabf71725cb7677e265b39f34"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231116/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00058.png",
      "size": 81048,
      "sha256": "8a4f72ea912eb8ce52b7cc0cb5dc9145d54adb6e7745cda5ce8b0897920b769c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231116/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00059.png",
      "size": 87799,
      "sha256": "c18f404c453dc8a392a16dbf3c0f8deb335667b44aa2c5b1b1e41ee79fed2684"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231120/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00060.png",
      "size": 80985,
      "sha256": "55c42359ea85f690b3049469f9ad853906eab078b8689e0b627f3ec4330bff01"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231120/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00061.png",
      "size": 81646,
      "sha256": "7a13d4c986f0418e7c2fe91985352a3105fbd999315219e2d9eb6bfb36445d81"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231120/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00062.png",
      "size": 86787,
      "sha256": "4145e2f86904f3dd229a41688133b7d2e5f4e0f9b73db8506d2723cbfdc34a40"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231121/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00063.png",
      "size": 86532,
      "sha256": "f905330899a32f589254b8f747ed0d485a06f1d6b4780af8428ea8b17c610642"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231121/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00064.png",
      "size": 86047,
      "sha256": "7c29be4044a5c3a8b134199877395c1ccb9de38441e85b5545d6dd76deb8991d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231121/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00065.png",
      "size": 87376,
      "sha256": "cc43df711f813bc8389c09e05538b59af20deef164bde6d2754a60c60e971e53"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231124/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00066.png",
      "size": 88298,
      "sha256": "3a3aa82116c2da25799857479b690fb092fe30625e3ce8d3dfad9e3840a0c304"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231124/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00067.png",
      "size": 81051,
      "sha256": "0d3c188939987274f1e12fb2263c9bb9e44add04213f6abb75d37d077b3a67d1"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231124/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00068.png",
      "size": 88933,
      "sha256": "09a348872e3637e714747023df49ddda7cb956ab0b692758b3eb6df89c55abe9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231129/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00069.png",
      "size": 83011,
      "sha256": "fe7742c16b10eca5b69d43bfc160fb4246bbff644d30626254f9a90ba1ef07c5"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231207/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00070.png",
      "size": 88551,
      "sha256": "49678303536adb2d639721f454d5039620ae7c96edb87e717e4bb1caff47f40f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231207/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00071.png",
      "size": 78471,
      "sha256": "9fcd3ea07de85f5848725625d2fb5bfe9de5bf047f7cbbeb9325acf31a104c31"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231207/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00072.png",
      "size": 81059,
      "sha256": "8b8c1679745b90d4a9e9a336c63484a1a5c4a4b4519fb7f396594a22199de36e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231207/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00073.png",
      "size": 80325,
      "sha256": "0ae01f00343f09bc6ed21ac5ddac5c6d4178f462cbcacdba2aaa30c468e0b2d6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231212/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00074.png",
      "size": 87368,
      "sha256": "eb7340be5980415087daca981f3d18e0e5690cde4f105e5e8d1e7cfa727ddfad"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231212/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00075.png",
      "size": 80179,
      "sha256": "202344aacbc0fb731c42317b9bf62cbedad564c96f89167fd119e7ee23699afc"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231213/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00076.png",
      "size": 86758,
      "sha256": "11a9b923fa997dab8f8474258fe2ade99c1297941152a533e3168a8c50b1415a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231213/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00077.png",
      "size": 85897,
      "sha256": "97f7dc47c37eba7fae2aec70d27ab2f33d7f2e88b2190e6261628b8f48075210"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231213/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00078.png",
      "size": 80895,
      "sha256": "93ac7c4a33d24ecab4ac27849f209e49e91ef35cca7f02f20e3b02854c9cefa4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231222/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00079.png",
      "size": 72722,
      "sha256": "606560325c5e7a5328dabff4152fd767f267692943758013f2489a105840c53a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231222/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00080.png",
      "size": 88501,
      "sha256": "005828c145a80c09a0d650316a61b6559efd7fb6d09cb094dddd786205c89c1c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231228/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00081.png",
      "size": 73016,
      "sha256": "f07c7f9e0f39d48cc23b2223bd73dec12e7bc61f4e459c120b5eac4cc0c1c58f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231229/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00082.png",
      "size": 73757,
      "sha256": "f02e60c99abf47fb717d73e99b8a075af4ef48efa56c5dc643a46cfb6016c20d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231229/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00083.png",
      "size": 73762,
      "sha256": "2961c3e7745398d5830d64b1e07b288473d031d1592895e7671f895153bf6d11"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20231229/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00084.png",
      "size": 71842,
      "sha256": "9180482349d199296a9a2d785757576acc44adc251f53d744d3ba314669e45bc"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240219/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00085.png",
      "size": 85642,
      "sha256": "8b3151801d1c0f2fd1a7d3d28ec2dd5a3237144a982e566b5033cefda780b7ea"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240222/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00086.png",
      "size": 88494,
      "sha256": "0d236f121cdb78017084559338792b8cb0ff114fda23a3906d072fd46d35732f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240223/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00087.png",
      "size": 89611,
      "sha256": "f52cfd649104c6ff7e17cdabdf96a3e0a8167c91989db1285dca493c6eac877a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240223/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00088.png",
      "size": 86009,
      "sha256": "dcc384041e6c64dd6c5645943052b52d8dd5eefe59cd620baa133fd57017bdd2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240223/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00089.png",
      "size": 86811,
      "sha256": "73eb894127fbd1b5bed81a0f7b92199de18c8616001f7ef699c4fee9a2b0c37d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240226/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00090.png",
      "size": 87902,
      "sha256": "9420efa109739570d5a0f6f0399cd4b153bf0840164fc93c58992aac40e5270e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240227/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00091.png",
      "size": 80933,
      "sha256": "c9f97f054e2a528b45e7287495b5b30d03cdad50aad6062271eabfab0311018d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240227/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00092.png",
      "size": 87947,
      "sha256": "4452676fe4f43e946a60370fdbae0f41f82498addd739ed97b70721c32a4025d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240227/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00093.png",
      "size": 82441,
      "sha256": "42b3d2c0a243a9d80406522cb5698514b3ec73228c53d7e58b0cba37637af5f3"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240311/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00094.png",
      "size": 85270,
      "sha256": "9bf98abccae16ecb60d167957c47431e0c6c127902be4c2727cc0a846883fe50"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240311/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00095.png",
      "size": 90036,
      "sha256": "7d90fc7b22a7a4798de7eb03e83e5eb7c64b8b442e22dd84627476690f3d33d9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240311/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00096.png",
      "size": 82809,
      "sha256": "c35f1d75945082c6a0b2b526203f8b84e9eb77a15d436e83e86f2dbc564d20b0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240312/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00097.png",
      "size": 84403,
      "sha256": "c6a442a8a9c06030bb4ea9a2dd683fad1a6552fbfbabc5836ec69c32b62b55d3"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240313/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00098.png",
      "size": 81039,
      "sha256": "74756b4e1453d15f4378176be4df3b13818e18a987c832ad8ee2fd0aa252edf3"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240318/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00099.png",
      "size": 81486,
      "sha256": "8800a524d77ac81410fc8e5a005aea9f2b3f2db2e388f2b39410153570fd97f9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240318/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00100.png",
      "size": 85012,
      "sha256": "f1c5570f06cedad21c3bca9dec5bf2125baa94c459e7e4b76587e297800ce9ba"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240319/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00101.png",
      "size": 90160,
      "sha256": "11ef0f7c651a9ce1df41763a468920835d64f02c167aaad40dbd0f71f8595ebd"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240319/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00102.png",
      "size": 85011,
      "sha256": "c1391cc397728c397940ccb3bc21a9e289980889266201eb343b09df07840feb"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240321/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00103.png",
      "size": 82321,
      "sha256": "7df7bf7d59f5ca332c881d3dd508301a4a4de98d1e743f77bf351c18887e6607"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240321/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00104.png",
      "size": 80337,
      "sha256": "051e94402f15c4a535a1e6c8da864ef7ef1b86ac8eb6373b054495887ccbfa16"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240401/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00105.png",
      "size": 87822,
      "sha256": "75179f6b2498d129d2adc6a296a2afbaf4d108280e21cfe3a43a69259cfa56c7"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240401/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00106.png",
      "size": 79987,
      "sha256": "b52af5ef376171a80141f67196645db10ec055fe11691687555496ba39107156"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240401/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00107.png",
      "size": 87401,
      "sha256": "246c47f0c9afb4db8f48b8f81b519185fa89721116b2346e2767085e8b8c45db"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240401/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00108.png",
      "size": 80391,
      "sha256": "8b35aa6957b16f1b6b6fb315fec0d2322eae055d46a723bb5ab69e6e6b277d48"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240402/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00109.png",
      "size": 87959,
      "sha256": "1f5d7603ebd9c53ea50cca3ae60a93ab7b387f304b70b6205eb4defc417aa8ba"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240402/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00110.png",
      "size": 87576,
      "sha256": "b5eee891ab4e6cbdf0c52f5dae1b6ff005d343df7a15b59d61959ebaafd52a7e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240402/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00111.png",
      "size": 87951,
      "sha256": "0ba863fa233ac0885f16e90a4edbb85b95d8fc324f79efd3cd22dbe8a280a5ed"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240402/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00112.png",
      "size": 81210,
      "sha256": "306bc86844160e892be8a3a3c4c4db2dac692502cd1f94473d89cb04bfa0198d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240410/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00113.png",
      "size": 87884,
      "sha256": "9ca4494fd393a78f62f9fa7d88e5149e0772af6d0e1c2200a0f1fc662803bfcb"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240410/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00114.png",
      "size": 81324,
      "sha256": "f60da01ffbae73143de6ae704bb244a1cd8e88d2c21a3c28c02352d60bef6e44"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240410/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00115.png",
      "size": 86230,
      "sha256": "876b4efc8dc073e6b23eb9cb4ac755f4bb50da2554e1cd00bf034ab82cc53256"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240424/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00116.png",
      "size": 80448,
      "sha256": "d413055d473e59bb2b020c189fe994f2f44998aebf163e0fb38c8af0e5953840"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240424/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00117.png",
      "size": 81803,
      "sha256": "f69d67c5d4480b10752f4a05edd12ed71d24e3b5781d430548358a7fc1bdb10b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240424/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00118.png",
      "size": 84269,
      "sha256": "652345e002ea1e4b2d4a257b5a896dcf8dbd5dd111f0819402ae058e3a625343"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240425/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00119.png",
      "size": 89849,
      "sha256": "3b1a814ee115fa431d78d961ff6fb1d8562f584da3f567de9bc01521adf95aa5"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240425/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00120.png",
      "size": 89174,
      "sha256": "18045eb7f2161341236ed5e8ce83991eaa1338d0ad10072930e88773892ae10b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240429/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00121.png",
      "size": 85967,
      "sha256": "61540caff69d6f8d225137ee427fc5b4a91c3a75bd8e39c83679044d6e06bdcd"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240429/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00122.png",
      "size": 82183,
      "sha256": "8443a35be45af839e722e230b98c13ba1f0b8528ed752ad4d013838f277480a8"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240429/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00123.png",
      "size": 80805,
      "sha256": "90b1c693342fc8a0c0f391284565d93fd2aa11b3c72f7e22b52c24f0ab0a05d7"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240430/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00124.png",
      "size": 88719,
      "sha256": "b799c9eccf34f3332dccc4e22c50b4aac2351794550a7b9c0d24d40c9aca1bd7"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240507/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00125.png",
      "size": 81275,
      "sha256": "fd90a9d7cb47e14cf4be8eb4e4590addafdb164a99e1e331ba8a1d69a6002f02"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240507/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00126.png",
      "size": 80481,
      "sha256": "e05f042f59b06ed72dbfe4e8ee0a6931be1b2f4661443a8a1d1d4f5ba8d0ad4b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240507/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00127.png",
      "size": 88029,
      "sha256": "e6356a5f472abe3a8c460b7f4f70b3f57279b2095dcac88e5946bc22e8a3f82f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240510/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00128.png",
      "size": 89507,
      "sha256": "b8fd2e5506444bb414ffe3231974d37537c6f37e1635967f0e0222c468320793"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240510/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00129.png",
      "size": 79720,
      "sha256": "284e822de592e0ab957889c38b77b39c6126397b99c446892d8f65ad4324320e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240515/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00130.png",
      "size": 88383,
      "sha256": "afb4cca6d88aad2e690df60979709119371a91c77916ec893600254b90a585b4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240515/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00131.png",
      "size": 81934,
      "sha256": "807a73431073c393b5bab991c016fa5736921463c44fb571940ca950124fe0f1"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240515/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00132.png",
      "size": 87528,
      "sha256": "0f57e43377b2e5c1112c297f08fd5f426fb3985881a431c2713d1c3fdd025f96"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240515/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00133.png",
      "size": 87651,
      "sha256": "17ecbe9c51b749a77b5654441a500c16edf68413063dd7a857fda8acbe56b7a8"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240523/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00134.png",
      "size": 85750,
      "sha256": "f4e7be0880150b4bfc99e7ced365f404e90cea14d83d70342d54260d7e9f2a9b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240603/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00135.png",
      "size": 85557,
      "sha256": "be768fb10efd34bd303acc91a6fcf47c820993fd35a52b9a3797ccc06f1a1b9f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240611/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00136.png",
      "size": 81862,
      "sha256": "0524d6e27b4956e9d0c783eae23a38ef6a77e7f960f176d29346d97d303ce457"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240611/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00137.png",
      "size": 87182,
      "sha256": "21ac362e190c5a06805e32f9cf71e6292bb142ad33f149db9255a171e72eaa50"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240612/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00138.png",
      "size": 86445,
      "sha256": "fc50a0a971ba1feafa43d19a7e260c1b4936df2e2752ca470eb6744ed55a13ef"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240612/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00139.png",
      "size": 85998,
      "sha256": "0e3d00036cc628e0dc259ea77bdf65f718268f0b23156ea464efb90d803df6d0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240701/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00140.png",
      "size": 86678,
      "sha256": "ed3c35a6c32c4b21e961095e68d589e1d7d96a3f403fc4f038856d03828bba12"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240701/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00141.png",
      "size": 81489,
      "sha256": "3d54f7c7d281297e6a86b79067fc1b8662bbdc08f81ea4e9b29879f64bbfabf5"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240701/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00142.png",
      "size": 86279,
      "sha256": "c6c420231465cce11d12e14e77047c4273a5d6225502cf41b1c3274e59ddd1e2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240702/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00143.png",
      "size": 81037,
      "sha256": "64e122047946cae86af16644521c458baa8e2059ef57228683e5ad812cc8f8e2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240708/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00144.png",
      "size": 78143,
      "sha256": "4564d6f38ff6d575ee619302c97907aaeaac637efd03e3135ad86e817c126482"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240710/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00145.png",
      "size": 80440,
      "sha256": "2732881c33e7495839d7f7dbdd66c82a9212f592348179482873cb0e417af3f8"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240710/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00146.png",
      "size": 80508,
      "sha256": "6dab931f7eaa00e19fce4d08959bff758eb5b47ea009329e9057e6cc270aad38"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240710/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00147.png",
      "size": 80297,
      "sha256": "f6004d5b4aaf168b1afac51b8ac1725ccbeeb746826e612ea40192be1274199e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240712/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00148.png",
      "size": 88922,
      "sha256": "928568a02309b8715fab1ee4d3f4881da94309232b9d8e427c0e3d5548ea5aec"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240722/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00149.png",
      "size": 85806,
      "sha256": "ce66d09709a1117a92da3588fc81a1507578d96b3e578ad8ab044cca580b8416"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240726/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00150.png",
      "size": 87215,
      "sha256": "c123c72d42197bac05e933c66d819b32a3c26be16d3ed6343ee4efc4fb8b9da0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240729/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00151.png",
      "size": 83089,
      "sha256": "fc5c8cec71561fd589027aaba7ad6654c8298d5fb53e21cc36ce9bce92fc81a0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240729/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00152.png",
      "size": 90091,
      "sha256": "da9f90e87f0c7417120023365cf05229050d7bd9a36b180e437c2d037a6ca9e9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240729/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00153.png",
      "size": 88189,
      "sha256": "78e74738b97bfff59becfec26adb2060d280c3aae767ee541d2fa86d80dd1930"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240729/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00154.png",
      "size": 83524,
      "sha256": "d05bf84e30a111451ee6ba8e1c11d68e0616b19dfd8e4ca508ad7020cb81680f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240731/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00155.png",
      "size": 83794,
      "sha256": "7f68be333fa25e45ec97ffc7ca78c63e93dce3af372c5db8dcae939dbf244af4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240731/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00156.png",
      "size": 83865,
      "sha256": "cd839543ed6ecebe1380db49e45e54044f032371d77f32e9843428ce91019be1"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240731/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00157.png",
      "size": 80410,
      "sha256": "5d08a1a2d62f3e48f6f5b2dfe59eee40b8dade21cf7651a0e8657ba60144f2c6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240731/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00158.png",
      "size": 82237,
      "sha256": "7a03be3198431d6a2828aed479059eaaa3e2376be0fa2d107e918bb1460464ab"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240801/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00159.png",
      "size": 81052,
      "sha256": "26a9b3ca349da78e81df36f14237d3381bad2a31aff9542a71f565f56770f6d9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240807/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00160.png",
      "size": 81763,
      "sha256": "cfb83d2cb72f99873b1fd6d71b1c229b5d934aebf8ea2198be3735491db7472d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240814/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00161.png",
      "size": 87050,
      "sha256": "00d83b1299202e894de620266856974c7fc2288b5649fe009a77041784e2cc35"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240816/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00162.png",
      "size": 82725,
      "sha256": "83c64d47ca8cb4902670396a231593bc0e753f817cf53e92a6ceb281819df736"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240816/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00163.png",
      "size": 89371,
      "sha256": "22480ebf9dda795b4e275e6abce11a40b90d0936bc12b6042f2f6d29c7245e2b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240827/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00164.png",
      "size": 79991,
      "sha256": "0f77a67d34a0e81ddffb415bc3773482171f44b329fa94489baf45659061b7d1"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240827/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00165.png",
      "size": 86437,
      "sha256": "a21051ca6e50f129bf03b719446ed88ab0909bb708412ac42ecb6ba2b9d2cdec"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240827/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00166.png",
      "size": 81246,
      "sha256": "f4d036755a41303dfd509e2f03a41fb9702f579e902dba50dcf9d7c2932f7e02"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240829/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00167.png",
      "size": 88139,
      "sha256": "56bbd893877d67a8a32d7b030fa78df72b5fcd634749d70f03b47ff23124ed8e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240830/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00168.png",
      "size": 83178,
      "sha256": "3eb8f7013317acae4c7ef82c29d2cffc60f931f788b8f66b5a54d4b7e0cd7d43"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240830/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00169.png",
      "size": 77775,
      "sha256": "0e879d1d0f099b0b62bec3f3c28372e7331fcbebae3b407e35b4e7773c619b55"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240830/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00170.png",
      "size": 80967,
      "sha256": "de3a143af50c303a4a3b369f41f640d0a8e375d983df9708adf3847b602fc117"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240830/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00171.png",
      "size": 80815,
      "sha256": "f162626b8b68189aae6ce1f65e7cbea39a1beaa3ec1d81576311c4cee05391f9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240902/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00172.png",
      "size": 80543,
      "sha256": "2986f0509860da5a678edb9c207757ef9760ce1bb0c746e5882d8441a9d0ff3d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240904/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00173.png",
      "size": 81419,
      "sha256": "b2c023ef0f2607bd628f2ce84aa1cee52cf83b4711ea8fd5f07bbdc33b2cdd8c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240904/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00174.png",
      "size": 81800,
      "sha256": "49fe3ce12f108cefe8d73a679c56539422f9121b6f919b7d1b2526aef7430388"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240906/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00175.png",
      "size": 79186,
      "sha256": "b641a2529462bd7d6bb6a3f355c8f33449cb67e51d325d4b0b3e3808ab241d66"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240911/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00176.png",
      "size": 83756,
      "sha256": "50969f0eef519f43e19ff8e9ccb4d579e9001b355873b62440ff074df2a8333d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240911/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00177.png",
      "size": 80306,
      "sha256": "3a295cf0a9e3559afaf142d6bf967e1b56ff44ba0b5b02f4054bd03304b147d5"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240920/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00178.png",
      "size": 83376,
      "sha256": "0c3e4aaef06489b20ede4cd04c4ca2a21dd20deb67009d316e2eeeea6f61e74c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240925/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00179.png",
      "size": 86935,
      "sha256": "2cd57424809db0c2e608e9e1a78ccc40733066d0a990b62d28fb303941958a69"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240925/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00180.png",
      "size": 84930,
      "sha256": "136b316061aabc399ae6e9e9d3b246d5b107f6760995aaf6c31930befec293f3"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240925/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00181.png",
      "size": 84967,
      "sha256": "e9d59c49a66fdf76d82a259417bfa444248e47ea160d7c5b49b8cbd53cdff5a0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240925/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00182.png",
      "size": 86952,
      "sha256": "98802ad59929e21a29daf0060faa3c177fbdf9fde529e8ff6eb0dfb07d72fcda"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240925/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00183.png",
      "size": 87948,
      "sha256": "b881e30a347e07f20c03c99abd91588f01b2539d5901966a72ae14218442e22c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240926/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00184.png",
      "size": 86904,
      "sha256": "19f009602e48a0da5829480b8be4de28767ff424cd5c7ede57e0ab605c9065aa"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240926/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00185.png",
      "size": 87553,
      "sha256": "52590c989c5042157633f4f3f57af583950ce4c448b1ed978cd66fd2e694b33d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240926/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00186.png",
      "size": 85264,
      "sha256": "309f5960075716e8e723eece685233759e97fde7d67c5689399d89b91aaaa600"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240926/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00187.png",
      "size": 87075,
      "sha256": "4eed2516475fc5cd80c75b63f8a779e35df529af4ebeec53afb73a7c1826bfba"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240927/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00188.png",
      "size": 86511,
      "sha256": "96082c48d57c4a31f09b6f0d82eccc59f56e14024e9bd80218ef9dcbab326ddc"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240927/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00189.png",
      "size": 87693,
      "sha256": "f074b0abc4b7cac4f0ac34165ea8829d488fc573dba5dda08d4df3d47e34c314"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20240930/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00190.png",
      "size": 88742,
      "sha256": "733a16f9c7ffd153b4a504e102acf47c5e2da4f42118adec3dfab79806d8d471"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241021/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00191.png",
      "size": 81840,
      "sha256": "a506374232b1bc65213aeb61cc4cf604c29cd2d656626e54d7dbb7ab8e0fd958"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241021/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00192.png",
      "size": 83990,
      "sha256": "1681cd04494cf5054b17d6ac38c68831b68b9a596336db994a5bd9c997198b34"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241021/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00193.png",
      "size": 87520,
      "sha256": "da11f20f65162cff9eb089881d4bdd9f2fbcd017da1c64c470130fff51479963"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241021/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00194.png",
      "size": 85437,
      "sha256": "991abcea633c981f5cf8aaf962a6939548821ef2aaf1ba92d5f3da231094ca74"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241021/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00195.png",
      "size": 79782,
      "sha256": "5dd4c07b14df8a874009f5ace03ffbd0d5515e72661f821ef000712693625518"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241022/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00196.png",
      "size": 88543,
      "sha256": "029f72b86a98579c8367474d6e1aa56d41b78a9544ff5fb3bcf5ee3f949ebe81"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241022/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00197.png",
      "size": 87971,
      "sha256": "dc9d300e51235c5dac53d02a78fdcaec2448aa8a21b773380d4f455ac4e68ae4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241022/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00198.png",
      "size": 85638,
      "sha256": "3d27ae989ad1b67db333304241eb37bf0425951eda3dbbe0eae6766d82fd771c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241023/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00199.png",
      "size": 90064,
      "sha256": "cb684a0dbcb13f5dc5883b2d0b0833da86ab8bce30ca515c88867d04daa13ebb"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241023/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00200.png",
      "size": 85979,
      "sha256": "83b65b6b1efe9f5c2d2259b6c633adcc14c02565f47115ed58b1257ed3b5e828"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241023/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00201.png",
      "size": 89099,
      "sha256": "40167a1b10de6865a35542b70450e42303478a6c87eac5a76cbf263375489ee1"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241023/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00202.png",
      "size": 88417,
      "sha256": "63f25bbb386d30951b3f09883e499ed85c2b9d3d60963a93efea4ecd44cf616c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241028/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00203.png",
      "size": 85314,
      "sha256": "bfe7b50e51c07c9e9113c145195a4a52eab71523185ea17184b2e9da7ecb0b2b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241029/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00204.png",
      "size": 86977,
      "sha256": "cb2668bd3a94edc47c41bdc345c0ccf2a56b149b7abca839603b107c53e501b4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241029/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00205.png",
      "size": 79991,
      "sha256": "b8af4cfd1d7d427a92540de4ca310bdf670031c01ffc839196bca85a342b20be"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241101/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00206.png",
      "size": 86387,
      "sha256": "0aab9d5c16436800f675799a2b9e0889d95467731d6d3161b09e95a68703a3b6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241105/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00207.png",
      "size": 88293,
      "sha256": "863a577ce30acba78f0729dd0cb06bb0294c7c22002fcd5ea0b8c4af3099838c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241105/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00208.png",
      "size": 86948,
      "sha256": "0e100e0e302674005001ee12c8ca6f3fb00cec14c6ff86f29ebaec74c538407f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241106/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00209.png",
      "size": 82354,
      "sha256": "af6efd9cbd275e008261509518a4c0100458630291a697ef54afad334296302b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241108/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00210.png",
      "size": 81301,
      "sha256": "9068efc7f7638fb437ce3d1a62a2fedb3d16efb5db0347a931dccb01de9d8f98"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241108/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00211.png",
      "size": 80987,
      "sha256": "7c68456a77e3f176817bdb210e072a6e199f40586bad5c4977549781cecaa9f7"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241112/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00212.png",
      "size": 80777,
      "sha256": "7854ee068b109e90177dae03f8fa8e2ac797b2735ead4eae63123c115609855d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241112/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00213.png",
      "size": 85665,
      "sha256": "87c365ab15eecf917b92c540350194e880097a4ca2e47a1e3e7ea9ebee2e8eb0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241120/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00214.png",
      "size": 87741,
      "sha256": "2c0344ea2457dedceebf8b514c3b6bf926945cde09329df7a800094322fb33ac"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241120/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00215.png",
      "size": 85506,
      "sha256": "c9845bf3e43f786e28ab1cf631ed7335df4f1e23c12ec136e68a8a5b88b6d256"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241120/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00216.png",
      "size": 84838,
      "sha256": "83ccc4e89b7d8fb491d08729ba900d588afed2f50eee29eabc6afd16258c1ae2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241120/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00217.png",
      "size": 88445,
      "sha256": "fe87b8d80b376a30ddbb6ededb5878cf1f052dc7c26731284b8a36ce22f90a49"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241120/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00218.png",
      "size": 87445,
      "sha256": "19fe576bdeb3417d5d99bba587646fe6365c486d921170903e512386592e7c01"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241121/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00219.png",
      "size": 87221,
      "sha256": "ea129be2a7a1499f45e78992db986424308df817caeaa322a8963f59aec5bc5b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241121/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00220.png",
      "size": 84924,
      "sha256": "acec90310d7df58dcc16d99ea99d651dc926b8c0f482fe894e2297147dc290c6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241126/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00221.png",
      "size": 80311,
      "sha256": "a77880c64cc554aca648491513314166dffd0dd9a6e6ab7291d542a5370eec42"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241202/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00222.png",
      "size": 86723,
      "sha256": "6e217721c37b062896d8058943d5447a393f3085990347e1c00c9123688b66f0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241203/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00223.png",
      "size": 88009,
      "sha256": "00f534a13a26c87d6ac7300af097e5ca268a42996980dbbed2ba8bc0aa457bc8"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241203/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00224.png",
      "size": 82383,
      "sha256": "e2a5de5f354e6d41aa5b8c0dc13a538f625407cd9d0c408ba86e336e5dbffbe2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241203/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00225.png",
      "size": 85488,
      "sha256": "0170bcecbd0e0e9fe86dc91a5255ef7b792bbdf13abda3a3a1519ec5cb047f6f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241206/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00226.png",
      "size": 88470,
      "sha256": "4052ea68b74066e0d28f4fcbb600c22cdd53990306dae6c442fcafd20ba89a65"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241206/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00227.png",
      "size": 81639,
      "sha256": "8e2c2510316b6543708f26b3b3ea55c216299d9b2a01c40430d035cc65f1d1bf"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241209/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00228.png",
      "size": 80624,
      "sha256": "a33c3f819558c7520c3048e79595da5a32b6e2c265ec1ba56d9b3f67ce4e3dcd"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241209/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00229.png",
      "size": 80238,
      "sha256": "ca9e1ed41d5feae31e6c8f66657a74a94e8a3ab92b39c4d48cdcb97d7216dfd4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241209/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00230.png",
      "size": 79235,
      "sha256": "3a42610db66476fee03194366db6a8ec1597d8fac34c9f68f58f923922561348"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241209/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00231.png",
      "size": 86527,
      "sha256": "c6aac36a4306f5af78a6bb4e16106cd1a2b0eca26cde33552185c7a1e183f74c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241212/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00232.png",
      "size": 85732,
      "sha256": "8cda34e5ed312339c7d8f194efaf664a22e9530c7ec9b59fb0a2492be370b2f8"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241213/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00233.png",
      "size": 80856,
      "sha256": "04c209b30e7a3e3da720e062b25229a2637917728ac7e847c18a46baf8d9bd38"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241213/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00234.png",
      "size": 82000,
      "sha256": "d55a1db8cdd57777b45b329e2970c683039056f3bbf27cc719fa450c448b412b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241223/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00235.png",
      "size": 87963,
      "sha256": "75cbea1d1a0980e1aa9c137c0a6122bc896cb47cc50c8f19edeceeb7962d6d53"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241227/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00236.png",
      "size": 88050,
      "sha256": "4d42aa152da862214d610ca864daaf7b8b4d211b9eb74179c75d1ea66a55ab5b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241227/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00237.png",
      "size": 80973,
      "sha256": "d2dccd43b67192c380affd95da3f17c1ee8f37619170e2833635484b89310160"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20241230/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00238.png",
      "size": 79111,
      "sha256": "25fb4106535a53d1ddbc941fc90d5538adf69c5f04eb94701a3220f883f18c1a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250108/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00239.png",
      "size": 82225,
      "sha256": "d004614779f5c7a224e619a28f7a8b75a2744cce9a3eb14b6e5bf5a249e30069"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250108/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00240.png",
      "size": 79403,
      "sha256": "ca97e809d842a6fd9759326f49795bf5007b12324f6c1a643182bbdfdbb5ee56"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250127/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00241.png",
      "size": 86660,
      "sha256": "10b46efbdf584bc2463aef7c49c6e558cb0f112260759d1e9753c07b44de7b0d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250127/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00242.png",
      "size": 86133,
      "sha256": "e5dd1d5cf2489451f7184532348549b96463aa337aaed0003c64b883916a75ed"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250206/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00243.png",
      "size": 81498,
      "sha256": "f7a661e4a5a15e7521829cf50b83b2137b77869622cf1432bdd3ec84920fd6d7"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250206/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00244.png",
      "size": 87857,
      "sha256": "e179b7a6daea771fffe27b2ff9f461f5cb4cba5cff74965912f3e54a39426acf"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250206/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00245.png",
      "size": 88923,
      "sha256": "bccb21b74805a6109bcf5b1cc5609fb0fad2158dfdb527927fa04b333dadcfab"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250206/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00246.png",
      "size": 80207,
      "sha256": "2f71c431f9ce4561d75624e53e8d5373eecae567e81a6a3fbff7e3b9cb6f1396"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250207/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00247.png",
      "size": 81827,
      "sha256": "9daa8c3f0a7c72b24b5c159c0e9810160353cc661abb43042df5dc895e01253d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250207/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00248.png",
      "size": 86690,
      "sha256": "bcbe5aed7989143a7fd25052d09eab01fd43aa46b447d3ceec90d4c7cd8c098d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250207/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00249.png",
      "size": 87189,
      "sha256": "2f46598c4a564c8ac8888432135c595c1e1d41ca7cdfd9c05e71f5cceba6f737"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250210/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00250.png",
      "size": 84291,
      "sha256": "efa992ea28e399bea8f5bb3b2c8e38b1486d4e19ab49be1e934629b32a269e6d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250210/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00251.png",
      "size": 89380,
      "sha256": "fefa3c22336aba9a8015a5f34c0d833591bb709c2042549f93e1b3ee80909ff5"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250210/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00252.png",
      "size": 88985,
      "sha256": "668c4f0935d70de5806c34062b62ec392da83f21172f3820d1be428c19c0118b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250210/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00253.png",
      "size": 88118,
      "sha256": "9db9825705594c69916c65b3f7c61d64c4922661ad4ca83370aae1884e211db5"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250210/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00254.png",
      "size": 86369,
      "sha256": "44cecb3e09b9b3898e2d8f0aa4e319498caf9eb3773657c3d59c3f1e6f441911"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250213/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00255.png",
      "size": 87427,
      "sha256": "8ba924ef7a7ee6aa3d79c047f2cf7dd92bd13d46f1a0d63b6b12c70c43df3033"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250213/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00256.png",
      "size": 80468,
      "sha256": "b754618c370281bcb7dacefbf592c44fe9a77d881fcef7bdb8190715ebcad0ae"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250218/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00257.png",
      "size": 80359,
      "sha256": "028c6efb28cf46a74d8fb7123ba53283002472682a9b9e7be97a979f31675b19"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250220/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00258.png",
      "size": 87029,
      "sha256": "909c021139e746ff69d47dcb6933eb1fff072d15add6608f847ccc73940aaf1f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250221/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00259.png",
      "size": 87504,
      "sha256": "da6949436848b81461ddb632d7fb908fa7ce1cb272539cb5fb4e44651c44fe64"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250221/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00260.png",
      "size": 77175,
      "sha256": "390ab05834622a87bfcbc13662fe4756ea9f461f44c6927e4c107f75487c40ea"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250221/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00261.png",
      "size": 81698,
      "sha256": "64a8dcba9b18ed6876f404b5ee9c04bcec044b416c25744d682ab1ea6d193510"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250227/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00262.png",
      "size": 90344,
      "sha256": "703a39b0790192eb28959c1e9dd81d05842c7379fca4907ee98dd564617abba9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250227/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00263.png",
      "size": 82560,
      "sha256": "c6bc4fe45d5515a741f58c97a9ca92a804d22f23993d4d1e005575e8d8f28a3b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250227/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00264.png",
      "size": 87487,
      "sha256": "426bdf04d2324d4c3f3a7799eed06ba2ecd6f62bb37bf0919ae6e96bca1bd4ec"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250227/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00265.png",
      "size": 86712,
      "sha256": "b8187c1684784ae8cf22ab880345d8838616acc09ffe4b3dd98d790794a4c415"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250304/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00266.png",
      "size": 80749,
      "sha256": "e2102ddc0fbf82415de3092a1c429c31d5215f56f1fc6b899824dd7b4ffad6c3"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250304/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00267.png",
      "size": 79827,
      "sha256": "da5c162428f0ea1501b5b377bb085cb1dbdd471176e9781b962811c0f3db35e2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250304/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00268.png",
      "size": 87287,
      "sha256": "927594dce7cff99ecb97b429914af817e5f6ddaaa1990a6286ef36bf62811f9d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250305/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00269.png",
      "size": 88220,
      "sha256": "26bf66a07919320124f353f9dcb632c08a8d7e8693a340c2baaf5e60c10fca3f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250305/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00270.png",
      "size": 85476,
      "sha256": "7672ce09c00841e9f809b987c08e3fc94e29641818edae82c452a87448c9e734"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250305/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00271.png",
      "size": 86431,
      "sha256": "15cbc7e8dfbfd4c37969ccad918440810d21105614fc60e56a37d62c72d5094e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250305/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00272.png",
      "size": 81700,
      "sha256": "b3774e0fc479c4f5ceb5737d462ffc732adf7d2540006692bcf436a32f4c4151"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250307/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00273.png",
      "size": 78682,
      "sha256": "8929ef7c3f9d4c4339c24dc72e81d703e74cd69067798231babbc4a75ea82e7d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250311/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00274.png",
      "size": 86956,
      "sha256": "16f92a9d40a9da054e341ab2f07d6acae813c26ccd401c274de48b5e3e8bc6c6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250317/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00275.png",
      "size": 81572,
      "sha256": "c06ea066e430007891ac2817e469d817b641155ddbb90ed65f4215e7848bde2a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250318/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00276.png",
      "size": 82026,
      "sha256": "eeb8ed259f4f0879584f360307a259f09bf5e81952746ea4e3bee11840e6e2d6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250327/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00277.png",
      "size": 81038,
      "sha256": "b1b5575828342ae453e3d3dae2d508cf1d2245aae0991649f7bd533ccf6c63da"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250402/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00278.png",
      "size": 81207,
      "sha256": "d96d84b5b5dbbb671d90f4609437b521eb5429ec2eb2023730b29e666bae914a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250402/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00279.png",
      "size": 81834,
      "sha256": "16301817b980900b83cb95c82bf0844331972f2c00bd5614930f0eb1531e4cae"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250402/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00280.png",
      "size": 83155,
      "sha256": "24c169855503522101a70a083462b5e75fd6ded9010ca4a3e4d66ba0b3c524c2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250409/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00281.png",
      "size": 84816,
      "sha256": "4a75e48d1e32595b0d061180a25659c510d0e2319f24a87b350787f5177b61d2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250410/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00282.png",
      "size": 81859,
      "sha256": "76dc18a022db3d19fdc209b4dc78ab8a274108d2c219084b4475b29667e2e58b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250410/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00283.png",
      "size": 85758,
      "sha256": "bcf102b24b119b99fdd9f4fc0c01bfef2e67e8aaea0d32533b22b1bb510310fe"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250410/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00284.png",
      "size": 81753,
      "sha256": "6b8aa632417b7edb907a6990f5df24e200988da89697640c395acba77f21e232"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250410/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00285.png",
      "size": 81359,
      "sha256": "de7d806313160bf8c2e8a7309213eb94407adae4d9d744920a31d82eb107b02f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250410/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00286.png",
      "size": 81535,
      "sha256": "5f3fd0c976c5ae22a300c42b1fd11287eb608703357ee01f31ad4ef7bc8be6c8"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250411/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00287.png",
      "size": 82207,
      "sha256": "7e8320e15188ebf696bb15ef60c6703f0f0d4e1bc1c760925c2051187f50f256"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250411/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00288.png",
      "size": 81795,
      "sha256": "2fa5d300816ddd016ea66c741d97e038cf42aaeea19e3894cfafb135aba07344"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250411/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00289.png",
      "size": 86360,
      "sha256": "136e1333b59a7ada3cad089ba8a20b74570488268c5924f524e4fb656b12e258"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250411/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00290.png",
      "size": 87453,
      "sha256": "1b6968e6401c7b364438b95d02682fa95ca0144abdff0a6390298fd9595817af"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250422/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00291.png",
      "size": 81856,
      "sha256": "e2240486606d72e9fc590f5e05247529f01ec6db3fb752dd8f6ed965942cb86c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250422/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00292.png",
      "size": 80554,
      "sha256": "5c81f2f9e6fc17d86dd17d49d85915a292444069f18d6dd20c53bf11659be466"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250424/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00293.png",
      "size": 82806,
      "sha256": "9365c499740cf4e7d08c286c9ef09b3763f1eb2637fd72a84618c64fbf07a895"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250424/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00294.png",
      "size": 81241,
      "sha256": "9f67db718b5962815cac8472f58161e13d20ea21486077a31bfbad6e80e87686"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250424/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00295.png",
      "size": 87951,
      "sha256": "63ff781f4aeab6a599e65b4f3c381e31d772940de1d904045fd2b7a846f82c5a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250430/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00296.png",
      "size": 87887,
      "sha256": "4d740f8fdc6945e5096a31a1f62b1e261fc3e602eb0d4675dafce7ee18db0aae"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250506/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00297.png",
      "size": 85075,
      "sha256": "442e4e2bca199e69c429e60494b916f9e17777967a6e06f79f63a667aa739fcb"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250506/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00298.png",
      "size": 82972,
      "sha256": "48263dddb5be389a0dad8b6506d3f79e753eeb5580fcd72ed757f834b3cbee61"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250506/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00299.png",
      "size": 89223,
      "sha256": "ef906bc5f93539a423b49093295ffbbf421ccbf96123313c8915a4bf01c1afa9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250508/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00300.png",
      "size": 89072,
      "sha256": "0dc51c771824ccfa70b8a1baf339dd4aa014c5469cb059f51689c466d6da519a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250508/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00301.png",
      "size": 89122,
      "sha256": "63bf07936726bbff30536b4cc2fd07faff842963e592fc9ea942047d07973e9d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250508/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00302.png",
      "size": 81094,
      "sha256": "7b49a592aed67f84f6926f86e5d5d4a19c58c4ca1856ec2a06ac96ef19f583c8"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250508/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00303.png",
      "size": 82728,
      "sha256": "3325079764f5bf74c1ce6c55756b07097a829e1587a1d1eab7bffe68856a56cd"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250509/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00304.png",
      "size": 83956,
      "sha256": "70efb45460bd02d74be06d025588ec9eb6b1f3b616a961b2b6f5d679a6314d6e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250509/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00305.png",
      "size": 78139,
      "sha256": "21c0097ded3f0dee30576cbc901398c7fa102bf653cd96f8fb63c89fca1d501a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250513/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00306.png",
      "size": 80791,
      "sha256": "beee66aba404cbbfb5c9d76087d444e4d7c2a67795b5f967410a3221a6725632"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250513/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00307.png",
      "size": 78896,
      "sha256": "ae0960c4d994c095e26828bd5cdf5b0f6d83b9a9dc27eb4fd97719c82b45c531"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250521/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00308.png",
      "size": 81629,
      "sha256": "c77906863f553eac36760e2637c70c45e7e9b643f68a509feb0f233384654bc2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250521/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00309.png",
      "size": 85464,
      "sha256": "1572458c1431f23ecd4c0fd0585fe5c72c04e46a5e8d0465493842f066079202"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250527/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00310.png",
      "size": 80846,
      "sha256": "42a323927451ec1e09498e66672a6e6ff74ada99f5a9d8dca7965644a421fb1d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250527/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00311.png",
      "size": 78004,
      "sha256": "41ae177e59e7c36f8dd4c449d81d45234feb8e313ea68062d00f10fc3e9b24cd"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250527/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00312.png",
      "size": 87524,
      "sha256": "651d429bd28ceb4cdcc59bd9611cd7acad88ad7d5d06d9a2330734c0b5411dae"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250530/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00313.png",
      "size": 81639,
      "sha256": "cdcf14bb3fbc94a5cdb1a8161aeb4c95fde7b3ed1e821401aecaac7467ab536a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250604/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00314.png",
      "size": 88669,
      "sha256": "4077231d6070151ed261a508621977ec2bd3c42c65e2929bc50f1fa0885a6ba6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250604/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00315.png",
      "size": 88266,
      "sha256": "46ef768f228fd9205d6b026cf9a9b84ce856a5e246f38ed92aea9714791a347d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250605/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00316.png",
      "size": 80418,
      "sha256": "c36ed8ef4e3cff3a943f0957460eb9a49fc62eff51c3f1e349da1bc9d00df894"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250605/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00317.png",
      "size": 88010,
      "sha256": "668c46ad5a3fd969191ac5e9ad5ec7d235c952d670b9732ab04f58a3613a98b7"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250610/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00318.png",
      "size": 86759,
      "sha256": "2f65763f9419a5640bd450199e2bef2f771a7f3c51e30e113d319a15261b55ff"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250612/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00319.png",
      "size": 89933,
      "sha256": "efc221a6fc280d36fa4f930edce06232d1fcb1d4e1956c3df9bce23aadc8580b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250612/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00320.png",
      "size": 88090,
      "sha256": "dfbb2244236d3b55e8eae7c71ccc715e2ecccf93228b9628da37c3018b656f97"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250617/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00321.png",
      "size": 85076,
      "sha256": "c0c8f35d0b6fba318100787973af7845beb69d8fb052b7b59c2a5e5bc97b1449"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250617/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00322.png",
      "size": 83134,
      "sha256": "32baed29d4277cdf33e54b36089ee4ac8ea30a75d9aaa287dddfd8ac3ff63e77"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250624/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00323.png",
      "size": 85515,
      "sha256": "4fcc01182c9c9947bb7dc15234be5a57240225a69e327315ba864747a3587d38"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250624/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00324.png",
      "size": 72955,
      "sha256": "aedb9db328f2e39d2495f3f54655eb98fddcefac0ecd2cfdfadcd42904eec495"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250624/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00325.png",
      "size": 79621,
      "sha256": "1843b50d48d34b87782b742a91d68590cccdd0f1df9e08cad5fb6cd5e512d287"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250624/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00326.png",
      "size": 78852,
      "sha256": "dd9b74a93eeda86136243b9e7b33dd71c95fb6dc9e01e11a88cf5f8d279a42ad"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250625/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00327.png",
      "size": 86525,
      "sha256": "1488ac9e03ae4cafbcbb88d62b5b45228423855e00d164a0877b3a44746f3a82"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250626/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00328.png",
      "size": 80996,
      "sha256": "c279fa046fe38a72829a31625d7bf287134a02270b7ba248bdb4fd1ce257189a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250626/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00329.png",
      "size": 86854,
      "sha256": "7a8af19ee699d94b5fbc823506e168ca2c7cf861ede97b6cc895dd6fb377139d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250630/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00330.png",
      "size": 84133,
      "sha256": "f073f26e82b52c772c7caeb078c6a42828aca476b13cab5b78438dcc08ed16c3"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250708/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00331.png",
      "size": 85805,
      "sha256": "e0edcb0f2fb503aa63620a283becce0dd175868ef04ad33711eb3e4c24fdfa90"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250708/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00332.png",
      "size": 86768,
      "sha256": "be3d3f7025163723c5dc08fd524f8604fd6cc319bc453c48df95eb8853a5a385"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250709/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00333.png",
      "size": 85398,
      "sha256": "fe1be95c011dc4f084a34133bc82f27299b9c5ee7c2459571a8754edd425314b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250709/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00334.png",
      "size": 86735,
      "sha256": "b3cc30d394762a7bafaac2f6fb7e403267a91f7d0c8c27c58432f3e73fa53218"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250715/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00335.png",
      "size": 82391,
      "sha256": "402e531afc1e538b935f3573c5cdf4278e08285026e4bbd75e4ab5e196d1e7f1"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250715/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00336.png",
      "size": 85995,
      "sha256": "f32e3eb3e9acf994bf717e864a721fd7bcc8b5878cc0f0591f9e2ef9b15fd41f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250717/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00337.png",
      "size": 85227,
      "sha256": "f9fc71815699b6c9195eeb4a360acb79f2b83ef022b0ff45a968c30b29b284ad"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250717/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00338.png",
      "size": 82198,
      "sha256": "0b974cfc0211e8e20562346a1a4aceb6c228b484dff1a209800d267c83684b59"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250717/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00339.png",
      "size": 88256,
      "sha256": "9d8bab0b6674f78169edf0f653b265da6b8adfdfb050ac0895d6365bd1517d43"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250717/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00340.png",
      "size": 78726,
      "sha256": "0efb11599d9f82f6e71492b8f972812f4dac39ca307ab37abf06389e365277f9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250718/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00341.png",
      "size": 82780,
      "sha256": "57555f6959920971d92c25850d17428a1ea1458686bd6cf1893189480ad1936e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250722/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00342.png",
      "size": 88489,
      "sha256": "5faedfa77ed9b3a47b8ba55c3e74714fa5f051ad23a885f4f0e4b653b6e0ff50"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250722/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00343.png",
      "size": 87678,
      "sha256": "94724c114c885d2d6784543ab47907f0c9330407ca2962035f0e2e1561c966f4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250725/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00344.png",
      "size": 80774,
      "sha256": "8b067d4c61623f297653eb803600e6f6bfc8ac778f9e0d63a47238fb05c75e7a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250804/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00345.png",
      "size": 87282,
      "sha256": "5481465450b3d3bbf7307be67f0a350b6c49f384b7a2c96f489633ddc5a81340"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250804/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00346.png",
      "size": 79206,
      "sha256": "dcc9a2c52f2a243979da34d121233feadbd85fc35dc2da08dd008e825f79ba17"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250804/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00347.png",
      "size": 87821,
      "sha256": "035a81697921757829d977e2f479270d636354ed3a6e7e967098f189f659c2de"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250806/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00348.png",
      "size": 88624,
      "sha256": "23c2b65ea552e50540d48f7f1af708a2c383b5ed8b475cac5b893069ae8ee3db"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250806/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00349.png",
      "size": 88152,
      "sha256": "e4a9726a9da52d626b6f073325110872e7b10d88aa106b4f6679d48754426684"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250806/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00350.png",
      "size": 81350,
      "sha256": "2cf2f99531f22a24202d5bacc8e64d02a0d4c9e61515c9e29308277a9510f8e3"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250812/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00351.png",
      "size": 81691,
      "sha256": "ef0019f6e24388c809bb8d8ade8c074929cb609b1594e6d0f5ba8c46e48e9818"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250818/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00352.png",
      "size": 80425,
      "sha256": "83058c3b47cef06051349a81292ae82a2bf3c46cecaa4249642943fee62e13f4"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250818/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00353.png",
      "size": 82014,
      "sha256": "36e746db18d348dfa1c2e14bea32b657ccb5fc05305b9e8ce5f1b39599acd212"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250821/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00354.png",
      "size": 80357,
      "sha256": "6899c7cb628e0379bac68411fe3c8136cf64e2065aa774b99b9d2dcef20245db"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250902/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00355.png",
      "size": 89238,
      "sha256": "75b7014289b5a8c12284f307f47d7e54ef23009149f0ed04904919d9eeca3666"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250908/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00356.png",
      "size": 85538,
      "sha256": "d4e1406e1aa68e1b6e3600a0494684f3e50c9587281ebe74c3da32b02e94d7b0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250908/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00357.png",
      "size": 87774,
      "sha256": "79169bf83437962582f727e08a7155df2d74a1c4598836c92fbc186b20f3368c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250908/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00358.png",
      "size": 88759,
      "sha256": "eabcae3eeddbe297fd5d1eed7f38739a769920de58a08d3a2a5b130c7deca93f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250909/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00359.png",
      "size": 87783,
      "sha256": "07165d31587ea05241e50b2cb4da01669bda72850a34a8a652652c30a48638ef"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250917/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00360.png",
      "size": 81305,
      "sha256": "57401258f641410ba024deb4d23fc67c10e55e3657bc5302575a8872e048dcae"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250917/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00361.png",
      "size": 84067,
      "sha256": "d5fbd2fefdfc1f1c892b90d31ed45dae77bfbd1d5d4bb8bdd1648cae76f7718a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250925/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00362.png",
      "size": 81794,
      "sha256": "0a5ac3c0ae89544753c4c368f408cc14f95ed8a1b7045b71684cda6c230e6a97"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20250930/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00363.png",
      "size": 85580,
      "sha256": "1f868a09829cacac4b6201ba6acd5c78cdec7db790df646ac7bcb5d310b7d37b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251010/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00364.png",
      "size": 85728,
      "sha256": "1508f4bb6c0850bf33a7cd291ab30c143f9dd32dcff56c3b674dd328879566b0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251016/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00365.png",
      "size": 83948,
      "sha256": "16a1497cc9befb437999371aa940d08172b65896f4d91d70a933fe6d51a94f80"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251021/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00366.png",
      "size": 89488,
      "sha256": "6a2c92903af2981ae3025fd0ffa10e63957be12babd2517c276b1efb61f10b80"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251021/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00367.png",
      "size": 86669,
      "sha256": "64d52c63cabd163840a5dad3eba9c33e34b9f25218a331a33f432b1585caaa5e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251022/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00368.png",
      "size": 83539,
      "sha256": "e0530b7cf8348ce2a62f0d29bebe2266def4ef24fd3b9f697293138cbe8c6413"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251022/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00369.png",
      "size": 82078,
      "sha256": "ad1d05202a8a1d78dfed02452209386ee3594cb63b2a55a5d8f136612c17bb47"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251022/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00370.png",
      "size": 85525,
      "sha256": "14385d6a121c66bafb717526a0ee0ac995452147ff7cc574c285a22bc1ef4c49"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251027/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00371.png",
      "size": 88955,
      "sha256": "5148975d367a85a2020db9daf48c49ad88ac20414969dc193fb38ffc72ee0cd2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251028/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00372.png",
      "size": 80801,
      "sha256": "31b55c8bbef2e821df74a166a9ca102065872feb1f2794763787c035bfd0b947"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251028/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00373.png",
      "size": 79580,
      "sha256": "47485e68114a3fd3e38608be9d9332c2fd53081820e7daf1487532b073575966"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251103/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00374.png",
      "size": 87761,
      "sha256": "785a1207c03b2faca57397dd59040dd77c4774e843f2ac97ed0a5b075c737755"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251103/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00375.png",
      "size": 82716,
      "sha256": "37d5103e0114b114e7896a6c19714b51624d17aea21eced7ddb813854a6fd14b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251103/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00376.png",
      "size": 84004,
      "sha256": "1092123a3577987e1b31ef9ef85a607520ad171096b8e2113e591112af2da5c0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251103/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00377.png",
      "size": 85351,
      "sha256": "5dfb1df6e400deabdce9d4494a31e70dec5ea762be8d9476ace784885866ac55"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251104/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00378.png",
      "size": 80604,
      "sha256": "e7fb578a916e9c95983d6a14dad5062cc17ca120020e84229bf913d062a3829f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251104/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00379.png",
      "size": 86190,
      "sha256": "21edd3cd35b911dabbac219daa6092969a533f461b4546f6f83db26dcffb0f05"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251104/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00380.png",
      "size": 79820,
      "sha256": "c94ad4e76b07f5ff3d549f72f1bae4a3a9ba34c47dc91c87b9d9929322009814"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251111/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00381.png",
      "size": 77785,
      "sha256": "e402c7243a201eaf05f165025c159d2fedf9820efa11fb8730b4f6a6b98d15c6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251114/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00382.png",
      "size": 80206,
      "sha256": "2366949dd6eba04b98e1c8252561ce7a54e28a7044612c86e4523d127778da29"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251114/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00383.png",
      "size": 79960,
      "sha256": "c90b9c2657d2a45a88801c69c0c69d23b95e1def533ed49f249a077dbc468c1b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251125/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00384.png",
      "size": 84500,
      "sha256": "57054a1c1c46ffc628e04daf4b24ab7e7652e5327f1ae25fd5ba1b1925cdf8d2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251125/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00385.png",
      "size": 86209,
      "sha256": "f6e8d0d1493d108f06444b10b19f91c4ce2d93226dc5ddab935a5eb40718348e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251126/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00386.png",
      "size": 79819,
      "sha256": "8d8ae13d43d59e835236f9df56e3ab654f97a55fb57729bad563444873f27a67"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251126/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00387.png",
      "size": 89119,
      "sha256": "d6076310b64229a082e70ea106a9dac3156c92911b5f3bdfc7f974cbf90fe388"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251201/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00388.png",
      "size": 87171,
      "sha256": "5e4fd61719c4546c528a5ddffdd3a3c9035f033cc4aa303e266ffc0662943c82"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251201/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00389.png",
      "size": 80060,
      "sha256": "0a625478a53e58e93daa011ab1d349d44becc517376ddf8b2250f067d1881bbc"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251202/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00390.png",
      "size": 83655,
      "sha256": "2438002ca0521daa3aa7687ed5170a440bb75df6ef821bcfea45e7602915b627"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251208/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00391.png",
      "size": 81882,
      "sha256": "5df0129405be9e68f4c593754f180ab78fa3f3ad7cc154301ea38792900d531c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251208/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00392.png",
      "size": 90752,
      "sha256": "5d849ba1c28a6fa75f2cd3aba340d8fd3454c0742b10db644b0fa1b36f586e28"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251209/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00393.png",
      "size": 79809,
      "sha256": "ca60f958b1251af841cfdc0eaeb0b3a64f03cb9465024a9ebded0c7177ab32a3"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251218/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00394.png",
      "size": 82669,
      "sha256": "4769a95e1784f99d5b2d6c501c28abd49c1b141b4a1284ce529aa8a547d592d2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251218/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00395.png",
      "size": 86743,
      "sha256": "f79de1d61450a774ea0cad1a50771e4fd15d980cd139f5647ec3728a5554b337"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251218/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00396.png",
      "size": 87451,
      "sha256": "561bf53f7b3164ef8ac1282ff5d0d256886b9f5543eb6fac2599b46aac72633a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251222/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00397.png",
      "size": 80830,
      "sha256": "deeaba45ef6452ca6ff3ce4dd91ca233eb23ca8955fb7f23459a83e8695e9e1e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251222/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00398.png",
      "size": 88303,
      "sha256": "6963bb30c2feb09c70ff7a97abb7a46ffdb79b4b5e2fd7be265263c2df4c10dd"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251225/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00399.png",
      "size": 80548,
      "sha256": "dcd0e0ac7df777d348fdcbb799c3d835dd00e7a11c1f94fb695df5b070bad15e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251225/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00400.png",
      "size": 85925,
      "sha256": "4e8916a2850c33224a0e33bd62527d759e3a8308d32a73ae0395aedd25c57aa2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251225/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00401.png",
      "size": 84385,
      "sha256": "cad13d186f869d74ef495429d08b131b846e56ec61562577c4a1605ce430734e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20251226/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00402.png",
      "size": 81146,
      "sha256": "bf27ec0cf50665737fc08ea815cf911e70c20a75bfc8ec117acce02077536df0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260106/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00403.png",
      "size": 74134,
      "sha256": "f7b460c102e684a32ef6b7d17ae1675f01f8ea0721800bcec4415d1e1c81e4da"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260106/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00404.png",
      "size": 85635,
      "sha256": "5832ad8fdf26a20ce2d25098423d136f63518a37a7b7b90fa8f11f442ffd18f2"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260106/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00405.png",
      "size": 82533,
      "sha256": "28cbf396eea0dd9372a6262c12bb125ae113e780ffd86ddeea5c598c6e7da05c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260106/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00406.png",
      "size": 84728,
      "sha256": "c39c3f7fe3596555cfbf69d90f3506d07f7757b79e924d8dee8f9dd514205f88"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260109/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00407.png",
      "size": 85534,
      "sha256": "6a5375f6b29d4aec2a48e514f851e3ca9bd60db1477316cd7189b49f74c1f8d0"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260109/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00408.png",
      "size": 80802,
      "sha256": "49f72a82d4b14f512eaea38242be70ad9af885387d33d8f7e11b5dee71f87a61"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260109/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00409.png",
      "size": 80800,
      "sha256": "607d7d0d4e3b896f1873ad93b0700180d8f5112946d315c48110573d937b3471"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260112/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00410.png",
      "size": 82070,
      "sha256": "eb9cb051e0029168a7a202ba9a7c13b0259d950f67076d28ee37eed27dc4f784"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260112/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00411.png",
      "size": 81658,
      "sha256": "fb5ca7c57d15c8c6dba173022c930f774b14b32a619110ac8cbeec5aee38f6ed"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260112/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00412.png",
      "size": 80832,
      "sha256": "e507b5f3107784143a8fa7b4f0a36b9e11eb38f0edc1ddc89de8c7b81a87186b"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260122/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00413.png",
      "size": 87245,
      "sha256": "03b7f412db8339441cc51eb6b26c0c008345a5cc2eadb80fd5dd374dab8c629c"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260123/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00414.png",
      "size": 85636,
      "sha256": "a31827e9c28606e0b5dcbf51e5274ebe04c01ed9ceaae0d4011f5d380ceb2471"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260123/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00415.png",
      "size": 88713,
      "sha256": "d505e74600c7501e1ff28ce711dabb9538d79bcca7f02756776107dc2a29ce8f"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260204/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00416.png",
      "size": 86733,
      "sha256": "23f4f637eb1666b38f48232d865e454b5002f0e4bcc8492e77ce8910cf493e9a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260210/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00417.png",
      "size": 79584,
      "sha256": "27c09fefe75ca421ccfb6b4fc43ff5350325d053e815a9056837ee7b654e8123"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260210/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00418.png",
      "size": 82407,
      "sha256": "227ebe53c5384387e999ef655ea7943187bf74fda48f60914d533e18538ac0fa"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260210/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00419.png",
      "size": 86176,
      "sha256": "58b5de609e73cc5a637786c94c9bfdfdb45db48ddfa1ef3b78904b259e702d17"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260225/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00420.png",
      "size": 81574,
      "sha256": "651de52451468a76aaaac83e5a1382541b3f3378a64a3717eaee994808ac4f5d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260225/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00421.png",
      "size": 86079,
      "sha256": "8e16ae5db6be459b2f4fdcdb5653e80716a133ff62fd0f728175434e5b394782"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260225/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00422.png",
      "size": 79866,
      "sha256": "0297a5ba839ee139c1de7f74a666a6205b4ef56188d1595ad5985fe1cfdb8667"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260226/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00423.png",
      "size": 88397,
      "sha256": "32d656b7decfd7413963c270b20c0226e951dad0e2e1d993a87b2ccbde60e1cf"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260302/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00424.png",
      "size": 80486,
      "sha256": "4a448c2231fb9437dd48c936222c9a7a9cd800023138f0f2bc769d8cf1ac2eb7"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260306/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00425.png",
      "size": 89158,
      "sha256": "f6621c091d03f095a8504bbb21d9a87a4b80c3d4af527697a0896d313755c0f5"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260306/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00426.png",
      "size": 87413,
      "sha256": "3c00a0440a1aae124e444a5f153704dbd079002db635801d12a4f4d8b6fdbf52"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260309/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00427.png",
      "size": 88331,
      "sha256": "50d7a3a9367a0c7c8fde05a7c579318b04cd838e0ff9e781f37abf87cc6a875d"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260309/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00428.png",
      "size": 73865,
      "sha256": "e49814ffa2e9dfe3671a45821999aac619debb1031a11d5e326e8638e825961e"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260309/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00429.png",
      "size": 73776,
      "sha256": "95a1710ed80c1c976df385c3cbc04d77369aa9682635acd5b74fccf088b5c1fb"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260311/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00430.png",
      "size": 72571,
      "sha256": "1eb20ac3b5a131c2c487b770de2b9c726de2ea966630240f079066593cf31dc6"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260330/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00431.png",
      "size": 81223,
      "sha256": "54ea2bc39fa870e1d49891f100e2e437039270eaa3a2ab1b3f76e1bcd3cf9c05"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260402/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00432.png",
      "size": 81637,
      "sha256": "863846b8015577bcc64d0de99003f213ac4221bbad3739357f2f7477915a9cc9"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260402/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00433.png",
      "size": 88492,
      "sha256": "b6651da1451504c901132f4eae03f43e8bc2971ec7fb498183beed737a975d01"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260408/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00434.png",
      "size": 80870,
      "sha256": "8cbd9d7d3d3c28d5e12536f1101858d5f361ac86d6111c20200d73e9e4a0063a"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260408/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00435.png",
      "size": 84383,
      "sha256": "78bb8c6944517153534a1929b753cd5fc6dfbbce76b86385721786bc46b83081"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260413/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00436.png",
      "size": 83480,
      "sha256": "8e058cd7f8937accdf22e54b98cccdd5b8de0aff907530d49ea0a7cce8696d02"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260413/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00437.png",
      "size": 73778,
      "sha256": "ed1d8b22ebad6a8c6d380668331d26615a0cde22b9a9c6a9cece718192a1e177"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260413/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00438.png",
      "size": 73850,
      "sha256": "8dfe4f428b2e420450e3c76dd70d2d090340fccec128aa944dbd8938f014c758"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260417/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00439.png",
      "size": 78547,
      "sha256": "ed7cf239a644cf37c4662142a96027d11657daba6e2ff07f473ca5798165a0fe"
    },
    {
      "path": "charts/sell_rolling_review/WUJI-STRICT-20260417/SELL-CAND-LOT-RUN-ANA-WUJI-V1-BUY-POINT-FORMAL-REPAIR-20260616-001-00440.png",
      "size": 83659,
      "sha256": "546af9bf132bdd3b69bcec5c03ef613db97855c47912d230f9ef60f707c7f6c2"
    },
    {
      "path": "manual_decision_external_drafts/sell_rolling_after_buy_repair_20260616/manual_sell_rolling_after_buy_repair_draft_batch001.md",
      "size": 37939,
      "sha256": "6d5780d17f662212542df808d4e2b30675fda41320a96d010c4ccd0287e55489"
    },
    {
      "path": "manual_decision_external_drafts/sell_rolling_after_buy_repair_20260616/manual_sell_rolling_after_buy_repair_draft_batch002.md",
      "size": 37601,
      "sha256": "9884977e82c2680d64604110bb0609a4320208bf3be4ece808b713072ea222bb"
    },
    {
      "path": "manual_decision_external_drafts/sell_rolling_after_buy_repair_20260616/manual_sell_rolling_after_buy_repair_draft_batch003.md",
      "size": 37669,
      "sha256": "7cde623e60e5cd01690f939dc4f2987a7acbcc3ce7538bdd86f211bccf3ceca8"
    },
    {
      "path": "manual_decision_external_drafts/sell_rolling_after_buy_repair_20260616/manual_sell_rolling_after_buy_repair_draft_batch004.md",
      "size": 37644,
      "sha256": "1fd9f75af4bcc4811e38121835afa931ec3c526b949e502af0e66fb6bcd60601"
    },
    {
      "path": "manual_decision_external_drafts/sell_rolling_after_buy_repair_20260616/manual_sell_rolling_after_buy_repair_draft_batch005.md",
      "size": 37537,
      "sha256": "9efcbc56de52c5b30772d8112ce11563bae114aa49e436be71b639c075edca81"
    },
    {
      "path": "manual_decision_external_drafts/sell_rolling_after_buy_repair_20260616/manual_sell_rolling_after_buy_repair_draft_batch006.md",
      "size": 37220,
      "sha256": "5b925fc083653403c8b2c991e13070351582d6fe907528b4ed12d655b0e49740"
    },
    {
      "path": "manual_decision_external_drafts/sell_rolling_after_buy_repair_20260616/manual_sell_rolling_after_buy_repair_draft_batch007.md",
      "size": 21002,
      "sha256": "164e0991d644790c437ca05bfe4bd79f653eec59df9e0d1bee46150f8666d6a5"
    },
    {
      "path": "manual_sell_rolling_decision_external_source_ledger.csv",
      "size": 722043,
      "sha256": "d6eb77951e8c774dc87b598e71367e5c2860fb203cc5b56e62bd7ad3034fa7a7"
    },
    {
      "path": "manual_sell_rolling_decision_external_summary.json",
      "size": 617,
      "sha256": "92cd569b5ecb1d0a0765e066708f289b9dd80f45398c49cc65f06bb86399d247"
    },
    {
      "path": "manual_sell_rolling_decision_external_template.csv",
      "size": 377212,
      "sha256": "9faef036dcab0309a2fc18ccd877640ee2ac36a7f81c8db78e7306214155e0aa"
    },
    {
      "path": "sell_rolling_apply_self_check.json",
      "size": 246,
      "sha256": "a0573a1037deeb4251c5affebeff1fe3c1054ec291a1ace31915b194bdafe49e"
    },
    {
      "path": "sell_rolling_apply_self_check_items.csv",
      "size": 446,
      "sha256": "53ef2c606f4f46de51e35d9d37ebfff53fd3d2f9caa638ad7079b3fcdee2e8d1"
    },
    {
      "path": "sell_rolling_apply_summary.json",
      "size": 706,
      "sha256": "152fb052855b1cbf2eb9672a0e5b255237a53c86e0759da022aa4952ceb69e2a"
    },
    {
      "path": "sell_rolling_apply_summary.md",
      "size": 563,
      "sha256": "c81adb8bfe08a9c8b0b8041eb91b55b74b3dc72943a9621cb9e7526d551e6e57"
    },
    {
      "path": "sell_rolling_chart_evidence_audit.csv",
      "size": 164092,
      "sha256": "a0b418d3a5de90127a2306f6e989e843b9e594c76c795f85b2ab59933f0d949f"
    },
    {
      "path": "sell_rolling_replay_input_summary.json",
      "size": 610,
      "sha256": "50b2062fb75c062c532ebdd9c78bbfa8e5fa96d27607cb346300ee9f2c63dc49"
    },
    {
      "path": "sell_rolling_replay_input_summary.md",
      "size": 333,
      "sha256": "b4ed2320d26b59b295ed1dbef5cb0fea6939762216c40fd3fae038193fe9acf7"
    },
    {
      "path": "sell_rolling_review_prep_self_check.json",
      "size": 235,
      "sha256": "a61bef35eaf7a92bf44118fc92bf09655c69f23fa81b6b3409defeef20e1ac31"
    },
    {
      "path": "sell_rolling_review_prep_self_check_items.csv",
      "size": 415,
      "sha256": "a8a7bbbe42c9716e6b0be0fdb5850d9ecde06835fe002568384d6307f60c1eb8"
    },
    {
      "path": "sell_rolling_review_prep_summary.json",
      "size": 682,
      "sha256": "85197f2883bb8c000827c434e10baf611aded69fe54add3cdc5e53a4a29bf921"
    },
    {
      "path": "sell_rolling_review_prep_summary.md",
      "size": 588,
      "sha256": "be672f1e7c30d4cf7dacedd7ef90b4cfaf3f7aaffdb09d20f384859a823142f7"
    },
    {
      "path": "strict_note_buy_lot_ledger.csv",
      "size": 433441,
      "sha256": "8fd9ce688182274092189142cbb70e625334f4dffb95366910f94c88bf665c5a"
    },
    {
      "path": "strict_note_buy_order_ledger.csv",
      "size": 523148,
      "sha256": "532cadab26f30b35c2b268eef7781d4a89544a4a1647140252cc261f2a31baf9"
    },
    {
      "path": "strict_note_rolling_low_decision_signal_ledger.csv",
      "size": 79817,
      "sha256": "3a100cdb7ab3956ace9139a80fca2dd7a67e58430a4222b1ce48147b3745a6d1"
    },
    {
      "path": "strict_note_rolling_low_order_ledger.csv",
      "size": 15731,
      "sha256": "1f4c22367d1ae87150faec56133b899f60fa8543bf05b14402da59720d8caccb"
    },
    {
      "path": "strict_note_rolling_low_review_candidate_ledger.csv",
      "size": 61211,
      "sha256": "5760d678b504cfa60b3e2faf94e73a4d3b2032a982ab9c93796a2f4da76d3437"
    },
    {
      "path": "strict_note_sell_decision_signal_ledger.csv",
      "size": 389393,
      "sha256": "b448eebe5b0dee77531d658122a0934c6ccfddbd593d5e7f9bfac0881f2c0d16"
    },
    {
      "path": "strict_note_sell_order_ledger.csv",
      "size": 151471,
      "sha256": "6d2dbe10ba632a7b1438fbb20bbc37bcd6025731207db64484dbd07116e7b007"
    },
    {
      "path": "strict_note_sell_rolling_boundary_table.csv",
      "size": 64578,
      "sha256": "ac93f1d6a871e1632b450ca664e1fdc46af5a7e3b2dadbeb1393a856491e665a"
    },
    {
      "path": "strict_note_sell_rolling_review_candidate_ledger.csv",
      "size": 304662,
      "sha256": "f9f517a96961ae3ea5c5390062b39a1aa22c6777a084adff7048644e1b1cb8b4"
    },
    {
      "path": "tools/apply_external_sell_rolling_decisions_after_buy_repair.py",
      "size": 17067,
      "sha256": "3a41478f82e1bf89ffd8130ce3aa1a473a9b523413eaa271a63dadfe894c544b"
    },
    {
      "path": "tools/build_rolling_low_review_prep_after_buy_repair.py",
      "size": 20487,
      "sha256": "23656378bfbca21fd0555994a42474541c02d615d8bb9ab36318b7d0227266c8"
    },
    {
      "path": "tools/build_sell_rolling_external_source_after_buy_repair.py",
      "size": 6814,
      "sha256": "4c21b5022d3590630eb79c60cdba68799aceb4df6cc2e18bc92019cdb5d191ca"
    },
    {
      "path": "tools/build_sell_rolling_review_prep_after_buy_repair.py",
      "size": 20533,
      "sha256": "205433f4a9983c068b34ddc43a222c82b1290362f74b9dd8e270e84b8fdda6f8"
    },
    {
      "path": "tools/prepare_sell_rolling_replay_inputs_after_buy_repair.py",
      "size": 3815,
      "sha256": "a65e9bbb8c455cd43636be67d0936c843f1284840de78f10eaaa1c02b335bf3b"
    }
  ]
}