Bitcoin Forum
June 27, 2024, 08:42:30 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 ... 1240 »
  Print  
Author Topic: CCminer(SP-MOD) Modded GPU kernels.  (Read 2347503 times)
bathrobehero
Legendary
*
Offline Offline

Activity: 2002
Merit: 1051


ICO? Not even once.


View Profile
May 06, 2015, 10:24:29 PM
 #2741

Ouch! yaamp hitting quark with 8% fee.

This is not going to be popular but I have to say I like that. I think that serves people right for being lazy. I mean that fee at least incentivizes miners to do their research about what to mine instead of pretty much ruinning the prices of coins they don't even know existed. There are 4 quark coins being mined by yaamp and the combined daily volume of those coins are below 2 BTC and they are all going down:


Not your keys, not your coins!
Grout
Full Member
***
Offline Offline

Activity: 139
Merit: 100


View Profile
May 06, 2015, 10:36:08 PM
 #2742

Hi,

I have a problem on Ubuntu 15.04, that happens with any version of ccminer (SP, tpruvot, djm34).

The compilation went fine, but on the first run, and after each reboot, I get:
Code:
julien@miner1:~/ccminer-SP$ ./ccminer --benchmark -a x11
*** ccminer 1.5.49-git(SP-MOD) for nVidia GPUs by sp-hash@github ***
        Built with the nVidia CUDA SDK 6.5
 
  Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
   CUDA support by Christian Buchner, Christian H. and DJM34
  Includes optimizations implemented by sp , klaust, tpruvot and tsiv.
 
[2015-05-06 23:54:30] Unable to query number of CUDA devices! Is an nVidia driver installed?

Then, if I start the miner as root, it runs fine:
Code:
julien@miner1:~/ccminer-SP$ sudo ./ccminer --benchmark -a x11
[sudo] password for julien:
*** ccminer 1.5.49-git(SP-MOD) for nVidia GPUs by sp-hash@github ***
        Built with the nVidia CUDA SDK 6.5
 
  Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
   CUDA support by Christian Buchner, Christian H. and DJM34
  Includes optimizations implemented by sp , klaust, tpruvot and tsiv.
 
[2015-05-06 23:54:52] NVML GPU monitoring enabled.
[2015-05-06 23:54:52] 2 miner threads started, using 'x11' algorithm.
[2015-05-06 23:54:52] Thread 0 priority 0 (set to 18)
[2015-05-06 23:54:52] Thread 1 priority 0 (set to 18)
[2015-05-06 23:54:52] Binding thread 1 to cpu 1 (mask 2)
1
[2015-05-06 23:54:52] Binding thread 0 to cpu 0 (mask 1)
0
[2015-05-06 23:54:57] GPU #1: GeForce GTX 750 Ti, 2841
[2015-05-06 23:54:57] Total: 5242 kH/s

After that, I can start the miner as a normal user:
Code:
julien@miner1:~/ccminer-SP$ ./ccminer --benchmark -a x11
*** ccminer 1.5.49-git(SP-MOD) for nVidia GPUs by sp-hash@github ***
        Built with the nVidia CUDA SDK 6.5
 
  Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
   CUDA support by Christian Buchner, Christian H. and DJM34
  Includes optimizations implemented by sp , klaust, tpruvot and tsiv.
 
[2015-05-06 23:55:23] NVML GPU monitoring enabled.
[2015-05-06 23:55:23] Thread 0 priority 0 (set to 18)
[2015-05-06 23:55:23] Binding thread 0 to cpu 0 (mask 1)
0
[2015-05-06 23:55:23] Thread 1 priority 0 (set to 18)
[2015-05-06 23:55:23] Binding thread 1 to cpu 1 (mask 2)
1
[2015-05-06 23:55:23] 2 miner threads started, using 'x11' algorithm.

My guess is, it is a permission issue. It needs to create a file that only root can create. But since the verbose mode doesn't work on the first run, I can't tell where the problem comes from.
I noticed a file that appeared after the "root run" (/dev/nvidia-uvm), but creating it by hand with 'mknod -m 666 /dev/nvidia-uvm c 249 0' is not enough. Must be missing something else...

If it is distribution-specific and nobody has any idea how to fix that, I might downgrade to 14.04.
Grout
Full Member
***
Offline Offline

Activity: 139
Merit: 100


View Profile
May 06, 2015, 10:59:44 PM
 #2743

Thanks to soka on #ccminer, here is the solution for Ubuntu 15.04 users : you have to create the file AND load the nvidia_uvm module at boottime (which for some reason is not loaded by default on Ubuntu 15.04). Apparently, ccminer can load the module by itself, but it only works as root, obviously. So just edit these two files and you're golden:

/etc/modules
Code:
nvidia_uvm

/etc/rc.local
Code:
mknod -m 666 /dev/nvidia-uvm c 249 0

Cheers!
flipclip
Member
**
Offline Offline

Activity: 111
Merit: 10


View Profile
May 07, 2015, 12:39:46 AM
 #2744

Thanks to soka on #ccminer, here is the solution for Ubuntu 15.04 users : you have to create the file AND load the nvidia_uvm module at boottime (which for some reason is not loaded by default on Ubuntu 15.04). Apparently, ccminer can load the module by itself, but it only works as root, obviously. So just edit these two files and you're golden:

/etc/modules
Code:
nvidia_uvm

/etc/rc.local
Code:
mknod -m 666 /dev/nvidia-uvm c 249 0

Cheers!

Thanks for this info.  Works on Ubuntu 14.04 too.  Had always bugged me, but I'd always forget to look into it (don't restart all that much).
chrysophylax
Legendary
*
Offline Offline

Activity: 2828
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
May 07, 2015, 01:33:39 AM
 #2745

this happened with the fedora 20 x64 install last night ( actually 0300 in the morning ) ...

exactly the same situation with exactly the same results ...

i went around it a little differently - but same result ...

we now have a fedora 20 x64 machine running the latest ccminer-spmod with cuda 6.5 ...

after almost half a day researching and testing - the light at the end of the tunnel was purely a driver and installation issue ...

using the very same drivers FROM nvidia themselves that caused most of the problems - i managed to install various components separately - only to find a dev had already done the leg work for this installation - AND created rpm's and a repo for the installs ...

negativo17 - thats what eventually saved the ( installation ) day ... http://negativo17.org/nvidia-driver/ ...

then that issue with cuda devices not being found ... that was resolved ( for some reason ) with the installation of the nvidia-driver-NVML ... only to find that there is now NVML GPU monitoring enabled ...

that is a first for a fedora installation ...

once all of the base was installed - the compile was done successfully and now the system runs really well ... though the intensity had to be dropped to 20.5 ( originally 20.6 ) with x11 and the other algos have yet to be tested ...

once all the errands are run today - the rest of the testing will continue ...

hope this helps those of you in the same boat as we were ...

#crysx

hashbrown9000
Sr. Member
****
Offline Offline

Activity: 427
Merit: 250


View Profile
May 07, 2015, 03:09:29 AM
 #2746

hmm, running ubuntu 14.04 i never had a no cuda devices installed error.  as long as the path is exported each time before the miner is run, the miner works on any user including root.

Pinkcoin:
ETH:
VTC:
BTC:
chrysophylax
Legendary
*
Offline Offline

Activity: 2828
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
May 07, 2015, 03:33:23 AM
 #2747

hmm, running ubuntu 14.04 i never had a no cuda devices installed error.  as long as the path is exported each time before the miner is run, the miner works on any user including root.

maybe cuda installs the path environment automatically in ubuntu ...

i know it doesnt in fedora - it needs to be explicitly set ( like you have mentioned ) in either the script or the environment settings ( .bashrc ) ...

#crysx

chrysophylax
Legendary
*
Offline Offline

Activity: 2828
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
May 07, 2015, 04:42:58 AM
 #2748

sp ...

finally got it all sorted with compile and setup of the new os / install ...

testing now with neoscrypt and obviously donating also Wink - http://yaamp.com/?address=1CTiNJyoUmbdMRACtteRWXhGqtSETYd6Vd ...

-i 15.8 ( 58880 cuda threads - max it will go on this system ) ... -a neoscrypt -i 15.8

fedora 20 x64 - 6 x gigabyte 750ti oc lp cards - cuda 6.5 - latest git clone spmod ...

will let it run for an hour or so - and see how it fares ...

any settings that i should know about that would optimize it further? ...

tanx ...

#crysx

cooman
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
May 07, 2015, 05:41:24 AM
 #2749

Hi SP_,Could you optimized the scrypt-jane algorithm? THX! Grin
sp_ (OP)
Legendary
*
Offline Offline

Activity: 2912
Merit: 1087

Team Black developer


View Profile
May 07, 2015, 06:01:13 AM
 #2750

Yes I can. Scrypt -n doesn't seem to work in the latest mod. Benchmarkmode reports no nonces.

Team Black Miner (ETHB3 ETH ETC VTC KAWPOW FIROPOW MEOWPOW + dual mining + tripple mining.. https://github.com/sp-hash/TeamBlackMiner
chrysophylax
Legendary
*
Offline Offline

Activity: 2828
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
May 07, 2015, 08:42:10 AM
 #2751

sp - am i doing something wrong here? ...

the last git clone compiled fine ...

-------

g++ -DHAVE_CONFIG_H -I.  -fopenmp  -pthread -fno-strict-aliasing  -I/usr/local/cuda/include -DUSE_WRAPNVML -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME   -O3 -march=native -D_REENTRANT -falign-functions=16 -falign-jumps=16 -falign-labels=16 -MT ccminer-sysinfos.o -MD -MP -MF .deps/ccminer-sysinfos.Tpo -c -o ccminer-sysinfos.o `test -f 'sysinfos.cpp' || echo './'`sysinfos.cpp
ccminer.cpp:12:30: fatal error: cuda_runtime_api.h: No such file or directory
 #include "cuda_runtime_api.h"
                              ^
compilation terminated.
make[2]: *** [ccminer-ccminer.o] Error 1
make[2]: *** Waiting for unfinished jobs....
nvml.cpp:27:26: fatal error: cuda_runtime.h: No such file or directory
 #include "cuda_runtime.h"
                          ^
compilation terminated.
make[2]: *** [ccminer-nvml.o] Error 1
mv -f .deps/ccminer-sysinfos.Tpo .deps/ccminer-sysinfos.Po
mv -f .deps/ccminer-stats.Tpo .deps/ccminer-stats.Po
make[2]: Leaving directory `/mnt/compile/ccminer-all/sp-hash/ccminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/mnt/compile/ccminer-all/sp-hash/ccminer'
make: *** [all] Error 2

-------

tanx ...

#crysx

chrysophylax
Legendary
*
Offline Offline

Activity: 2828
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
May 07, 2015, 11:12:40 AM
 #2752

hi all ...

found what the issue was ...

only the nvidia drivers were required to be removed from the original install BEFORE the negativo17 repo was to be installed - and not all the cuda 6.5 files as well ...

they apparently work together - as both repos can be installed alongside the other and are compatible ...

now testing the install and the performance of the miner in the newest installation ...

what a learning curve for me ... sheesh! ...

sorry to put you guys all through this adventure of mine also - and flooding the forum sp ... but this just HAS to be helpful in anyway to some one ...

thats my excuse and im sticking to it Wink ...

#crysx

sp_ (OP)
Legendary
*
Offline Offline

Activity: 2912
Merit: 1087

Team Black developer


View Profile
May 07, 2015, 11:48:53 AM
 #2753

sp ...
finally got it all sorted with compile and setup of the new os / install ...
testing now with neoscrypt and obviously donating also Wink - http://yaamp.com/?address=1CTiNJyoUmbdMRACtteRWXhGqtSETYd6Vd ...
-i 15.8 ( 58880 cuda threads - max it will go on this system ) ... -a neoscrypt -i 15.8
fedora 20 x64 - 6 x gigabyte 750ti oc lp cards - cuda 6.5 - latest git clone spmod ...
will let it run for an hour or so - and see how it fares ...
any settings that i should know about that would optimize it further? ...
tanx ...
#crysx

Tnx for using my btc account for testing.

In the short test period 6x750ti hashed neoscrypt from

814-1231Khash

The average rate in the end was 964 KHASH.  (161 Khash per card.) Is this close to the output you got from ccminer?


Team Black Miner (ETHB3 ETH ETC VTC KAWPOW FIROPOW MEOWPOW + dual mining + tripple mining.. https://github.com/sp-hash/TeamBlackMiner
chrysophylax
Legendary
*
Offline Offline

Activity: 2828
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
May 07, 2015, 12:04:39 PM
 #2754

sp ...
finally got it all sorted with compile and setup of the new os / install ...
testing now with neoscrypt and obviously donating also Wink - http://yaamp.com/?address=1CTiNJyoUmbdMRACtteRWXhGqtSETYd6Vd ...
-i 15.8 ( 58880 cuda threads - max it will go on this system ) ... -a neoscrypt -i 15.8
fedora 20 x64 - 6 x gigabyte 750ti oc lp cards - cuda 6.5 - latest git clone spmod ...
will let it run for an hour or so - and see how it fares ...
any settings that i should know about that would optimize it further? ...
tanx ...
#crysx

Tnx for using my btc account for testing.

In the short test period 6x750ti hashed neoscrypt from

814-1231Khash

The average rate in the end was 964 KHASH.  (161 Khash per card.) Is this close to the output you got from ccminer?



thats ok ... ill be testing it all with the donation links once i have them all setup ... ive just been WAY too busy with life at the moment ...

this will all be full time for me soon - so ill have a great deal more time to invest on our farm ...

now - if you mean from djm's optimized ccminer ... i wouldnt know ... sorry sp ...

i never got the chance to mine as the compiled private miner he was distributing was already compiled ( from ubuntu i think - and he was so kind to provide it ) - and the farm wouldnt accept it with the setup that it was in ...

he DID mention to me many a time to upgrade to the latest cuda 6.5 ( i was using and compiling with 6,0 at the time ) BUT i didnt as it was a major undertaking ( as i have now found out ) - so i have no comparison ...

but i do have that private miner in the office server - so i can test it tomorrow if thats what you are after ...

as far as i know - there were also extra parameters like -throughput ... are those paramaters necessary with this spmod fork? ...

these optimizations you are making are getting very good hashrates ...

if you are asking from ccminer itself ... then the answer is very close ...

ccminer itself showed hashrates a little above that ... approx 950KH - 960KH total ...

tanx sp ...

#crysx

sp_ (OP)
Legendary
*
Offline Offline

Activity: 2912
Merit: 1087

Team Black developer


View Profile
May 07, 2015, 02:42:00 PM
 #2755

I get low accepted % on lyra2. Around 84% on release 49.

I have fixed it now@git. The rejects where of the type low difficulty share. X11 also had this problem on some pools

Team Black Miner (ETHB3 ETH ETC VTC KAWPOW FIROPOW MEOWPOW + dual mining + tripple mining.. https://github.com/sp-hash/TeamBlackMiner
CapnBDL
Hero Member
*****
Offline Offline

Activity: 1064
Merit: 500


MOBU


View Profile WWW
May 07, 2015, 03:40:01 PM
 #2756

I get low accepted % on lyra2. Around 84% on release 49.

I have fixed it now@git. The rejects where of the type low difficulty share. X11 also had this problem on some pools

Ok folks....just a quick question...when will the finished product be ready for D/L?

Thank You for all the hard work you guys are doing.

Happy Mining!!

           ▄██▄
████▄    ▄██████▄    ▄████
██████▄ ▀████████▀ ▄██████
▐███████▄ ▀████▀ ▄███████▌
▐█████████▄ ▀▀ ▄█████████▌
 ████ ▀█████▄▄█████▀ ████
 ████ ▄ ▀████████▀ ▄ ████
 ▐███ ██▄ ▀████▀ ▄██ ███▌
 ▐███ ████▄ ▀▀ ▄████ ███▌
  ███ ██████▄▄██████ ███
  ███ ██████████████ ███
  ▐██ ██████████████ ██▌
  ▐██ ██████████████ ██▌
   ██ ██████████████ ██
       ▀██████████▀
         ▀██████▀
           ▀██▀
.M O B U.███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
   The Investment Bank of the Future  
The Security Token Protocol and Licensed Security Token Exchange
█▀




█▄
Facebook Medium
Whitepaper ANN
LinkedIn    Reddit
▀█




▄█

         ▄▄▄█████▄▄▄
      ▄███████████████▄
    ▄███████████████████▄
   ███████████████████████
  ████ ▀███████▀    ▀██████
 █████▌  ▀▀███        ▄█████
▐██████▄             ▐██████▌
▐█████▄               ██████▌
▐███████▄            ███████▌
 ███████▄          ▄████████
  ████████       ▄█████████
   █████▀   ▄▄▄███████████
    ▀███████████████████▀
      ▀███████████████▀
         ▀▀▀█████▀▀▀

         ▄▄▄█████▄▄▄
      ▄███████████████▄
    ▄███████████████████▄
   ███████████████████████
  █████▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█████
 █████     ▄▄          █████
▐█████     ████▄▄      █████▌
▐█████     ████████    █████▌
▐█████     ████▀▀      █████▌
 █████     ▀▀          █████
  █████▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█████
   ███████████████████████
    ▀███████████████████▀
      ▀███████████████▀
         ▀▀▀█████▀▀▀

         ▄▄▄█████▄▄▄
      ▄███████████████▄
    ▄███████████████████▄
   ███████████████████████
  ████████████████▀▀▀ ▐████
 ███████████▀▀▀  ▄█▀  ██████
▐█████▀▀▀      ▄█▀    ██████▌
▐███▄▄▄    ▄▄██▀     ███████▌
▐████████ ███▀       ███████▌
 ████████▌█          ███████
  ████████ ▄▄██▄    ███████
   ███████████████▄ ██████
    ▀███████████████████▀
      ▀███████████████▀
         ▀▀▀█████▀▀▀
antonio8
Legendary
*
Online Online

Activity: 1386
Merit: 1000


View Profile
May 07, 2015, 03:54:51 PM
 #2757

I get low accepted % on lyra2. Around 84% on release 49.

I have fixed it now@git. The rejects where of the type low difficulty share. X11 also had this problem on some pools

Will compile and run it.

If you are going to leave your BTC on an exchange please send it to this address instead 1GH3ub3UUHbU5qDJW5u3E9jZ96ZEmzaXtG, I will at least use the money better than someone who steals it from the exchange. Thanks Wink
sp_ (OP)
Legendary
*
Offline Offline

Activity: 2912
Merit: 1087

Team Black developer


View Profile
May 07, 2015, 04:52:32 PM
 #2758

I have fixed the stats for the -g switch. The miner show lower output like we have observed on the pools.
Klaus_t has introduced cudastreams in his fork, I am trying it out to see if it improves the thread perfomance.

Team Black Miner (ETHB3 ETH ETC VTC KAWPOW FIROPOW MEOWPOW + dual mining + tripple mining.. https://github.com/sp-hash/TeamBlackMiner
CapnBDL
Hero Member
*****
Offline Offline

Activity: 1064
Merit: 500


MOBU


View Profile WWW
May 07, 2015, 05:01:26 PM
Last edit: May 07, 2015, 05:54:57 PM by CapnBDL
 #2759

Ahhh ha! Got it to do this again. I've been getting disconnected from the pool and would like to know if there is a problem or a workaround to it. I have a single 750Ti card running a basic .bat file. Just the pool with the algo & " -g 2 --cpu-priority 3" switches. I 'sometimes' get this error;

Stratum connection failed: Failed to connect to poolX.com port XXXX: Connection refused
...terminating workio thread



of course the Xs are not really there...but ya get the meaning.
Is this a problem on my end, pool side or a coding issue? This has never been an issue, in the past. Very much appreciated!

Thank You for all the hard work!

Happy mining!!

edit: Oh crap.....running the early D/L of release49, CUDA6.5, Win8.1...sorry, shoulda told ya that up top!

           ▄██▄
████▄    ▄██████▄    ▄████
██████▄ ▀████████▀ ▄██████
▐███████▄ ▀████▀ ▄███████▌
▐█████████▄ ▀▀ ▄█████████▌
 ████ ▀█████▄▄█████▀ ████
 ████ ▄ ▀████████▀ ▄ ████
 ▐███ ██▄ ▀████▀ ▄██ ███▌
 ▐███ ████▄ ▀▀ ▄████ ███▌
  ███ ██████▄▄██████ ███
  ███ ██████████████ ███
  ▐██ ██████████████ ██▌
  ▐██ ██████████████ ██▌
   ██ ██████████████ ██
       ▀██████████▀
         ▀██████▀
           ▀██▀
.M O B U.███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
   The Investment Bank of the Future  
The Security Token Protocol and Licensed Security Token Exchange
█▀




█▄
Facebook Medium
Whitepaper ANN
LinkedIn    Reddit
▀█




▄█

         ▄▄▄█████▄▄▄
      ▄███████████████▄
    ▄███████████████████▄
   ███████████████████████
  ████ ▀███████▀    ▀██████
 █████▌  ▀▀███        ▄█████
▐██████▄             ▐██████▌
▐█████▄               ██████▌
▐███████▄            ███████▌
 ███████▄          ▄████████
  ████████       ▄█████████
   █████▀   ▄▄▄███████████
    ▀███████████████████▀
      ▀███████████████▀
         ▀▀▀█████▀▀▀

         ▄▄▄█████▄▄▄
      ▄███████████████▄
    ▄███████████████████▄
   ███████████████████████
  █████▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█████
 █████     ▄▄          █████
▐█████     ████▄▄      █████▌
▐█████     ████████    █████▌
▐█████     ████▀▀      █████▌
 █████     ▀▀          █████
  █████▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█████
   ███████████████████████
    ▀███████████████████▀
      ▀███████████████▀
         ▀▀▀█████▀▀▀

         ▄▄▄█████▄▄▄
      ▄███████████████▄
    ▄███████████████████▄
   ███████████████████████
  ████████████████▀▀▀ ▐████
 ███████████▀▀▀  ▄█▀  ██████
▐█████▀▀▀      ▄█▀    ██████▌
▐███▄▄▄    ▄▄██▀     ███████▌
▐████████ ███▀       ███████▌
 ████████▌█          ███████
  ████████ ▄▄██▄    ███████
   ███████████████▄ ██████
    ▀███████████████████▀
      ▀███████████████▀
         ▀▀▀█████▀▀▀
sp_ (OP)
Legendary
*
Offline Offline

Activity: 2912
Merit: 1087

Team Black developer


View Profile
May 07, 2015, 06:23:06 PM
 #2760

On the fixed version on git we have a boost in quark with -i 22 -g 5. on the 750ti.

Seems to be +250khash per card or more.. The longer the miner is running the bether hashrate on the pool

Team Black Miner (ETHB3 ETH ETC VTC KAWPOW FIROPOW MEOWPOW + dual mining + tripple mining.. https://github.com/sp-hash/TeamBlackMiner
Pages: « 1 ... 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 ... 1240 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!