Pages:
Author

Topic: VanitySearch (Yet another address prefix finder) - page 55. (Read 31159 times)

legendary
Activity: 1914
Merit: 2071
I committed a new Makefile with debug option.

Code:
make clean
make gpu=1 debug=1 all

In debug mode no inlining is done.

But, obviously it is much slower.
So launch

Code:
pons@linpons:~/VanitySearch$ ./VanitySearch -g 1 -check


Code:
./VanitySearch -g 1 -check
GetBase10() Results OK
Add() Results OK : 108.696 MegaAdd/sec
Mult() Results OK : 10.684 MegaMult/sec
Div() Results OK : 1.656 MegaDiv/sec
ModInv()/ModExp() Results OK
ModInv() Results OK : 132.041 KiloInv/sec
IntGroup.ModInv() Results OK : 2.222 MegaInv/sec
ModMulK1() Results OK : 3.661 MegaMult/sec
ModMulK1order() Results OK : 1.700 MegaMult/sec
ModSqrt() Results OK !
Check Generator :OK
Check Double :OK
Check Add :OK
Check GenKey :OK
Adress : 15t3Nt1zyMETkHbjJTTshxLnqPzQvAtdCe OK!
Adress : 1BoatSLRHtKNngkdXEeobR76b53LETtpyT OK!
Adress : 1JeanLucgidKHxfY5gkqGmoVjo1yaU4EDt OK(comp)!
Adress : 1Test6BNjSJC5qwYXsjwKVLvz7DpfLehy OK!
Adress : 1BitcoinP7vnLpsUHWbzDALyJKnNo16Qms OK(comp)!
Check Calc PubKey (full) 1ViViGLEawN27xRzGrEhhYPQrZiTKvKLo :OK
Check Calc PubKey (even) 1Gp7rQ4GdooysEAEJAS2o4Ktjvf1tZCihp:OK
Check Calc PubKey (odd) 18aPiLmTow7Xgu96msrDYvSSWweCvB9oBA:OK
GPU: GPU #0 Quadro M2200 (8x128 cores) Grid(1x128)
Seed: 888394
193.110 KiloKey/sec
ComputeKeys() found 26 items , CPU check...
GPU/CPU check OK


Code:
~/VanitySearch$ /usr/local/cuda-8.0/bin/cuda-memcheck --tool memcheck VanitySearch -g 1 -check
========= CUDA-MEMCHECK
GetBase10() Results OK
Add() Results OK : 109.890 MegaAdd/sec
Mult() Results OK : 10.695 MegaMult/sec
Div() Results OK : 1.818 MegaDiv/sec
ModInv()/ModExp() Results OK
ModInv() Results OK : 130.572 KiloInv/sec
IntGroup.ModInv() Results OK : 2.182 MegaInv/sec
ModMulK1() Results OK : 3.602 MegaMult/sec
ModMulK1order() Results OK : 1.684 MegaMult/sec
ModSqrt() Results OK !
Check Generator :OK
Check Double :OK
Check Add :OK
Check GenKey :OK
Adress : 15t3Nt1zyMETkHbjJTTshxLnqPzQvAtdCe OK!
Adress : 1BoatSLRHtKNngkdXEeobR76b53LETtpyT OK!
Adress : 1JeanLucgidKHxfY5gkqGmoVjo1yaU4EDt OK(comp)!
Adress : 1Test6BNjSJC5qwYXsjwKVLvz7DpfLehy OK!
Adress : 1BitcoinP7vnLpsUHWbzDALyJKnNo16Qms OK(comp)!
Check Calc PubKey (full) 1ViViGLEawN27xRzGrEhhYPQrZiTKvKLo :OK
Check Calc PubKey (even) 1Gp7rQ4GdooysEAEJAS2o4Ktjvf1tZCihp:OK
Check Calc PubKey (odd) 18aPiLmTow7Xgu96msrDYvSSWweCvB9oBA:OK
GPU: GPU #0 Quadro M2200 (8x128 cores) Grid(1x128)
Seed: 781110
15.061 KiloKey/sec
ComputeKeys() found 26 items , CPU check...
GPU/CPU check OK
========= ERROR SUMMARY: 0 errors

Code:
~/VanitySearch$ /usr/local/cuda-8.0/bin/cuda-memcheck --tool memcheck VanitySearch -g 32 -check
========= CUDA-MEMCHECK
GetBase10() Results OK
Add() Results OK : 80.000 MegaAdd/sec
Mult() Results OK : 10.030 MegaMult/sec
Div() Results OK : 1.883 MegaDiv/sec
ModInv()/ModExp() Results OK
ModInv() Results OK : 130.924 KiloInv/sec
IntGroup.ModInv() Results OK : 2.221 MegaInv/sec
ModMulK1() Results OK : 3.659 MegaMult/sec
ModMulK1order() Results OK : 1.704 MegaMult/sec
ModSqrt() Results OK !
Check Generator :OK
Check Double :OK
Check Add :OK
Check GenKey :OK
Adress : 15t3Nt1zyMETkHbjJTTshxLnqPzQvAtdCe OK!
Adress : 1BoatSLRHtKNngkdXEeobR76b53LETtpyT OK!
Adress : 1JeanLucgidKHxfY5gkqGmoVjo1yaU4EDt OK(comp)!
Adress : 1Test6BNjSJC5qwYXsjwKVLvz7DpfLehy OK!
Adress : 1BitcoinP7vnLpsUHWbzDALyJKnNo16Qms OK(comp)!
Check Calc PubKey (full) 1ViViGLEawN27xRzGrEhhYPQrZiTKvKLo :OK
Check Calc PubKey (even) 1Gp7rQ4GdooysEAEJAS2o4Ktjvf1tZCihp:OK
Check Calc PubKey (odd) 18aPiLmTow7Xgu96msrDYvSSWweCvB9oBA:OK
GPU: GPU #0 Quadro M2200 (8x128 cores) Grid(32x128)
Seed: 639838
59.308 KiloKey/sec
ComputeKeys() found 721 items , CPU check...
GPU/CPU check OK
========= ERROR SUMMARY: 0 errors
sr. member
Activity: 462
Merit: 696
I committed a new Makefile with debug option.

Code:
make clean
make gpu=1 debug=1 all

In debug mode no inlining is done.

But, obviously it is much slower.
So launch

Code:
pons@linpons:~/VanitySearch$ ./VanitySearch -g 1 -check
sr. member
Activity: 462
Merit: 696
Could you try this:
Code:
pons@linpons:~/VanitySearch$ /usr/local/cuda/bin/cuda-memcheck --tool memcheck VanitySearch -g 1 -check

On my Linux it does not work (too old hardware) but on windows it ends like this.

Code:
C:\C++\VanitySearch\x64\ReleaseSM30>cuda-memcheck --tool memcheck VanitySearch.exe -g 1 -check
...
Check Calc PubKey (odd) 18aPiLmTow7Xgu96msrDYvSSWweCvB9oBA:OK
GPU: GPU #0 GeForce GTX 645 (3x192 cores) Grid(1x128)
Endianness: Little
Seed: 1006346800
401.220 KiloKey/sec
ComputeKeys() found 46 items , CPU check...
GPU/CPU check OK
========= ERROR SUMMARY: 0 errors
legendary
Activity: 1914
Merit: 2071
Just to try.
Try to reduce the number of thread  per block from 128 to 64.
And if it works to double the number of block per grid using -g

GPUEngine.h:28

Code:
#define NB_TRHEAD_PER_GROUP 64

There is a typo in the code Wink

The errors remain.
sr. member
Activity: 462
Merit: 696
Just to try.
Try to reduce the number of thread  per block from 128 to 64.
And if it works to double the number of block per grid using -g

GPUEngine.h:28

Code:
#define NB_TRHEAD_PER_GROUP 64

There is a typo in the code Wink
sr. member
Activity: 462
Merit: 696
OK it confirms what I'm thinking.
It seems that this code is now near the limit of what CUDA (or nvcc) can do.
May be CUDA SDK 10 can help.
I'll try (for other users also) to make things work for CUDA 10 under Linux.
I'll try also to reduce the code size.
legendary
Activity: 1914
Merit: 2071

I would try:
 __noinline__ _ModMult,
__noinline__  ModNeg256


Problem solved!!!

Code:
__device__ __noinline__ void ModNeg256(uint64_t *r, uint64_t *a) {
__device__ __noinline__ void ModNeg256(uint64_t *r) {
__device__ __noinline__ void ModSub256(uint64_t *r, uint64_t *a, uint64_t *b) {
__device__ __noinline__ void ModAdd256(uint64_t *r, uint64_t *b) {
__device__ __noinline__ void ModSub256(uint64_t *r, uint64_t *b) {
__device__ __noinline__ void _ModMult(uint64_t *r, uint64_t *a, uint64_t *b) {
__device__ __noinline__ void _ModMult(uint64_t *r, uint64_t *a) {

Code:
./VanitySearch -g 16 -check
GetBase10() Results OK
Add() Results OK : 256.410 MegaAdd/sec
Mult() Results OK : 21.186 MegaMult/sec
Div() Results OK : 4.785 MegaDiv/sec
ModInv()/ModExp() Results OK
ModInv() Results OK : 327.826 KiloInv/sec
IntGroup.ModInv() Results OK : 8.977 MegaInv/sec
ModMulK1() Results OK : 12.876 MegaMult/sec
ModMulK1order() Results OK : 6.280 MegaMult/sec
ModSqrt() Results OK !
Check Generator :OK
Check Double :OK
Check Add :OK
Check GenKey :OK
Adress : 15t3Nt1zyMETkHbjJTTshxLnqPzQvAtdCe OK!
Adress : 1BoatSLRHtKNngkdXEeobR76b53LETtpyT OK!
Adress : 1JeanLucgidKHxfY5gkqGmoVjo1yaU4EDt OK(comp)!
Adress : 1Test6BNjSJC5qwYXsjwKVLvz7DpfLehy OK!
Adress : 1BitcoinP7vnLpsUHWbzDALyJKnNo16Qms OK(comp)!
Check Calc PubKey (full) 1ViViGLEawN27xRzGrEhhYPQrZiTKvKLo :OK
Check Calc PubKey (even) 1Gp7rQ4GdooysEAEJAS2o4Ktjvf1tZCihp:OK
Check Calc PubKey (odd) 18aPiLmTow7Xgu96msrDYvSSWweCvB9oBA:OK
GPU: GPU #0 Quadro M2200 (8x128 cores) Grid(16x128)
Endianness: Little
Seed: 120744
85.474 MegaKey/sec
ComputeKeys() found 394 items , CPU check...
Expected item not found fefea433 b7c86941 0c9e4746 90f5216a 5c48b7db (thread=1534, incr=510, endo=1)
CPU found 395 items
GPU: point   correct [70/70]
GPU: endo #1 correct [75/76]
GPU: endo #2 correct [69/69]
GPU: sym/point   correct [58/58]
GPU: sym/endo #1 correct [58/58]
GPU: sym/endo #2 correct [64/64]

The speed now is about 145 MKeys/s vs 162 Mkeys/s.

Thanks!!!

EDIT:

I think I have to add some other __noinline__...

Code:
ComputeKeys() found 380 items , CPU check...
Expected item not found 3412f1c5 0b1d320d 010f9de1 08deea41 d42a2b22 (thread=1070, incr=-514, endo=0)
Expected item not found fefe61da f2af1a6e c20ea91b 56ebc050 be432b01 (thread=1922, incr=511, endo=1)
CPU found 378 items
GPU: point   correct [67/67]
GPU: endo #1 correct [54/55]
GPU: endo #2 correct [56/56]
GPU: sym/point   correct [67/68]
GPU: sym/endo #1 correct [69/69]
GPU: sym/endo #2 correct [63/63]
sr. member
Activity: 462
Merit: 696
After the mark, calculation are 50% wrong.
On my 2 configs, all is working fine.
It really looks like the weird problem I had last time.

The _GetHash160Comp is ok, it is also tested alone by the check function.
The _ModMult is heavily used during ecc calculation.
The CHECK_POINT() works 100% the in first case.

I would try:
 __noinline__ _ModMult,
__noinline__  ModNeg256
Remove the whole lookup32 test in CheckPoint() (not used here)

I will add more info...


Code:
__device__ __noinline__ void CheckHashComp(prefix_t *prefix, uint64_t *px, uint64_t *py,
  int32_t incr, uint32_t tid, uint32_t *lookup32, uint32_t *out) {

  uint32_t   h[20];
  uint64_t   pe1x[4];
  uint64_t   pe2x[4];

  _GetHash160Comp(px, py, (uint8_t *)h);
  CHECK_POINT(h, incr, 0);    <-- 100% Ok up to here, means that (px,py) is good
  _ModMult(pe1x, px, _beta);
  _GetHash160Comp(pe1x, py, (uint8_t *)h); <-- 50% Wrong from here
  CHECK_POINT(h, incr, 1);
  _ModMult(pe2x, px, _beta2);
  _GetHash160Comp(pe2x, py, (uint8_t *)h);
  CHECK_POINT(h, incr, 2);

  ModNeg256(py);

  _GetHash160Comp(px, py, (uint8_t *)h);
  CHECK_POINT(h, -incr, 0);
  _GetHash160Comp(pe1x, py, (uint8_t *)h);
  CHECK_POINT(h, -incr, 1);
  _GetHash160Comp(pe2x, py, (uint8_t *)h);
  CHECK_POINT(h, -incr, 2);

}
sr. member
Activity: 462
Merit: 696
Ok Thanks i will investigate.
That's quite strange the point seems OK but all sym and endo are sometimes right sometimes wrong.
Funny bug Smiley
legendary
Activity: 1914
Merit: 2071
The result are constant ?
I mean, for instance,  GPU: point   correct [252/252] is always at 100% ?


I just tried another couple of time, yes, the results seem to be constant:

Code:
CPU found 1591 items
GPU: point   correct [269/269]
GPU: endo #1 correct [176/268]
GPU: endo #2 correct [159/271]
GPU: sym/point   correct [124/240]
GPU: sym/endo #1 correct [186/280]
GPU: sym/endo #2 correct [150/263]


CPU found 1529 items
GPU: point   correct [266/266]
GPU: endo #1 correct [131/204]
GPU: endo #2 correct [167/277]
GPU: sym/point   correct [117/251]
GPU: sym/endo #1 correct [159/249]
GPU: sym/endo #2 correct [165/282]

With -g option:
Code:
./VanitySearch -g 32 -check

.......
Expected item not found fefebfce 53aa8cce 65882d23 4011c288 eb720401 (thread=4072, incr=714, endo=2)
Expected item not found fefee494 9ce9c032 3ba7fa2d f43b9cfe deeb468e (thread=4075, incr=-469, endo=0)
Expected item not found fefe11e2 3c549d6b 110a42e1 d3f22532 4439072e (thread=4092, incr=-888, endo=0)
CPU found 751 items
GPU: point   correct [139/139]
GPU: endo #1 correct [80/130]
GPU: endo #2 correct [58/117]
GPU: sym/point   correct [52/118]
GPU: sym/endo #1 correct [89/131]
GPU: sym/endo #2 correct [68/116]
sr. member
Activity: 462
Merit: 696
Try also with -g option to reduce the number of GPU thread.
The -g option must be placed before the -check option in the command line.
sr. member
Activity: 462
Merit: 696
The result are constant ?
I mean, for instance,  GPU: point   correct [252/252] is always at 100% ?
legendary
Activity: 1914
Merit: 2071
Code:
GetBase10() Results OK
Add() Results OK : 333.333 MegaAdd/sec
Mult() Results OK : 29.851 MegaMult/sec
Div() Results OK : 5.587 MegaDiv/sec
ModInv()/ModExp() Results OK
ModInv() Results OK : 343.127 KiloInv/sec
IntGroup.ModInv() Results OK : 9.257 MegaInv/sec
ModMulK1() Results OK : 13.191 MegaMult/sec
ModMulK1order() Results OK : 6.407 MegaMult/sec
ModSqrt() Results OK !
Check Generator :OK
Check Double :OK
Check Add :OK
Check GenKey :OK
Adress : 15t3Nt1zyMETkHbjJTTshxLnqPzQvAtdCe OK!
Adress : 1BoatSLRHtKNngkdXEeobR76b53LETtpyT OK!
Adress : 1JeanLucgidKHxfY5gkqGmoVjo1yaU4EDt OK(comp)!
Adress : 1Test6BNjSJC5qwYXsjwKVLvz7DpfLehy OK!
Adress : 1BitcoinP7vnLpsUHWbzDALyJKnNo16Qms OK(comp)!
Check Calc PubKey (full) 1ViViGLEawN27xRzGrEhhYPQrZiTKvKLo :OK
Check Calc PubKey (even) 1Gp7rQ4GdooysEAEJAS2o4Ktjvf1tZCihp:OK
Check Calc PubKey (odd) 18aPiLmTow7Xgu96msrDYvSSWweCvB9oBA:OK
GPU: GPU #0 Quadro M2200 (8x128 cores) Grid(64x128)
Endianness: Little
Seed: 299352
112.356 MegaKey/sec
ComputeKeys() found 1528 items , CPU check...
Expected item not found 3412deec 9a23115c b7ef7e2d 07bc7f5c f92fce0f (thread=16, incr=-217, endo=2)
Expected item not found fefe5444 a84af9f6 f5a5dbfd 515ba932 b7c07f81 (thread=40, incr=13, endo=2)
Expected item not found 341204cb 5fa9e318 cc7c4861 04213e67 66f47a86 (thread=77, incr=-345, endo=0)
Expected item not found fefe2e4b 5533e85b c0241720 0859171a 1f3552e6 (thread=86, incr=-403, endo=0)
Expected item not found fefeadc2 f18e211c ac5c2b33 49f6d748 aeb004f6 (thread=97, incr=-501, endo=1)
Expected item not found fefe3026 65f3c906 28d658f3 51b0190f a94e1893 (thread=102, incr=-881, endo=0)
Expected item not found fefec3b8 d8f6eb6c 34394258 35dc7e79 20d3297f (thread=118, incr=-411, endo=2)
Expected item not found fefe0dab fe71ad36 eaa89f64 e9926e63 f2b3cfd4 (thread=127, incr=-60, endo=2)
Expected item not found fefe5703 c100c42f 8f0bfefb d9bdc6b2 3e1ce3f4 (thread=135, incr=-313, endo=2)
Expected item not found fefeeecc 7033f2c7 fb4480c9 46fdaf85 b2283fc9 (thread=138, incr=-172, endo=0)
Expected item not found 3412f49d 2bf0f89c 5696d5d9 126ac71c 1f8a47ca (thread=155, incr=913, endo=2)
Expected item not found 34128134 fd3325b4 e5f6af2d 4dcae9b2 c4472c03 (thread=176, incr=-106, endo=2)
Expected item not found 341269f7 827859bb b1c6212d 8302bb3a 17b696da (thread=176, incr=220, endo=2)
Expected item not found fefe3e56 003a3dfa cbfe32c2 ac1baa81 9d57abdb (thread=204, incr=609, endo=2)
Expected item not found 34121bbe c0c2ef54 cef3857f d5a049d6 0808297e (thread=226, incr=-317, endo=0)
Expected item not found 3412b57a 86da35db e0bb1c42 1722efe5 23afe33d (thread=231, incr=-639, endo=0)
Expected item not found fefe8c24 85adf33e 4be3a658 b480c33b 936018f3 (thread=236, incr=908, endo=1)
Expected item not found 341269d9 4198d515 9f1ad26b 20d129f9 a7c687e2 (thread=248, incr=-976, endo=1)
Expected item not found fefe500e 14413878 27d172db 080a4892 ee618a1b (thread=249, incr=836, endo=1)
Expected item not found fefe9883 43c76c51 3b369169 a2f7f52a d779c1c7 (thread=257, incr=-223, endo=2)
Expected item not found fefe415f 16d7ae1c 1219674b 0047c92e 7142746c (thread=278, incr=636, endo=2)
Expected item not found 3412f447 9e8b8b7b 91030af2 04bbb86b 53c77ad9 (thread=285, incr=1007, endo=1)
Expected item not found 3412a9a1 a3204a3f be44ff19 8c93fa6e deafa1a8 (thread=286, incr=199, endo=1)
Expected item not found 341294ad 6de87804 33296242 68e1cf2f 27696837 (thread=306, incr=949, endo=2)
Expected item not found 34126121 7b8d7c0c c298b0b8 aecb1445 3dcecc78 (thread=324, incr=-385, endo=2)
Expected item not found 3412896f 0065acb9 654df74f 12c6decf 1378cf48 (thread=362, incr=450, endo=1)
Expected item not found 34124b3a 5c99f102 6c3ee6f0 93a39332 917840ba (thread=371, incr=297, endo=2)
Expected item not found 34125a8c 3d5c39e4 80742cd1 3e75b430 d2b1bd47 (thread=397, incr=-263, endo=0)
Expected item not found 34129cbe 4514d738 8dcb9915 40783b9e 866f6b9f (thread=412, incr=504, endo=2)
Expected item not found 3412e8f8 82c7550a 87427578 b2f1e6da 30eb7fcf (thread=420, incr=565, endo=2)
Expected item not found fefebc45 bf4f6ca8 0ac8e7b4 9973a1c1 9f553e66 (thread=434, incr=-101, endo=0)
Expected item not found 341228e7 a2956a16 31860b85 94b390c7 46663d07 (thread=440, incr=-549, endo=1)
Expected item not found fefe6196 d4fa7354 ef93ed78 762d7789 d6b4a64f (thread=470, incr=-924, endo=0)
Expected item not found fefea78c 81473da1 8a29e45d 68915304 0dc4efc4 (thread=494, incr=-266, endo=0)
Expected item not found 34122a05 e1fa2108 66d38730 4f066766 a0a45cb3 (thread=551, incr=-589, endo=0)
Expected item not found fefe0fd7 082627e3 42f6c497 4749c42b 345c2124 (thread=553, incr=427, endo=1)
Expected item not found fefe6779 3f1fd7ca 63641141 b3302ccc 37d768a2 (thread=555, incr=-907, endo=1)
Expected item not found fefede68 e3877624 a6cfa0ba d0e3763a 6c12884b (thread=598, incr=-420, endo=1)
Expected item not found fefea90a 833e121f 09221d60 8316e9ef 0cc5b8b1 (thread=610, incr=384, endo=1)
Expected item not found fefef32d 73e77ca4 a46bcaea 1c6e8225 697a7765 (thread=628, incr=-521, endo=2)
Expected item not found 3412aaa2 14c7c862 bcdb1dee 3964c907 c09302f1 (thread=631, incr=-1023, endo=2)
Expected item not found 34128e5a f887bfd3 c07d9d67 18a69f50 b23e3f70 (thread=641, incr=-93, endo=0)
Expected item not found fefea06e 6a9eaa60 b7de06c2 e5f2f0d7 150a4095 (thread=648, incr=989, endo=2)
Expected item not found fefe8035 42d421c1 d3dd2f86 e20d5c48 7f4bdc0e (thread=652, incr=-507, endo=2)
Expected item not found fefeaea8 6ae176c9 26e0fd3c 85285a8c 5ba3d5e3 (thread=652, incr=-865, endo=1)
Expected item not found fefe7e70 95da6392 c43feab7 b2d78c25 46174569 (thread=666, incr=129, endo=1)
Expected item not found 34128522 d99d1f04 02afa0e9 168b989b 1cc2b623 (thread=666, incr=-207, endo=1)
Expected item not found fefecc64 466ec9d5 5a0b3f46 b724702a 55b95488 (thread=667, incr=792, endo=1)
Expected item not found fefead39 9db16191 e012b1b4 fcfcc2a2 19968602 (thread=672, incr=-361, endo=0)
Expected item not found 341253aa 41e309a7 5b436285 6c1893c2 77ec4aea (thread=674, incr=351, endo=2)
Expected item not found fefec4ac d53262cb 6ed62bea 898d2077 7323efe0 (thread=678, incr=275, endo=1)
Expected item not found 341287ae 94cbf9a6 eb33025a 7a80a40f 7d594c72 (thread=704, incr=-702, endo=2)
Expected item not found fefe4b7a 86c35bef eb077833 83e32a15 aa5d6a63 (thread=744, incr=-366, endo=2)
Expected item not found 3412d89f 07b2af51 2afac834 bf7ea99a c0530993 (thread=748, incr=-751, endo=1)
Expected item not found fefe4f20 696ad3d3 429841b1 1c0285dd 3fb67e2a (thread=762, incr=-85, endo=2)
Expected item not found fefea072 eff8305c 98dcd8ba 9dde2542 710811fd (thread=774, incr=-350, endo=0)
Expected item not found 3412cba8 f22c375e da47d2e7 0a675c2e 00d35d40 (thread=776, incr=-339, endo=1)
Expected item not found fefe1972 b909c716 c124d005 2478bfa4 5eba7853 (thread=778, incr=-657, endo=2)
Expected item not found 34127e34 e3add464 6df939ad ea0ab235 68420dd2 (thread=799, incr=744, endo=1)
Expected item not found 3412890e c4d1fed1 136f07f7 61e6ed34 e3c12ee2 (thread=827, incr=-138, endo=2)
Expected item not found fefe67d3 902fae14 458168bf 9ffb94bc 41a044dd (thread=850, incr=780, endo=1)
Expected item not found fefe0e2a dde9398f f1a93304 feb32d07 6997d428 (thread=856, incr=236, endo=1)
Expected item not found 3412a13c ae45576d 1b141433 ae35c5a5 e6d823d5 (thread=863, incr=55, endo=2)
Expected item not found fefeb520 67a2903c 4250cc7f 09da87de 18937c4c (thread=877, incr=-653, endo=1)
Expected item not found 34123ecd eab15ab5 2fdd1873 22be9d05 557e97e8 (thread=907, incr=-71, endo=2)
Expected item not found fefe0b8b 7660ad96 12c1b376 6e282a51 9c5ac90f (thread=917, incr=-139, endo=1)
Expected item not found 341274cd fa80ed11 4cc37201 c612b87e f81ab716 (thread=1056, incr=68, endo=1)
Expected item not found fefe0b91 ca79471a c3ad459b 727a850d 78f9d687 (thread=1071, incr=-656, endo=0)
Expected item not found fefe151c 102711fd 7da5c24e 9484f451 8cb98eb3 (thread=1103, incr=235, endo=2)
Expected item not found 3412b91d d7c9d92b c1163e95 035038d5 4a5abe57 (thread=1117, incr=241, endo=1)
Expected item not found 34126432 69bf5438 d593e2b4 5b2f806e e3b15d20 (thread=1120, incr=212, endo=1)
Expected item not found fefeae7e a3606fb7 7f3b1485 d146ffe9 480650bf (thread=1136, incr=-734, endo=0)
Expected item not found 3412bb50 e3cef4d3 367768cc 87f2459f 3c50415d (thread=1148, incr=-374, endo=0)
Expected item not found fefe5b2a 883e0a5f a6828713 a76341f4 cfad762b (thread=1167, incr=329, endo=2)
Expected item not found fefebf40 8aacc2b5 1e932204 d41ba63b 0fc70af7 (thread=1184, incr=628, endo=2)
Expected item not found fefe436e 0355d860 1c5f5eec a1c03afb 4a6cb577 (thread=1200, incr=90, endo=1)
Expected item not found 3412c5b9 58cdcf43 f522b953 fa1dadbc 020f73af (thread=1232, incr=-837, endo=1)
Expected item not found fefe6eee c76ae474 572c6d57 ec2988f8 72b2e465 (thread=1272, incr=953, endo=1)
Expected item not found 341213f8 29b3130c 419aded4 a1032cd1 6754fd21 (thread=1277, incr=90, endo=2)
Expected item not found fefec0c9 fe470ef9 9b79e2f1 324c4cff bed67229 (thread=1305, incr=-108, endo=0)
Expected item not found fefe96c5 e3ca2fc5 7bcbc611 929260fb 2ad7148c (thread=1305, incr=488, endo=2)
Expected item not found 3412752e 10861319 6dd5977a 6156eefa 46717211 (thread=1309, incr=-216, endo=0)
Expected item not found 3412e484 ce3cca36 8291030c 0f94f310 eb42c414 (thread=1333, incr=-335, endo=0)
Expected item not found 34127433 80e47dc9 7f4595d6 4192a90d ddfbbbe0 (thread=1341, incr=-235, endo=1)
Expected item not found fefe4b7b d1b06965 6b5acd0e a2c6ed84 fafe2cc0 (thread=1372, incr=-551, endo=2)
Expected item not found 34126986 5654d044 49354ed8 43732c8b 621f0b66 (thread=1390, incr=-107, endo=2)
Expected item not found 3412ad5a b3411496 69aba8b1 80968780 26905379 (thread=1397, incr=-312, endo=2)
Expected item not found fefe783c 937e508e 4a168dd9 ca533723 247cd202 (thread=1405, incr=-660, endo=0)
Expected item not found fefefa7a 33ef4499 0b80827e e6330758 22090f74 (thread=1412, incr=-833, endo=0)
Expected item not found 341272e5 c17b6955 cd27feec 19c3688c bf107224 (thread=1420, incr=786, endo=1)
Expected item not found 3412794c 5a30eab9 286ac411 063f9a0b f7757866 (thread=1426, incr=917, endo=1)
Expected item not found fefe9305 db6b69b7 684a75c4 2525322f f7684e31 (thread=1472, incr=95, endo=2)
Expected item not found 34127861 15bbb15c efcdbd09 47dd88d8 1d133c67 (thread=1475, incr=-883, endo=0)
Expected item not found fefebf4d b6eae0f5 d1d8c7e7 eaadd88a fbaae200 (thread=1482, incr=-67, endo=2)
Expected item not found 341277b0 cb193bf5 5f155fb2 4f9e42df 0b9db1df (thread=1486, incr=991, endo=1)
Expected item not found 3412df65 36f4d22f 6a2893a0 583683f7 137d4b1d (thread=1500, incr=30, endo=2)
Expected item not found fefec64e 61293a8f 7a7ecb8d 01fc35a2 778a3548 (thread=1511, incr=-810, endo=1)
Expected item not found fefe8aa7 6540dc88 95c909be 6e34ae4f 48084d2d (thread=1525, incr=-593, endo=0)
Expected item not found fefe868d 5d7530d3 1b852ff3 cd538988 63ccb94a (thread=1527, incr=-100, endo=1)
Expected item not found 341271d8 df952023 ba125ac1 1b832baf a2d9a2ce (thread=1528, incr=615, endo=1)
Expected item not found 3412cefd 7628ed7f 91e1ceea 867a0789 c7e454c9 (thread=1582, incr=-31, endo=0)
Expected item not found 3412c083 880efe50 31e536ac 52161ced 5e6d27b2 (thread=1598, incr=532, endo=1)
Expected item not found 3412d6bc 5bf0fad4 ff1dc7f0 49bb4690 af4b2fab (thread=1603, incr=193, endo=1)
Expected item not found fefe7b5d b795d499 466e962c fc07d3bf 6164dacf (thread=1632, incr=63, endo=2)
Expected item not found 34124c8f deedbe27 22305551 16f028c8 9b06233f (thread=1635, incr=-637, endo=2)
Expected item not found 3412fa06 f8a1b934 ef6dab43 0bc908c6 b55363ec (thread=1647, incr=408, endo=2)
Expected item not found fefe16d7 485b8146 952330a1 8f8fc2d0 6aff429c (thread=1713, incr=1006, endo=2)
Expected item not found fefe5b61 4e84a277 398ba9f0 7425f221 a8386430 (thread=1722, incr=-803, endo=0)
Expected item not found 3412937f a30cd548 9df37391 bff6d030 686c7216 (thread=1725, incr=-113, endo=2)
Expected item not found fefe3c6f 89f9e3f9 8f4a5e32 18aacfa9 d449595d (thread=1741, incr=562, endo=2)
Expected item not found fefe08ed fca12ee3 6a217ab8 fbe09c9d f1946b73 (thread=1759, incr=859, endo=1)
Expected item not found 34122144 d6c0d017 538613cc 3b1e1fd5 90629282 (thread=1769, incr=-590, endo=0)
Expected item not found 3412aba6 567714b2 a5aeb4f3 03c3c7a2 7d99e4ab (thread=1777, incr=-674, endo=0)
Expected item not found 341220da 1bf91503 d5703b65 72dfa17f ed8470b0 (thread=1836, incr=-167, endo=0)
Expected item not found 34120a61 7a2d1fa3 e79a8d36 7f37808d 40974a05 (thread=1853, incr=-798, endo=2)
Expected item not found 34128ac2 070c84e0 4350f4b1 bf2403cd 47eddcc9 (thread=1870, incr=-778, endo=2)
Expected item not found 34123201 d9982dfa ac7689bd ca71a6d6 d7db4ec2 (thread=1939, incr=356, endo=2)
Expected item not found fefefdd4 35ac984b 278ff0d3 436c35f4 fdde2e18 (thread=1944, incr=-115, endo=2)
Expected item not found 341214fc 04fba020 a85ebe32 9ba4dfe7 b0249712 (thread=1944, incr=-178, endo=0)
Expected item not found fefe3bb6 b248448a 2cf3127b befca952 b362cf1a (thread=1966, incr=436, endo=2)
Expected item not found fefe80a9 f324c476 03ef4870 b79fc9bf eaff5df9 (thread=1983, incr=683, endo=1)
Expected item not found 3412c3bc 3347cf04 9b29d948 4eb8252c cc5706ba (thread=1989, incr=-486, endo=0)
Expected item not found fefe1409 666b0b39 01c481fb 5bb00639 3ef807b5 (thread=1996, incr=-589, endo=2)
Expected item not found 3412c625 34b28126 a8243b25 03ef5edc b9bb78e3 (thread=2019, incr=-342, endo=2)
Expected item not found fefef2ec 867e61fe c77a9ca6 019d64a5 8e6814d7 (thread=2022, incr=-295, endo=0)
Expected item not found 341268b8 ed4baa55 849e5df0 c3db8563 c57eb360 (thread=2035, incr=370, endo=1)
Expected item not found fefead1b b44bbf4a de9ab38e ca3eb664 54adee36 (thread=2047, incr=546, endo=2)
Expected item not found fefe4a3f 50fb8eb5 e5affa6c d8ba93be ee32396b (thread=2051, incr=-273, endo=1)
Expected item not found fefe2c5e 7005d268 5af36286 ad5f9dac 15041173 (thread=2066, incr=-212, endo=0)
Expected item not found 3412c3ac fec551f6 3b33db03 c1733301 5960e5d0 (thread=2067, incr=-985, endo=0)
Expected item not found 3412408c d57abdb0 940bda10 167c2cd3 b37ec513 (thread=2105, incr=-255, endo=1)
Expected item not found fefed376 1fffbe5b a0708fc3 62087572 ed052023 (thread=2143, incr=-538, endo=1)
Expected item not found fefef842 a7939e76 41819fc7 59c9729e 4260c1c0 (thread=2168, incr=-352, endo=2)
Expected item not found fefe4da1 e6535e09 b3d73c1c d9fe389b c05d8cb5 (thread=2175, incr=-525, endo=1)
Expected item not found fefe7e06 82d04ceb b725f6dc f9f5c318 8c4ae970 (thread=2187, incr=-108, endo=2)
Expected item not found fefe3ba6 7c48093e e4d6a6ca a660a365 fcf81030 (thread=2206, incr=-395, endo=1)
Expected item not found fefee97e 0ea2776e fd592b94 6b1f8311 0064c305 (thread=2273, incr=960, endo=2)
Expected item not found 34128432 1c93b523 36da836f b10f77be 0505fcdc (thread=2301, incr=-548, endo=1)
Expected item not found 34129f7d 7cecea40 abfb3f91 68a849b1 7df976a8 (thread=2308, incr=-965, endo=0)
Expected item not found 341231e9 33b19cd5 cfc13734 06981206 1ae9bdb5 (thread=2310, incr=657, endo=2)
Expected item not found 34125ae3 af9222bb b4d19ce6 765eeacb d7d7ce71 (thread=2314, incr=-698, endo=0)
Expected item not found 34123188 9dc5a1f3 17eedf81 9dda804e f527575a (thread=2326, incr=-530, endo=1)
Expected item not found fefe5ac0 349a6d7a 6f0fbe7d a269c358 7743763c (thread=2335, incr=815, endo=2)
Expected item not found 34129755 b496b5ee 2cb552d7 ab1451fb a55f5f56 (thread=2409, incr=-993, endo=0)
Expected item not found 34128aa8 59838b2a a11bee20 1ae6f58f 71f20585 (thread=2411, incr=865, endo=1)
Expected item not found 34121c3f 05472c92 fd2a7ac6 834938cc 207860b0 (thread=2412, incr=-526, endo=1)
Expected item not found 34126363 0ea65f8f 06f4f2f8 aa3c3aa0 2961d147 (thread=2431, incr=510, endo=1)
Expected item not found 341298db d28639c2 f7954718 8f034328 e7d84ada (thread=2465, incr=828, endo=1)
Expected item not found fefe1b10 8d1d3531 84608bc7 7fe30668 772a4699 (thread=2548, incr=903, endo=2)
Expected item not found 34128c63 996e6180 2ed171b1 29fa4c84 7f832981 (thread=2598, incr=-930, endo=2)
Expected item not found fefe5f93 ef84127d 4af9d9e3 a48c26b7 03cc271e (thread=2615, incr=-988, endo=0)
Expected item not found fefecb38 ad0041c6 54f355d8 0fa00ce5 55a7766a (thread=2628, incr=-860, endo=1)
Expected item not found fefee16b 868507c9 a2c92c71 dfcb5b70 d09d9522 (thread=2630, incr=540, endo=2)
Expected item not found 3412209e 7f2a64ca f45d10cd 4074e04d 72a401f5 (thread=2636, incr=886, endo=2)
Expected item not found 34126de9 912a34e8 3f84aef8 2a9dc476 908c3a5c (thread=2645, incr=717, endo=1)
Expected item not found fefe77c5 41bedd31 18a10a76 f09f0eda d092fb9f (thread=2646, incr=352, endo=1)
Expected item not found 34124c85 2e6b76aa b9993298 611a0b53 cd564893 (thread=2660, incr=472, endo=1)
Expected item not found 34129deb 61b6634e e1780829 b4aa609b 90747bfd (thread=2663, incr=721, endo=1)
Expected item not found 341280d9 0f9fde8f 79ef94ed ff2a29f9 16e4ac67 (thread=2706, incr=274, endo=1)
Expected item not found fefe6568 f8cf5c74 dce19d86 ff09463d 52f209f0 (thread=2710, incr=1008, endo=1)
Expected item not found fefeb99c 2f744790 4c358c95 4cc9cd33 85aa758d (thread=2729, incr=100, endo=2)
Expected item not found fefe4d08 9aaba6a8 4e30baad e517b9d2 ccbabaa5 (thread=2742, incr=-873, endo=0)
Expected item not found 3412e2b7 015d5423 fae7f6a7 f825da8e d9c3dc01 (thread=2743, incr=-430, endo=1)
Expected item not found fefe1936 c8098762 e8dc1e48 3fe0be37 d0ffbf6d (thread=2761, incr=-875, endo=2)
Expected item not found fefe1aea e37a24c8 26a8b4f1 6f2b6f11 ef58d61b (thread=2762, incr=-136, endo=0)
Expected item not found 3412128c 4f13ddc8 13315d4f bfa503db 53ef454f (thread=2778, incr=-803, endo=0)
Expected item not found 3412e359 1a5924d8 2c7a1c97 c53dc448 b57de8ec (thread=2791, incr=-526, endo=0)
Expected item not found 341298f1 0c20b952 7e8c2ef4 50029b3c 44e8913a (thread=2802, incr=684, endo=2)
Expected item not found fefecb23 09e63e26 cce8006e be6e1845 800b6dd2 (thread=2832, incr=-723, endo=2)
Expected item not found 34121938 31f50366 cff8ceac 7c4db15e a473de81 (thread=2847, incr=342, endo=2)
Expected item not found fefed3b5 f3bc744b 47fec30d e48919a4 ca677ada (thread=2858, incr=99, endo=1)
Expected item not found fefe7e0c 73191dac 1d1cedcc 3067c666 1743f9af (thread=2861, incr=-710, endo=2)
Expected item not found fefe2392 2ae990b4 b8f4fa27 95ac2c3a 8da0a5b1 (thread=2871, incr=607, endo=1)
Expected item not found 3412183a 9e0de233 f8c70a92 418142d9 cb04d6b0 (thread=2878, incr=247, endo=2)
Expected item not found 3412ab91 5876f1f9 3f5d117f d7785aec 7f0883e6 (thread=2882, incr=-211, endo=0)
Expected item not found fefe270c efc2753c 0c6715b8 94bd4f0d aef961af (thread=2883, incr=-265, endo=0)
Expected item not found 3412e0b2 ce1fa1cd b14b315c f021a659 e7f122bd (thread=2896, incr=63, endo=1)
Expected item not found fefe7e95 23d85608 2f8d3251 71fa8a49 fabae1e6 (thread=2906, incr=-213, endo=2)
Expected item not found fefe8da6 297434f8 b36301a3 f37d4562 225eab6f (thread=2913, incr=132, endo=1)
Expected item not found 34124d05 4c1b954e 5af98ffd ff596d41 2433e4e7 (thread=2947, incr=18, endo=2)
Expected item not found 3412d3a7 35cc0b04 f8cbdab3 f69738cf 3e6003ef (thread=3005, incr=623, endo=2)
Expected item not found 3412e451 bccacd47 c28122d2 535854f5 e790fee5 (thread=3025, incr=-151, endo=0)
Expected item not found 3412ed6c bee9c28a 048f67d5 fbdaa859 026ec4aa (thread=3042, incr=544, endo=1)
Expected item not found fefe34d6 c055bdff 3ba7eb3d 0fb13a62 1681862a (thread=3049, incr=-998, endo=1)
Expected item not found fefe25ea a2f660b4 73d166a2 d757b790 9e8c1630 (thread=3056, incr=980, endo=2)
Expected item not found fefee130 ce6bad0c 63268d96 fea67661 27a9af1e (thread=3127, incr=105, endo=1)
Expected item not found 341239fc 4a30631d c7e1bc51 aa3f0111 a17793b2 (thread=3127, incr=-470, endo=2)
Expected item not found 3412b42d 1eb48c33 1160a1b9 c5b955e2 25fc90fe (thread=3135, incr=-961, endo=2)
Expected item not found fefe013a 9f498c4d 6b64e06a e9f7d5e5 144b2be2 (thread=3138, incr=-107, endo=1)
Expected item not found 34121349 5a344930 8b710956 bfdced2b 17a7e5c6 (thread=3163, incr=-414, endo=2)
Expected item not found 341256cd f67f79f1 83eea992 c46d9d18 6b0ef6a8 (thread=3164, incr=48, endo=1)
Expected item not found 3412e40a 9e066267 58a63b41 88991ab0 ed91f564 (thread=3170, incr=514, endo=2)
Expected item not found fefe8e63 07328488 96b356a2 468f6b6b f831933a (thread=3172, incr=-159, endo=1)
Expected item not found fefeb237 0ade1619 4944a1eb 71fcf43e fbda03c0 (thread=3214, incr=633, endo=1)
Expected item not found 3412cbdd 35290a3a 97883d12 69fbd998 54f7da78 (thread=3223, incr=-435, endo=0)
Expected item not found 341245b0 6c71d71b 3f423a7f cb28614c f13d8355 (thread=3232, incr=1014, endo=2)
Expected item not found 3412d5f4 c8da6d17 8b4d57f9 cef79141 75b0a8c4 (thread=3233, incr=-348, endo=0)
Expected item not found fefe90c5 d23f4558 7c03ebb6 c82181f4 a560cee3 (thread=3251, incr=-202, endo=2)
Expected item not found fefe94f9 b9b24dc9 87c7bb8b 1f2cc778 fee108e8 (thread=3281, incr=-40, endo=2)
Expected item not found fefe8525 6d628d41 2e250eb1 5114e055 7f1b5316 (thread=3285, incr=514, endo=2)
Expected item not found 3412d198 ec1c2362 da5a0900 8c7a0b5b fd336228 (thread=3305, incr=639, endo=2)
Expected item not found 34127a27 8c76773c 55610fb9 675c7393 abb8238f (thread=3309, incr=480, endo=2)
Expected item not found fefe7dba 927c804f 8cce82fc 68de51b4 eb77b56f (thread=3330, incr=905, endo=1)
Expected item not found fefe167f ff6adfc3 65475d46 ed150492 ddeb9801 (thread=3339, incr=909, endo=1)
Expected item not found 341249e0 2203c2ca 18e0700e 2fbfd323 b37971b8 (thread=3385, incr=-5, endo=0)
Expected item not found fefeee62 deb207b9 b67d4127 bc342d6e e0577e19 (thread=3395, incr=492, endo=1)
Expected item not found 3412bfc7 afe0121c 70f5f75c 06742cf3 2c51ad49 (thread=3397, incr=-91, endo=2)
Expected item not found 34120c20 733282be 8ffec07e 24867333 b745215d (thread=3408, incr=-738, endo=1)
Expected item not found 34120ce9 6e3a6fd3 95f5d836 616370df 441feb7a (thread=3421, incr=-73, endo=2)
Expected item not found 3412f8ba d32b94f4 ad1555ff 37448c90 da8169f8 (thread=3431, incr=434, endo=2)
Expected item not found fefe6f17 f972597a bd68a0e8 be34397b 206d1cc7 (thread=3442, incr=-77, endo=2)
Expected item not found 3412b84e 8ab2aac5 0fe34ba0 4ecd462f da6cfb8d (thread=3482, incr=-484, endo=1)
Expected item not found fefef522 d51371dc 4e71e660 9a4167b8 1f0670e1 (thread=3533, incr=505, endo=1)
Expected item not found fefed329 50c2ba02 9aaabd43 9bfd8116 c081012a (thread=3544, incr=-341, endo=0)
Expected item not found 3412e0cb 215e26b1 a99f3997 6fbbb467 5c2482d3 (thread=3563, incr=36, endo=1)
Expected item not found fefe80d8 edf0ba11 6afca467 31267c26 05dcaee3 (thread=3575, incr=-120, endo=1)
Expected item not found fefed524 19b411ee 50eac3f6 99f128de 07a1b1a3 (thread=3589, incr=-529, endo=0)
Expected item not found fefea078 eecc0ddd aad264e3 f79b7654 4bb04309 (thread=3610, incr=566, endo=2)
Expected item not found fefefa24 c0b0b428 6548ce28 150b003e b415eabd (thread=3628, incr=582, endo=2)
Expected item not found fefe07dd f045605f 4f73fe86 ca0d9b20 b68a2007 (thread=3671, incr=-996, endo=0)
Expected item not found 3412e718 6697c1e0 f0745a2e 41b06d1c 4c152504 (thread=3684, incr=242, endo=2)
Expected item not found 34124f55 db93337e 807631ee aebbdaec 45f2e488 (thread=3695, incr=492, endo=1)
Expected item not found fefead31 398cd712 9fbd080a fa1c4a28 a0b1a087 (thread=3703, incr=858, endo=1)
Expected item not found fefe2333 14eb4596 c3c143ac e120229f 1a7e29a5 (thread=3742, incr=-879, endo=1)
Expected item not found 3412aeb4 46feb2fc 2a25dc7e 44430a71 edf16c13 (thread=3773, incr=-58, endo=2)
Expected item not found 3412a5ed 03763dfa 75b4516d cb620cf9 e5e30c2c (thread=3796, incr=-953, endo=0)
Expected item not found 3412b8b6 97fa2e51 f7fccec9 18bf53b9 3b997ede (thread=3797, incr=-411, endo=2)
Expected item not found fefebedb 606e133f cf3ada26 84ae1f85 ab1a8734 (thread=3821, incr=147, endo=2)
Expected item not found 34125b96 c3fd0049 37f4588f a7fb6553 43cd2df9 (thread=3828, incr=433, endo=1)
Expected item not found fefee343 af6dbea1 46951b62 9d29e11d 838cf0db (thread=3830, incr=286, endo=2)
Expected item not found 341221b9 8f6c1102 c1118660 4dfd028d a9d910f8 (thread=3840, incr=-775, endo=2)
Expected item not found fefe904f 3d3e0154 a1867923 9400aa82 e1bf3627 (thread=3844, incr=-141, endo=0)
Expected item not found 34120079 7c35a68e 811c22c9 661b4430 170abd24 (thread=3847, incr=-36, endo=0)
Expected item not found 3412df5b 18a0f0ed f185df7c bdca89a0 8528b105 (thread=3851, incr=-614, endo=2)
Expected item not found 34120532 59d35181 07bdda56 d44c6f07 023babc7 (thread=3857, incr=1023, endo=1)
Expected item not found fefefa2b d6a1d730 adbdda70 a3e52cdc ba02894d (thread=3858, incr=-51, endo=2)
Expected item not found 3412fc24 e5e642bb 44dae82f 4b7b11be 2b254190 (thread=3867, incr=-311, endo=0)
Expected item not found 3412ba8d 924000c0 13d22619 25e65a2f 00eec8b9 (thread=3910, incr=-389, endo=0)
Expected item not found 34124d4c 1345ea02 cc4534f2 7b30d1c8 baa1edc8 (thread=3990, incr=14, endo=1)
Expected item not found 3412268a e161b41b 5f377c79 e0bd851e e67bc60c (thread=3990, incr=1016, endo=1)
Expected item not found fefe8d67 29d2d63c 98219986 b6256e62 c82512f4 (thread=4012, incr=-936, endo=1)
Expected item not found 3412ff83 e5b51bbb 17993a48 9ced44aa 54087726 (thread=4015, incr=324, endo=1)
Expected item not found 34125bd9 9a1ee973 8f3fa022 6824a25f 0d6612be (thread=4025, incr=97, endo=2)
Expected item not found 3412ce09 4a7e1c32 6117530f dfda06ae 470f4eb3 (thread=4032, incr=269, endo=2)
Expected item not found 341214ab d2e3f18a c8365b45 39137b72 fab42f6e (thread=4036, incr=-52, endo=1)
Expected item not found 34125e48 b186656c 98af5b86 097408f0 811e2145 (thread=4037, incr=-219, endo=2)
Expected item not found 34127313 acbb005c 3dd25535 963ce5db 0e019de4 (thread=4037, incr=-259, endo=2)
Expected item not found fefe3531 12b175be 33947869 8f604a49 dd5dfeaf (thread=4037, incr=527, endo=2)
Expected item not found fefe3192 9d3d3067 6c505a18 b43c6ee7 a73705de (thread=4041, incr=-40, endo=2)
Expected item not found 34128e1f e5d58541 0997d202 24ecc2d8 59fe9af0 (thread=4041, incr=555, endo=1)
Expected item not found fefea8a0 1b114baa db701645 0d60fdc3 07e38771 (thread=4070, incr=842, endo=1)
Expected item not found fefec5a2 2da24de8 1ef2a76e 2361d2e0 b83fa609 (thread=4079, incr=994, endo=2)
Expected item not found 3412f780 f975df2e 6f5778f0 b749ed77 4103f4ab (thread=4121, incr=-552, endo=2)
Expected item not found 34122a7b c03e9306 c7aeebdf 6f5c7655 f47ca158 (thread=4148, incr=-894, endo=2)
Expected item not found 3412d983 a0692737 6779b237 1b946a4b f58d42b1 (thread=4174, incr=-670, endo=0)
Expected item not found fefe0dfd 70116981 1e970dd5 2bc31856 0a984427 (thread=4184, incr=-736, endo=2)
Expected item not found 34127049 cba43c81 822e8da9 49f0dc40 1f620d0b (thread=4189, incr=879, endo=1)
Expected item not found 341278e0 f66fe38d 7cb2ee4d d95e84b6 1763de6b (thread=4219, incr=-807, endo=2)
Expected item not found fefefa8c 2451a439 10e1e67f 55869302 f2a193e8 (thread=4224, incr=72, endo=2)
Expected item not found fefe2028 f9bc52a6 99581ca5 094e4872 b11f23e9 (thread=4240, incr=798, endo=2)
Expected item not found 34121227 1420d99a 02c8476c e458b9bf 35ce3468 (thread=4251, incr=466, endo=2)
Expected item not found 3412a2bf 71a40faa 6229aec6 3015d9ab 4d71bdfe (thread=4276, incr=-694, endo=2)
Expected item not found 3412324a 450ce130 83d442ef 2558a476 7daa83c8 (thread=4278, incr=-691, endo=0)
Expected item not found fefe589e 06815316 09fa107f 5bb91c76 2e35ce5d (thread=4287, incr=770, endo=1)
Expected item not found fefebf82 6659061f 000f83db 39335b9d 39733327 (thread=4305, incr=46, endo=2)
Expected item not found 3412a147 05f1ea0a ce4399f6 c16491e1 23b0ea02 (thread=4355, incr=-281, endo=0)
Expected item not found fefe27e5 81046dd4 3bd30a96 f2871ad2 81ee349a (thread=4358, incr=-947, endo=1)
Expected item not found 3412d72f 7e94af94 513cd074 7e21133b ef1ec818 (thread=4375, incr=-505, endo=2)
Expected item not found 34128a03 f30f650c 413e2e4a d89c6c55 6525a800 (thread=4389, incr=917, endo=2)
Expected item not found fefe113d 7a86d861 e903ced0 94f84bae 8c67780c (thread=4411, incr=622, endo=2)
Expected item not found 3412f827 b8eaeda7 7be2f3a3 1cc7d388 43575e23 (thread=4416, incr=193, endo=2)
Expected item not found fefe1905 2a6c129e 61b3e8e0 c3d6a311 5e0eac3a (thread=4442, incr=-888, endo=2)
Expected item not found fefe5e22 f58da777 06eda353 743a7b5f 42dcafa2 (thread=4443, incr=-110, endo=0)
Expected item not found 3412939e 34ebc996 c29beebe ed2214c7 09c784a9 (thread=4443, incr=-515, endo=2)
Expected item not found 3412b4fb e4b049ee f86edd35 343e8927 9aa9417b (thread=4446, incr=975, endo=2)
Expected item not found fefea4e9 7118a414 1c03c38e ac9d067d cb576afb (thread=4448, incr=-936, endo=0)
Expected item not found fefed803 0230ae2e 62b89230 20ceb7b3 ef9a6bda (thread=4462, incr=-702, endo=2)
Expected item not found fefeeefb d9800848 1f08c900 59eb8ef5 908bff9b (thread=4514, incr=665, endo=2)
Expected item not found 3412ee2d d4ba0348 0fba0b24 2dae93af b8c85eca (thread=4530, incr=687, endo=2)
Expected item not found fefe7b0c 153be02f 051d2281 1bdfdafc 9e106dd0 (thread=4536, incr=23, endo=1)
Expected item not found 3412dfb7 da358a84 3e50b24e cf489e81 9353d00b (thread=4572, incr=495, endo=2)
Expected item not found fefe639c 3b44a0b6 6b2056a3 13f94c52 6b2509db (thread=4578, incr=124, endo=2)
Expected item not found fefe2e9c 96d0403a b03ddb2e 51b85362 7f0e2703 (thread=4595, incr=894, endo=2)
Expected item not found 3412fd6b 26c1e634 ba5c2917 34e20d84 58359cd6 (thread=4607, incr=515, endo=2)
Expected item not found 3412ec7f 4c0d9964 c54b49bc e02d58b0 f1736d5e (thread=4608, incr=366, endo=1)
Expected item not found fefe141d 36df526b d8e7f409 4e2287ca 1c4efdda (thread=4635, incr=70, endo=2)
Expected item not found fefe71b5 0994217c bfad48e7 c30b1dad 39bda6bd (thread=4654, incr=-39, endo=1)
Expected item not found fefee8b2 34d4714e 95b07e5e 7d8f10d9 5109918b (thread=4657, incr=229, endo=1)
Expected item not found 34124a4a 4adb6879 f198f562 7a83f981 b23f0fec (thread=4662, incr=812, endo=1)
Expected item not found 3412764a 35784ced b1a316cf 13a6c06a 820dcd36 (thread=4682, incr=441, endo=1)
Expected item not found 3412b8c5 ce29a373 e4b7133b c6fd7477 3b6b6d14 (thread=4691, incr=805, endo=1)
Expected item not found 34124937 5e6236b8 c8be1f2e fd65fac1 20a749f3 (thread=4719, incr=-309, endo=1)
Expected item not found 3412f3e0 73727722 93a4a240 778a2ae4 b630ae52 (thread=4736, incr=829, endo=2)
Expected item not found fefe8de5 3a2c7f71 570f3f6b 8fa84f0b 8b25240b (thread=4744, incr=155, endo=2)
Expected item not found 3412488a 0e924361 59f19dfd 7b0116d4 2235bc39 (thread=4759, incr=-254, endo=2)
Expected item not found fefe5147 825023e5 8dca0359 737d0911 62ac6561 (thread=4761, incr=861, endo=1)
Expected item not found fefe0b5e 4d94ed34 46a0c139 9137a5e6 d30edd96 (thread=4816, incr=72, endo=2)
Expected item not found fefe7805 8af54caf 0280f5a4 5ba88ca8 bacde976 (thread=4836, incr=128, endo=1)
Expected item not found 341252e9 733f3e5f 044eb860 58048098 5787e297 (thread=4848, incr=-816, endo=0)
Expected item not found fefec6fa 6314d85a 37bbee8a 3e4be636 c456cdf9 (thread=4873, incr=-897, endo=0)
Expected item not found 341247f8 277713e9 688325b4 ebdbb60d 08fb2635 (thread=4878, incr=-309, endo=0)
Expected item not found 341214a6 00b9c0a3 e1223713 cfb85a27 fa710aa7 (thread=4892, incr=-676, endo=2)
Expected item not found fefe23ed 062ef3a8 a847ee44 f1e2d0e1 98cf6aaa (thread=4901, incr=-823, endo=1)
Expected item not found fefe861a 02e39c6b aaa2ad1c b4f951b9 9bf23c62 (thread=4916, incr=-792, endo=1)
Expected item not found fefe2565 c5213b0f ce0e5de2 b062a322 9a349e94 (thread=4941, incr=-553, endo=0)
Expected item not found fefe7309 8e881737 b2ec775d fd42b532 ec539193 (thread=4951, incr=-45, endo=0)
Expected item not found fefe2379 3142d40e 0c927b06 fc397b14 f96570b7 (thread=4964, incr=-306, endo=0)
Expected item not found 3412523d f9b0f695 09cc7365 7842fa45 053ef60b (thread=4970, incr=503, endo=1)
Expected item not found fefe8e6a 44f1157a 5ac5c080 4c66a988 908c19ee (thread=4988, incr=-408, endo=0)
Expected item not found 3412f2d5 cfe5c95f 3860292a 9e25af21 95055164 (thread=4992, incr=-555, endo=0)
Expected item not found 341298e6 a6db16d2 f28e66b6 4d6492b1 7389cc63 (thread=4998, incr=134, endo=1)
Expected item not found fefe496e 3fa95fd1 beea500e cc3bcf97 5fd0e057 (thread=5005, incr=-243, endo=1)
Expected item not found 3412c5ff 6dcc0099 5f16bff5 e72226a0 20e219ff (thread=5016, incr=-430, endo=1)
Expected item not found fefe2a02 860d1547 ad94a90a e6d1fc55 ebba6f1d (thread=5017, incr=1016, endo=1)
Expected item not found fefef77f aebbd4a0 87d103d4 71377c88 e2677f13 (thread=5038, incr=678, endo=2)
Expected item not found 3412b170 e26ae012 e49766e6 a5d77026 c88cf788 (thread=5055, incr=861, endo=2)
Expected item not found fefe1ec7 67bec6cf ea1f8b96 83c14c9d dbfc35f2 (thread=5064, incr=241, endo=1)
Expected item not found fefee68c 9cd9f486 95605d95 a738426f 48011ac1 (thread=5112, incr=355, endo=1)
Expected item not found fefea8ae 6aee6174 e99bfd23 ef2abc2e f05c8a88 (thread=5119, incr=965, endo=1)
Expected item not found fefeb4ad 141d6b68 9216e747 d52a4b98 d45f839e (thread=5127, incr=637, endo=1)
Expected item not found 34127214 fe53522c 14a50da0 5cfb45d0 fd7143f7 (thread=5129, incr=-496, endo=0)
Expected item not found fefea348 53bfd654 7e0e82ac f3bbd63d 2809f042 (thread=5132, incr=605, endo=1)
Expected item not found 34126338 8d591b5f 24797c2f b90d511b 13702d64 (thread=5136, incr=-1013, endo=0)
Expected item not found 341282b1 583dcd54 069cf8de eeeb44a7 b4504f33 (thread=5160, incr=258, endo=1)
Expected item not found fefe8ad1 18aa99de 05d249c2 fee5b4da 03c79d1d (thread=5164, incr=136, endo=2)
Expected item not found fefef68e 1ff5f8a1 5b868345 8878b90a 1adc0086 (thread=5177, incr=-18, endo=0)
Expected item not found 341201a2 7fe80ed8 420b15e8 c3676152 cd3576f3 (thread=5218, incr=-568, endo=2)
Expected item not found fefe191c 4b0bce34 0e6aca6f d6aefeec c6bdbbd2 (thread=5225, incr=716, endo=1)
Expected item not found 3412a0cc 00c43696 b7dfff66 f3aada1d 4fe1dbc7 (thread=5234, incr=-13, endo=1)
Expected item not found fefe91e7 bbc2f2bd 3bb1f3d7 0ad6a5b8 8b8c0cf3 (thread=5234, incr=989, endo=2)
Expected item not found 341267fc 509cbe29 73f189d8 51c54bc3 3179de20 (thread=5244, incr=-359, endo=0)
Expected item not found fefecb64 88c54bf0 53e6d267 fa8262bc fa2d6d15 (thread=5255, incr=268, endo=1)
Expected item not found 3412f444 eb5c6753 5c442dbb 1c5c21d3 e9e7b6f0 (thread=5257, incr=-595, endo=0)
Expected item not found 3412a25b dab5a99b cd6da8a3 2560491c 9859aa88 (thread=5289, incr=-772, endo=2)
Expected item not found fefe639b 97cb5f9b ec5b5ce0 426aa298 88aae680 (thread=5290, incr=688, endo=2)
Expected item not found fefe0f97 96c71a8e f261544d e34899c5 2b2b1390 (thread=5304, incr=-29, endo=0)
Expected item not found 3412f8b2 4a4c91c8 df7fa46c 2d1568e6 3d510258 (thread=5316, incr=719, endo=2)
Expected item not found 341285af 99abc619 2c944445 c7673f0a 4db95ac4 (thread=5338, incr=-852, endo=0)
Expected item not found fefe7132 d0079a3d 32c3d13b ebf3e1c7 0b8b35e3 (thread=5339, incr=-274, endo=1)
Expected item not found fefec3ff b510adc3 83d7de51 185b96f8 d134c2bc (thread=5354, incr=692, endo=2)
Expected item not found fefe82c2 2aceca4a 80c03835 9635b780 0a2e1c5b (thread=5374, incr=-15, endo=1)
Expected item not found fefed3ff 46da9a58 8a40e693 375dbc41 79854535 (thread=5374, incr=-159, endo=0)
Expected item not found fefe86d9 dac4c4d9 78991e74 cbbda2ec deef50e0 (thread=5376, incr=-975, endo=2)
Expected item not found 3412917b 00ce1867 02bf52ac b332fa9b 857ce3f3 (thread=5395, incr=-136, endo=2)
Expected item not found fefedd16 6e7c4bb3 653f20e0 7b49f08a 9f4cf200 (thread=5396, incr=805, endo=2)
Expected item not found fefe20a5 35208db3 7192fb68 2d509bce 472eb39c (thread=5405, incr=-372, endo=2)
Expected item not found fefeb95f e87c8649 354a0108 c96e36b0 a42d4926 (thread=5408, incr=-392, endo=1)
Expected item not found 34126638 e84a7337 9240a68c 773a0b72 22af7f8c (thread=5435, incr=206, endo=1)
Expected item not found 3412a78f c24487db 2db55343 ee3e7feb d715b49b (thread=5458, incr=822, endo=2)
Expected item not found 34122117 959eefba 150467c8 d9657797 cef5deb4 (thread=5469, incr=114, endo=1)
Expected item not found 3412a645 7aa00677 dfb7c82f 42298824 975288b9 (thread=5471, incr=828, endo=1)
Expected item not found 34121b22 6f3e928c 4eaa0d37 cd22b96d e1ec61ad (thread=5475, incr=-312, endo=1)
Expected item not found 341276b9 a3d0080c baab0013 81c1f911 ab26cbf3 (thread=5480, incr=-576, endo=2)
Expected item not found 3412714b 8763a8a3 a787eaf2 9c4ed1f4 f0bc7e00 (thread=5492, incr=938, endo=1)
Expected item not found 3412cdba 80d3619b 2be421be f5e8b300 fb221a93 (thread=5514, incr=-398, endo=0)
Expected item not found 34128f84 5f779ee7 d0b490cb e2022094 36353227 (thread=5533, incr=906, endo=2)
Expected item not found 34125270 811d27f0 3bc25307 1067ca2e 1bf36b67 (thread=5536, incr=53, endo=1)
Expected item not found 34129993 a23a69ed 2ec769a8 21bd334b 14fed5c6 (thread=5547, incr=-22, endo=2)
Expected item not found fefead4b e208a430 ff9cc79a 4921a4fc 8ff4455f (thread=5547, incr=333, endo=2)
Expected item not found 341257ab fc5e5d7f 913c2d8e 12dd976e 55cfd551 (thread=5575, incr=-1020, endo=0)
Expected item not found fefe929a 0547002f 7675e98c e559b9d2 7aeea2ec (thread=5593, incr=-939, endo=0)
Expected item not found 34123ae6 e96de8bc 70b1bfc2 2e3fec88 3d09f54c (thread=5594, incr=905, endo=1)
Expected item not found fefe18f5 a66736ac bb1b70b1 505ba7cf 919b85bc (thread=5596, incr=757, endo=2)
Expected item not found fefed695 d35e4ccd 8d45b78d 62ddb7e3 2dbfcae0 (thread=5627, incr=-85, endo=2)
Expected item not found 34123d48 b86b330f ebf77161 38cf145f 17c3e616 (thread=5652, incr=471, endo=2)
Expected item not found fefe7025 d1f85273 6059f506 19253784 ad58fe10 (thread=5656, incr=885, endo=1)
Expected item not found 3412f67d 36946e00 619dad49 31ee1aed a2475e02 (thread=5661, incr=-32, endo=1)
Expected item not found fefe8264 c1ba2149 c3866773 d6c7312b ccfd99c1 (thread=5663, incr=479, endo=1)
Expected item not found 3412ff52 feb3ac93 c8983ed7 f3162f7b 22d95bd8 (thread=5711, incr=-560, endo=2)
Expected item not found 34120c5d fb94ac69 2564e333 57c6f607 d238ea1b (thread=5743, incr=-54, endo=1)
Expected item not found fefe34ab f438ff01 9e948010 2bba3922 94b8d359 (thread=5757, incr=860, endo=1)
Expected item not found fefe0108 993d9bde 981f4f07 0d50317e 38331dde (thread=5797, incr=-495, endo=1)
Expected item not found 341219f9 b88b2f7c 89ce93da 66bcd06d 25a28bc9 (thread=5802, incr=-583, endo=0)
Expected item not found 3412cb40 1d72b904 fb5c7762 ccde70a1 4f8511d3 (thread=5805, incr=-158, endo=2)
Expected item not found fefe8f82 94180e8a 75cdd45c c5b6cc63 6bc7d952 (thread=5816, incr=-156, endo=2)
Expected item not found fefe22e9 0c982e7a fb4b474b e911eb03 3d31c9cc (thread=5856, incr=-442, endo=2)
Expected item not found fefe8741 13c7f5b4 84568c7e a4b32b1f 61e8905d (thread=5862, incr=-306, endo=0)
Expected item not found 3412b0e9 a4159078 2abfc9bb 705fc385 094ad527 (thread=5877, incr=-413, endo=0)
Expected item not found 3412cbd3 88642dc4 3bcac548 2e429312 97805e9b (thread=5880, incr=-865, endo=1)
Expected item not found fefe4b41 d56aa48a 1e3fcdcc 59181295 914b971e (thread=5893, incr=-618, endo=0)
Expected item not found fefef94a 24c115be e5066ad6 6abe63a7 ab639ccd (thread=5936, incr=-598, endo=1)
Expected item not found fefeda51 e048f01d 2fd8018d 8156942d cf6a999c (thread=5966, incr=-96, endo=2)
Expected item not found 3412e710 e1a4e5ea a50305fd 0cc9b393 6a17ab0d (thread=5971, incr=-788, endo=0)
Expected item not found fefee527 cf81e0d9 54e2421d 82c36f13 201792a0 (thread=5979, incr=121, endo=2)
Expected item not found 34129564 4d6d5b3c 7a486590 9d737284 803e4584 (thread=5982, incr=-904, endo=1)
Expected item not found fefe2951 2f2704aa cfcbe0b6 e531fe33 aa1f94f5 (thread=5991, incr=722, endo=2)
Expected item not found fefeb6ab 0115776f cdb520b2 c62d1274 b6d75db8 (thread=6010, incr=-187, endo=1)
Expected item not found fefe287c 74efce62 5bd45d3f 3301bc12 2da92e7e (thread=6010, incr=-639, endo=1)
Expected item not found 3412fb48 22b09603 7ece35cd 50d7b09b caca72f4 (thread=6033, incr=150, endo=1)
Expected item not found 34120aa5 5b2486fe d255172c 0f4305d3 1f900cc0 (thread=6051, incr=-759, endo=0)
Expected item not found fefea4f2 ac49b11e 54487f63 a9326637 a85305e0 (thread=6090, incr=866, endo=1)
Expected item not found fefeddb9 ece4bcdf 39fbd832 feaa1309 3c892d71 (thread=6122, incr=-244, endo=0)
Expected item not found 34124e0a 3489a3bf 5c6e6337 2105d13b 291fd2aa (thread=6136, incr=681, endo=2)
Expected item not found 341264c3 6f309d1d 5c51f14e 6aa396de 5d141398 (thread=6138, incr=-156, endo=1)
Expected item not found fefee068 f0ab0e42 cb48902b 9a1bae76 1d59e1d1 (thread=6144, incr=-6, endo=2)
Expected item not found 34122ede cb1ff2b8 30131934 27d20eb5 2cc2c3a5 (thread=6157, incr=-996, endo=0)
Expected item not found 3412ade0 c078b982 b1020d51 1fc5a5fd 665aba60 (thread=6184, incr=-795, endo=0)
Expected item not found fefe4da8 27c0266d 09172271 0783e033 fc10cd05 (thread=6189, incr=77, endo=1)
Expected item not found fefe263c 464a224d 2627c839 49a02489 7487b077 (thread=6199, incr=619, endo=2)
Expected item not found fefe6497 73b0c0da 5007bafc 7e79719f 8a5f0991 (thread=6200, incr=-996, endo=0)
Expected item not found 34127170 4d055e73 1cd39fc2 bf3a4958 169e8ef8 (thread=6216, incr=-685, endo=0)
Expected item not found fefe6b27 ce34f205 3c92133d a8593ff1 3b55ce19 (thread=6219, incr=524, endo=2)
Expected item not found fefe6b39 854ce65e 200c6b5c b5c51a2a 5c4694af (thread=6222, incr=941, endo=2)
Expected item not found fefe4f2c 41f292d8 1b9368b3 b794f43c 58a1f3e1 (thread=6307, incr=-222, endo=1)
Expected item not found fefe5acd bbccef1f 53c187a7 66201e85 e8619692 (thread=6308, incr=422, endo=2)
Expected item not found 3412b163 c1d8c518 a1729c72 b19fa7f8 34123dc0 (thread=6321, incr=-90, endo=2)
Expected item not found fefef8f2 2754f638 8a4d914d abba0ff1 46cae830 (thread=6333, incr=-55, endo=1)
Expected item not found fefe6080 349bb457 99e97c0f 92f1bacb f75a05f9 (thread=6353, incr=-278, endo=2)
Expected item not found fefebbcd 931be395 bf1d50eb acd9131f f5a3a95c (thread=6358, incr=508, endo=1)
Expected item not found fefe050b d26b1296 7186e4b4 7fa587ba 62a5b52e (thread=6360, incr=-48, endo=0)
Expected item not found fefead01 e6ed01b9 d5d9bba9 f3db3716 25476ee9 (thread=6406, incr=-547, endo=2)
Expected item not found 3412625d df309b8c 347a4c71 fde99be0 2ad71d92 (thread=6420, incr=-877, endo=0)
Expected item not found 34122b28 e890a4ba db507d05 7b90c85a 0e5c73a7 (thread=6429, incr=218, endo=2)
Expected item not found 34121021 12d7ee03 f7d253b7 183c0f6d 9a57ee60 (thread=6431, incr=-265, endo=0)
Expected item not found 34126c15 b094f8a8 81da0a32 bad7f9f0 47134d8b (thread=6431, incr=-551, endo=2)
Expected item not found 341250e8 e7b0cd6b aa3346d0 29d4b32f 1990516d (thread=6432, incr=-20, endo=2)
Expected item not found fefe349c fa9db2bc 17464ce9 a6e87567 bc3850d8 (thread=6432, incr=669, endo=2)
Expected item not found fefecce4 b1790ad6 1a6bd4c3 bf2ea661 423f2a88 (thread=6437, incr=-976, endo=0)
Expected item not found 341279b3 041eb750 a258da61 b07f5c58 c1bcc5cc (thread=6460, incr=-979, endo=1)
Expected item not found fefe0da2 6eabd8b0 8db27bbe 3d8a832f 4ed11af8 (thread=6470, incr=392, endo=2)
Expected item not found 34129944 453b5bc6 ede081ed 7f57bb7f fcd9c2df (thread=6477, incr=-465, endo=0)
Expected item not found 341209d5 b367ba38 5f88f4f9 c073950d e0c113a8 (thread=6480, incr=786, endo=1)
Expected item not found fefe6964 ce3e307b 21bb33f8 a3e17dfb e88773ee (thread=6492, incr=-586, endo=1)
Expected item not found 34127f98 e9f24ebf af2c572f 19e3a90b 6e86ae0c (thread=6501, incr=529, endo=2)
Expected item not found 3412ea76 9e2b4a03 d841a54b 7d35fa57 a00cadc7 (thread=6501, incr=699, endo=2)
Expected item not found 34127682 d1438660 61bb4a58 8fcbf7de 6f871629 (thread=6505, incr=-298, endo=0)
Expected item not found 3412717b bf780043 744df104 3b1d4691 3ce3cea6 (thread=6506, incr=-834, endo=2)
Expected item not found 3412e5ef 120c3090 84ca3ebd 5fcdb152 9362fd4a (thread=6535, incr=806, endo=2)
Expected item not found fefebdfa d89bb65b 247a7a00 92e796cb 6b806254 (thread=6547, incr=-850, endo=1)
Expected item not found fefe3fc1 11f68679 1559cea6 2349a0b9 5e626258 (thread=6561, incr=-1014, endo=1)
Expected item not found fefe62b7 0f8bb751 83347b94 6d254065 cf37e4fd (thread=6611, incr=-979, endo=0)
Expected item not found 3412f319 7de1a8f3 43268b24 fed7132f 1b8105bf (thread=6619, incr=621, endo=1)
Expected item not found 34121681 c35b5368 3329ec4e d1afda64 d80dc365 (thread=6632, incr=851, endo=1)
Expected item not found 34126293 79ba3b09 bfcc6536 e165118a fcad044a (thread=6728, incr=994, endo=2)
Expected item not found 34125fa5 b0348c3c 63596028 47130e1e d4692c49 (thread=6730, incr=-132, endo=2)
Expected item not found 341217c6 d65fee31 7986a385 c44b58c7 659e5286 (thread=6741, incr=0, endo=2)
Expected item not found 3412ee4f 92166ef9 513cbc07 e4f25608 10bdcec9 (thread=6764, incr=-64, endo=2)
Expected item not found 341205f4 8480a918 6b77fb19 009e66c8 fdbb5863 (thread=6779, incr=-197, endo=0)
Expected item not found 341241a2 610277c0 56a7dd3b 6e88be53 1ace3a8a (thread=6785, incr=453, endo=1)
Expected item not found fefe3334 4ce9d4c5 7c221cf6 b61854fa d6b63fb0 (thread=6793, incr=-837, endo=1)
Expected item not found fefee4f5 ad7cc8e3 e0146dc3 4d20b551 3e7c7688 (thread=6800, incr=-168, endo=0)
Expected item not found 3412aef7 66eb4be7 daa7e830 45dcd615 aa283b27 (thread=6820, incr=784, endo=1)
Expected item not found fefebb8a 534c332a 9da4a232 fe0fd7e7 29ad7905 (thread=6836, incr=-533, endo=0)
Expected item not found 34123021 6cf33d6b 35d692e9 248e0149 ba616361 (thread=6840, incr=-374, endo=0)
Expected item not found 3412954f 3e1b06b3 b3896747 1d4dc39a aefee41b (thread=6859, incr=-230, endo=1)
Expected item not found fefe14ab 1fc6d453 dc953fd3 71388323 7ed79f1c (thread=6863, incr=-574, endo=0)
Expected item not found fefe6eb2 e9268f1f 51addee2 f2d838ad 88a736ce (thread=6874, incr=-415, endo=0)
Expected item not found 3412a205 fdb8a4eb 79e41e1a 6f7436d6 8d38a3ef (thread=6874, incr=-935, endo=0)
Expected item not found fefe24ec c60f0dcb c1491e44 f1c803e3 27998978 (thread=6880, incr=-293, endo=0)
Expected item not found 3412ec96 79022d2d 9d351a3c 4e1bb4e7 4539735b (thread=6890, incr=-470, endo=0)
Expected item not found fefec6e4 f05c9f7a 19ee92c4 4afdace4 1628a4a7 (thread=6892, incr=435, endo=2)
Expected item not found 34127003 9073c5c9 7c0bd8bb 31c1d135 a68290cc (thread=6920, incr=-540, endo=2)
Expected item not found 341295df ce8956bc 14a69e71 f7b5e969 b7f1acf4 (thread=6930, incr=588, endo=2)
Expected item not found 3412f452 79227eca fb2a67d6 13de2a5f 110cc086 (thread=6939, incr=-862, endo=0)
Expected item not found fefe01fd d1dea371 2f9666bc b6c94223 30dffd3a (thread=6965, incr=-626, endo=0)
Expected item not found 34125277 3d6ff2f9 24d29a06 70274a36 3a88bcc9 (thread=6969, incr=-232, endo=2)
Expected item not found fefec05e 11f40899 8b7a434a 96a78d98 09633f23 (thread=6975, incr=122, endo=2)
Expected item not found 341276c6 fb5bcb2e 3d1b5548 48657895 7d4078f9 (thread=7005, incr=-181, endo=2)
Expected item not found fefe80de 325f8052 41c8d8e5 f90c27de fe0cea98 (thread=7008, incr=-556, endo=1)
Expected item not found fefe1635 9cba966e 62d93142 976c847d b83732d4 (thread=7020, incr=-324, endo=0)
Expected item not found fefe8397 02902f9b ae519845 32f78469 e6c969d5 (thread=7024, incr=982, endo=2)
Expected item not found 3412d38d 0840df12 9dddba13 4a9aca20 64197979 (thread=7054, incr=-707, endo=1)
Expected item not found 34120d5a 6888f3cc 53729667 e8310000 4f2e39f3 (thread=7065, incr=-754, endo=2)
Expected item not found fefe6eb7 54c3141a 00f55044 588e9377 3c7acfec (thread=7069, incr=-193, endo=0)
Expected item not found fefefba4 479337e1 0952b95f 03a1b6a3 9adc4db9 (thread=7071, incr=-309, endo=1)
Expected item not found 34121c26 bd6bdb0e 01c02777 430a6b93 73fd8ce8 (thread=7096, incr=947, endo=1)
Expected item not found fefe8ceb 266ceeb8 1ae54fb2 ec07fd26 cc5a7759 (thread=7102, incr=-53, endo=1)
Expected item not found 3412559c 5a6315d7 2987210b 6cd4b4a4 c629c71d (thread=7128, incr=-259, endo=2)
Expected item not found fefef1a4 7402aafc fb2e7eb6 7e5b825a 52c109fb (thread=7151, incr=566, endo=1)
Expected item not found 34127779 af694305 6ef436b5 a0d86200 4b854ab7 (thread=7198, incr=-368, endo=0)
Expected item not found fefe1941 e1763227 09197bd9 78a4f990 78e1c4d2 (thread=7204, incr=-506, endo=0)
Expected item not found fefe3bcd 77847e52 59d74edc 548e8185 080bcfbf (thread=7216, incr=318, endo=2)
Expected item not found 3412c4c2 7c25b51e 97bc3912 ef66f30a db11ff9b (thread=7217, incr=-629, endo=1)
Expected item not found 341281c0 fa6795d9 f40c570d c7542567 03236e8a (thread=7238, incr=-820, endo=1)
Expected item not found fefed80f 805fde4d b762881c 0d17d700 a12faeaf (thread=7247, incr=-559, endo=1)
Expected item not found 3412d7a9 e60a83e2 ede950eb 6926bd25 2cb121f0 (thread=7287, incr=-991, endo=2)
Expected item not found fefef965 c3ca5672 c6464a76 01fdd142 8c0d9c6d (thread=7300, incr=-417, endo=1)
Expected item not found fefef997 56e540f3 28ec630e 7f3e94a1 5adabb69 (thread=7303, incr=369, endo=1)
Expected item not found 34125a49 ef41798a 75a45ebc fa72b179 aabc4521 (thread=7340, incr=537, endo=1)
Expected item not found 3412a9d6 2ddce9e5 ad391934 b1cb1a84 004ed90e (thread=7341, incr=935, endo=1)
Expected item not found fefe3799 3f911ed4 358f0117 320eb179 5f755dd0 (thread=7343, incr=-547, endo=0)
Expected item not found fefec53b 7260469a d90ecfc1 53d33d52 d30e90b3 (thread=7369, incr=117, endo=2)
Expected item not found fefe0d4d 8f343351 9cedfbe8 39d7d364 610586b3 (thread=7371, incr=-358, endo=0)
Expected item not found fefec9d5 1d99249b 988a475d 59a7e649 c30a68d3 (thread=7404, incr=728, endo=1)
Expected item not found 3412f87d 1a8bd3e7 01c0419c 1801b86a 136b22be (thread=7438, incr=-796, endo=2)
Expected item not found 341285f8 57e01429 7e477f56 d67e5d80 b63df8e9 (thread=7497, incr=223, endo=1)
Expected item not found 34125d10 b43911c7 b591cac3 bc2efd46 a5dc2f17 (thread=7498, incr=-760, endo=0)
Expected item not found fefe7173 f07df28b 891a0518 2d4f2cd3 494e410f (thread=7512, incr=201, endo=1)
Expected item not found fefebca9 f22eeb94 f7681821 bffecf63 ed53ad60 (thread=7536, incr=-98, endo=2)
Expected item not found 34126a68 e05cc6cf 8c51be49 731eb849 17ae768e (thread=7541, incr=-173, endo=0)
Expected item not found fefea131 b99f7032 b7be3469 d336996f bc6dcf66 (thread=7542, incr=-455, endo=0)
Expected item not found fefe0b59 85042bc2 9e4a3f44 aa10709e 0a0ba621 (thread=7610, incr=-894, endo=1)
Expected item not found 341252a7 c759cc1c 64410426 a8fe4140 2c4023ac (thread=7647, incr=246, endo=1)
Expected item not found 34125c99 c0ba7050 faa5adce bdc72882 dfe8b3af (thread=7668, incr=274, endo=2)
Expected item not found 3412530a d0c44e23 6e2a6bdb 9dfa2d8c 5a22d006 (thread=7703, incr=-185, endo=0)
Expected item not found 3412d05c 6c002406 838fd6df 4ccf9627 2f37eb39 (thread=7713, incr=-330, endo=2)
Expected item not found fefe8d2a f5dc906d a02ec81d 37008eb1 30ecd5f2 (thread=7715, incr=-14, endo=2)
Expected item not found fefe9c17 6713ae40 cea9f1dc 2246c25a 82df1445 (thread=7730, incr=-415, endo=2)
Expected item not found 3412312f e2e641b5 bd398e41 7300ec43 c4624dfe (thread=7730, incr=-838, endo=2)
Expected item not found fefeef75 ddf487de 9760f77e 57dad4da 9daa2516 (thread=7731, incr=566, endo=1)
Expected item not found 34124740 511da734 be76288e e11c007a a509cb9f (thread=7746, incr=743, endo=2)
Expected item not found fefe60c4 5aaacc5c 71776372 149a3a94 5f802fc3 (thread=7754, incr=-820, endo=1)
Expected item not found 34122038 163847ea d3d1fb44 c9a0cea8 32c06cf3 (thread=7777, incr=-625, endo=0)
Expected item not found fefe6466 9040eb48 d37683d3 aba965e3 3f766fb5 (thread=7793, incr=-678, endo=0)
Expected item not found fefe6c2e 3a52f246 57e2671a 0e72cefe af1d8728 (thread=7795, incr=-559, endo=0)
Expected item not found 3412dc0c d6b76921 2d2720ee 55bcfb07 7630b921 (thread=7861, incr=53, endo=1)
Expected item not found 34124126 071cf568 55b55ee0 1c514334 6bdf43f4 (thread=7861, incr=930, endo=2)
Expected item not found 3412e920 325776b1 be811138 7341a7ae cb098804 (thread=7876, incr=-495, endo=2)
Expected item not found fefe4419 c2ab0944 31610745 6fa11b51 a9203ac8 (thread=7881, incr=-680, endo=2)
Expected item not found fefefa5d 2de68297 a03e07ab 792eec07 f595f06c (thread=7885, incr=-74, endo=2)
Expected item not found fefe25f3 b7a9f79e 6b45ec77 6841832d 4a5bd30a (thread=7943, incr=335, endo=1)
Expected item not found 3412d551 89a8deee 67bcd045 a325ea76 9bbe8494 (thread=7961, incr=-669, endo=0)
Expected item not found 3412b042 9e4cdba6 ab7bda0a 1e457147 47326d92 (thread=7961, incr=-937, endo=0)
Expected item not found 34122719 96cf9af9 1b485c6b 6eab77b7 a8fdbec9 (thread=7964, incr=-196, endo=1)
Expected item not found fefee8f0 b2ac9d09 1071e6c1 f5e1200e 6faa810c (thread=7965, incr=-800, endo=0)
Expected item not found fefee982 837f63e7 56e6bd51 d36957da 0114b299 (thread=7968, incr=-739, endo=2)
Expected item not found 34124064 a8958a24 2a94cc51 dc8bbe94 ff743823 (thread=7988, incr=-376, endo=0)
Expected item not found fefe45ef 3590ba4d 62c883c1 55b06541 efeb0a9b (thread=8004, incr=-4, endo=0)
Expected item not found fefe4fc9 cb268e8d dd984a49 c374b62e d48bb672 (thread=8039, incr=-491, endo=0)
Expected item not found 34125234 873dbcd7 6f333606 bde882d0 2755bb02 (thread=8058, incr=-439, endo=1)
Expected item not found fefe4e35 041240f1 667e47fe 6145f566 d757cac0 (thread=8077, incr=-231, endo=2)
Expected item not found fefe05e9 dd5dae85 d52e4356 47a3200a 507d76a9 (thread=8087, incr=-23, endo=1)
Expected item not found fefe13d1 f7bbef2f 60033bd9 bfb271da 46350f0d (thread=8120, incr=-644, endo=2)
Expected item not found fefe226d 7d6f9476 bf69e18a ca503b2a 5fc42786 (thread=8121, incr=-835, endo=1)
Expected item not found fefe29e6 995eae5a ec05c213 8d617aba 82bf2ace (thread=8151, incr=737, endo=1)
Expected item not found 341244b2 26f9a584 3f9c66dc e3520b99 beab9fe5 (thread=8155, incr=294, endo=1)
Expected item not found 34122bb3 b43fe022 370eef76 1cf9ac38 283d1b0c (thread=8168, incr=-742, endo=1)
CPU found 1517 items
GPU: point   correct [252/252]
GPU: endo #1 correct [156/267]
GPU: endo #2 correct [131/239]
GPU: sym/point   correct [127/255]
GPU: sym/endo #1 correct [158/236]
GPU: sym/endo #2 correct [166/268]

From the last lines I understand that sym is not correct (only 127 over 255 correct).
sr. member
Activity: 462
Merit: 696
Hello,

I added more details in the check function.
I also enabled the #define FULLCHECK (GPUEngine.cu:1163) which will perform individual test on hash function and ModularMult.
sr. member
Activity: 462
Merit: 696
771 lines of "Expected item not found"

This time all wrong.
sr. member
Activity: 462
Merit: 696
Tomorrow, I will add more details in the check function in order to try to understand what is going wrong.
As on my 2 config all is going fine, it is very difficult to debug.

legendary
Activity: 1914
Merit: 2071
What you can try is to remove the endomorphism for checking.

Comment the following code in GPUEngine.cu around line 1843 (in the Check() function)
...


Code:
....
ComputeKeys() found 262 items , CPU check...
Expected item not found 34122f9d f14a3cbe 9ccd69bb 1f2ca184 6a6af011
Expected item not found fefe9418 53b7af8e 4732d240 a4c622fe ea4e165b
Expected item not found 34127b76 f3171f36 6266178a 28d60ab9 c74f1e34
Expected item not found 3412f627 8526d571 6db1a559 e06e319b 50f6d82f
Expected item not found 34124611 47fdf70a b62736bf 59eaf92a 841a9436
.....
Expected item not found fefe2c39 82a05980 ad3d68cc c26a0515 3bc5b442
Expected item not found fefecd0e 739a1122 c74ab4c0 c4a88767 a4dcbae7
Expected item not found 3412583e 101f754d 513f121d e0c61e64 5f40e934
Expected item not found 3412b469 21478371 8cc44d6c 2fd40aa3 33d8a3e1
CPU found 771 items

771 lines of "Expected item not found"

An idea would also to noline the _ModInvGrouped (Line 594 GPUEngine.cu)

The errors remain.

sr. member
Activity: 462
Merit: 696
OK. That means that 1545 - 549 are ok.
An idea would also to noline the _ModInvGrouped (Line 594 GPUEngine.cu)
I committed GPUEngine.cu (I just removed unused functions) so the line number may be incorrect.
legendary
Activity: 1914
Merit: 2071
At the end of the list you have the number of items found by the CPU if this number is equal to 549, that means that all are wrong.


At the beginning there are 1534 items:
Code:
ComputeKeys() found 1534 items , CPU check...
Expected item not found fefebd83 328e08ab 3b17c5c2 1fdc223d e99919bf
Expected item not found fefe17af bdccaa14 b240f5d9 acf1b7a7 6d66f7d4
Expected item not found 34122cfd 49587610 4fbb18c9 be290471 8bbe55a8


At the end there is

Code:
Expected item not found fefe51d9 3a71e2cc 0ef81fa6 b2698f8f d1285ce7
Expected item not found fefea8a6 41257f76 b9671b37 cd183376 2ab546f5
Expected item not found 3412f47d 9ed13a0b c9d795d8 943d230f 010170e2
CPU found 1545 items

 I saved the output and with grep and wc I counted 549 "Expected item not found"
sr. member
Activity: 462
Merit: 696
What you can try is to remove the endomorphism for checking.

Comment the following code in GPUEngine.cu around line 1843 (in the Check() function)

Code:
     /*
      secp.GetHash160(p1, searchComp, h);
      pr = *(prefix_t *)h;
      if (pr == 0xFEFE || pr == 0x1234) {
        nbFoundCPU++;
        ok &= CheckHash(h, found);
      }
      secp.GetHash160(p2, searchComp, h);
      pr = *(prefix_t *)h;
      if (pr == 0xFEFE || pr == 0x1234) {
        nbFoundCPU++;
        ok &= CheckHash(h, found);
      }
      */

      // Symetrics
      pt.y.ModNeg();
      p1.y.ModNeg();
      p2.y.ModNeg();

      secp.GetHash160(pt, searchComp, h);
      pr = *(prefix_t *)h;
      if (pr == 0xFEFE || pr == 0x1234) {
        nbFoundCPU++;
        ok &= CheckHash(h, found);
      }
      /*
      secp.GetHash160(p1, searchComp, h);
      pr = *(prefix_t *)h;
      if (pr == 0xFEFE || pr == 0x1234) {
        nbFoundCPU++;
        ok &= CheckHash(h, found);
      }
      secp.GetHash160(p2, searchComp, h);
      pr = *(prefix_t *)h;
      if (pr == 0xFEFE || pr == 0x1234) {
        nbFoundCPU++;
        ok &= CheckHash(h, found);
      }
      */

And the following in GPUCompute.h around line 78 (jn the CheckHashComp() function)

Code:
 _GetHash160Comp(px, py, (uint8_t *)h);
  CHECK_POINT(h, incr, 0);
  /*
  _ModMult(pe1x, px, _beta);
  _GetHash160Comp(pe1x, py, (uint8_t *)h);
  CHECK_POINT(h, incr, 1);
  _ModMult(pe2x, px, _beta2);
  _GetHash160Comp(pe2x, py, (uint8_t *)h);
  CHECK_POINT(h, incr, 2);
  */

  ModNeg256(py);

  _GetHash160Comp(px, py, (uint8_t *)h);
  CHECK_POINT(h, -incr, 0);
  /*
  _GetHash160Comp(pe1x, py, (uint8_t *)h);
  CHECK_POINT(h, -incr, 1);
  _GetHash160Comp(pe2x, py, (uint8_t *)h);
  CHECK_POINT(h, -incr, 2);
  */


And then make gpu=1 clean and make gpu=1 all
Pages:
Jump to: