Bitcoin Forum
April 26, 2024, 03:05:26 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 [99] 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 ... 311 »
  Print  
Author Topic: [ANN][RIC] Riecoin: constellations POW *CPU* HARD FORK successful, world record  (Read 684940 times)
gatra (OP)
Hero Member
*****
Offline Offline

Activity: 583
Merit: 505


CTO @ Flixxo, Riecoin dev


View Profile WWW
March 06, 2014, 07:08:47 PM
Last edit: March 06, 2014, 07:49:59 PM by gatra
 #1961

I'd be more then willing to setup a p2pool, but I would need someone to write the PoW module for it, as i don't know C at all.  I would also be able to have a p2pool node list available after the PoW module is ready.

Right on excellent. I'm going to add you and surfer43 to the list then. The bracketed area is more about who we have that is capable of doing certain tasks and is willing. So if someone else comes along and wants to help or ask questions they know who to talk to. Even if you can't do everything needed, you're available to let people know what you can contribute and what is still needed.

Here (in Python):

Code:
def isPrime( n ):
    if pow( 2, n-1, n ) == 1:
        return True
    return False

def riecoinPoW( hash_bin, diff, nNonce ):
    base = 1 << 8
    for i in range(256):
        base = base << 1
        base = base | (hash_bin & 1)
        hash_bin = hash_bin >> 1
    trailingZeros = diff - 1 - 8 - 256
    if trailingZeros < 16 or trailingZeros > 20000:
        return 0
    base = base << trailingZeros
    
    base += nNonce
    primes = 0
    
    if (base % 210) != 97:
        return 0
    
    if not isPrime( base ):
        return primes
    primes = 1
    
    base += 4
    if isPrime( base ):
        primes+=1
    
    base += 2
    if isPrime( base ):
        primes+=1
    
    base += 4
    if isPrime( base ):
        primes+=1
    
    base += 2
    if isPrime( base ):
        primes+=1
    
    base += 4
    if isPrime( base ):
        primes+=1
      
    return primes

This is part of my attempt to implement stratum-mining.
Disclaimer: not tested!

hash_bin must be the hash of the header up to and including nTime (which is after nBits, not like in BTC! be careful with this: the block header is different. nTime is 64 bits. nOnce is 256 bits).
diff is the difficulty as a number (nBits uncompacted)

riecoinPoW returns the number of primes. If you want 4-tuples to be shares you must test that it returns 4 or more.

Best regards,
Gatra

edit: we should test that non-primes don't have small divisors. But since we are allowing any number (except the first of the tuple) to be composite, not only the last ones (as ypool does) this is less important. With the 210 test we are doing that test for divisors 2, 3, 5 and 7


           ▄▄▄██████████▄▄▄
       ▄▄██
██████████████████▄▄
     ▄█
█████▀████████████▀██████▄
   ▄█
█████████████████████████████▄
  ▄█
█████████▄█▀▀██████████████████▄
 ▄█
███████████▀██████▄▄█████▄███████▄
▄█
██████████▀██▄▄▄▄██▀▀▀▀▀███████████▄
█████████████▀▀██▀████████▀▀████████
█████████████▄█▀████████████████████
████████▀▀▀▀██▀▀▀▀██████████████████
▀█
██████▀▀▀▀██▀▀▀▀███████████████████▀
 ▀█
███████▄████▄▄███████████████████▀
  ▀█
███████████████████████████████▀
   ▀█
█████████████████████████████▀
     ▀█
█████▄████████████▄██████▀
       ▀▀██
██████████████████▀▀
           ▀▀▀██████████▀▀▀
riecoin       ▄▄█████████▄▄
    ▄██▀▀         ▀▀██▄
  ▄██▀              ▀██▄
 ▄██     ██▄▄          ██▄
▄██      █████▄▄        ██▄
██       ████████▄▄      ██
██       ███████████▄    ██
██       ██████████▀     ██
▀██      ███████▀       ██▀
 ▀██     ████▀         ██▀
  ▀██▄   █▀          ▄██▀
    ▀██▄▄         ▄▄██▀
       ▀▀█████████▀▀
.flixxo   
1714100726
Hero Member
*
Offline Offline

Posts: 1714100726

View Profile Personal Message (Offline)

Ignore
1714100726
Reply with quote  #2

1714100726
Report to moderator
In order to achieve higher forum ranks, you need both activity points and merit points.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714100726
Hero Member
*
Offline Offline

Posts: 1714100726

View Profile Personal Message (Offline)

Ignore
1714100726
Reply with quote  #2

1714100726
Report to moderator
1714100726
Hero Member
*
Offline Offline

Posts: 1714100726

View Profile Personal Message (Offline)

Ignore
1714100726
Reply with quote  #2

1714100726
Report to moderator
1714100726
Hero Member
*
Offline Offline

Posts: 1714100726

View Profile Personal Message (Offline)

Ignore
1714100726
Reply with quote  #2

1714100726
Report to moderator
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
March 06, 2014, 08:42:14 PM
 #1962


This is part of my attempt to implement stratum-mining.

Cool! I'll host a pool if you can implement it.
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
March 06, 2014, 10:01:48 PM
 #1963

Mintpal charges a 0.002 withdrawal fee and they don't even pay a transaction fee...  Roll Eyes
azhago
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
March 07, 2014, 11:21:42 AM
 #1964

RIECOIN @ 0.0013 on mintpal !

strong coin Smiley

Jilixi
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile WWW
March 07, 2014, 11:26:39 AM
 #1965

RIECOIN @ 0.0013 on mintpal !

strong coin Smiley
¨
I came in here to see what was going on by the 200% increase and your argument is invalid, just because someone is selling for that doesnt mean that is the value, there is buy support at 0.0006

Owner of BlackCoin Store - BlackCoin Store
BC: BNatbck1SDJebHRMQemkUEFPVZR9uLHLrM
BTC: 161EcdmbgmxpZMk2ssZCjGQqB6gypduu97
deadthings
Sr. Member
****
Offline Offline

Activity: 1106
Merit: 255


Betking.io - Best Bitcoin Casino


View Profile
March 07, 2014, 11:29:57 AM
 #1966

Just a brief pump n' dump by daytraders. The realization of Riecoin's actual value is still quite a ways off.

xkmo
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
March 07, 2014, 11:43:29 AM
 #1967

Guys!! BTC38 is going to list Riecoin tonight!

See their notice: http://www.btc38.com/general/916.html

Edit: stop selling now.
myagui
Legendary
*
Offline Offline

Activity: 1154
Merit: 1001



View Profile
March 07, 2014, 12:11:58 PM
 #1968

Wondering if there's any progress on a GPU miner Gatra?
I've been around since the launch, but with very limited CPU power, all I could manage was to mine some 5 RIC with YPool, but have since stopped as I'm not happy to see so much of the network hash rate on a single pool. It looks to me that the only way to reach "record breaking" numbers, is by a) largely expanding the network hash rate and b) achieving greater mining efficiency.

I do have a few GPUs that I could put to use for RIC, all Nvidia, some of the 750 variety which should have boosted performance with large integers (not that I know anything about these details)...
DGA, are you focusing entirely on CPU miner optimizations for the time being?

Thanks for any feedback guys. Really want to participate on RIC given the *real world value* this coin brings to the table, but just don't seem to have the resources at the moment...
Cheers,
Myagui

beatfried
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
March 07, 2014, 01:00:35 PM
 #1969

Guys!! BTC38 is going to list Riecoin tonight!

See their notice: http://www.btc38.com/general/916.html

Edit: stop selling now.

oh yeah... i totally can read that.
MaddestScientist
Member
**
Offline Offline

Activity: 78
Merit: 12


View Profile
March 07, 2014, 01:05:32 PM
 #1970

This is a BIG news!

First Target: 0.005 BTC  Smiley
Guys!! BTC38 is going to list Riecoin tonight!

See their notice: http://www.btc38.com/general/916.html

Edit: stop selling now.
trny
Newbie
*
Offline Offline

Activity: 48
Merit: 0


View Profile
March 07, 2014, 01:15:17 PM
 #1971

Here it is: http://www.btc38.com/trade.html?btc38_trade_coin_name=ric

Guys!! BTC38 is going to list Riecoin tonight!

See their notice: http://www.btc38.com/general/916.html

Edit: stop selling now.
maxsolnc
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


DTC unofficial team


View Profile WWW
March 07, 2014, 01:18:34 PM
 #1972

Here it is: http://www.btc38.com/trade.html?btc38_trade_coin_name=ric

Guys!! BTC38 is going to list Riecoin tonight!

See their notice: http://www.btc38.com/general/916.html

Edit: stop selling now.
can RIC reach 20+ CNY fast? Smiley

DTC: DMcKNp47fNtgM7sritK9GfJEQ1DzME5nwk
BTC: 1FgUGra685ZwkrX5VnRvfaYp4bHJhC7x4H
steban
Full Member
***
Offline Offline

Activity: 168
Merit: 100



View Profile
March 07, 2014, 01:21:33 PM
 #1973

Here it is: http://www.btc38.com/trade.html?btc38_trade_coin_name=ric

Guys!! BTC38 is going to list Riecoin tonight!

See their notice: http://www.btc38.com/general/916.html

Edit: stop selling now.
can RIC reach 20+ CNY fast? Smiley

It may actually overtake Peercoin.
1976
Member
**
Offline Offline

Activity: 82
Merit: 10


View Profile
March 07, 2014, 01:30:49 PM
 #1974

Congratulations! Cheesy
steban
Full Member
***
Offline Offline

Activity: 168
Merit: 100



View Profile
March 07, 2014, 01:42:36 PM
 #1975

Here is a google translation:


Dear Customer Hello everyone: the long-awaited era finally planned new currency trading on the line. This time we bring you a three-currency transaction, the transaction will be opened at around 21:00 pm , they are: 1, Riemann currency RIC RIC stands for riecoin, Chinese coins called Riemann, released on February 11 Day, is a fully-fledged quality new currency. Currently, the number of miners in foreign currency-known mineral pool ypool more than 20,000, has the line in foreign mintpal and Poloniex and other trading platforms. RIC very little promotion in the country, but in foreign countries are still relatively popular, RIC and XPM somewhat similar, is performed by calculating the scientific mining primes way, thus avoiding wasted mining operator force, however, RIC's algorithm XPM carried out on the basis of certain improvements, said to be more efficient than xpm find prime numbers. RIC is the total amount of 84 million, one block every 2.5 minutes outputs, each block contains 50 RIC as a bonus, this figure will be halved every four years (equivalent to the basic parameters LTC), which also led to the pre-mining difficulty RIC is very large, less production. Currently, the price of each RIC on the foreign exchange market is about 1.9 yuan RMB. Bit era Riemann establish a dedicated investment currency exchange group: 376 123 691 Welcome to 2, Billy currency BIL this currency for all of us, may be more familiar with some, Billy coins released in December 2013, can be considered a second new currency . Billy currency English called BillionCoin, meaning that ten billion dollars, as the name suggests, its output is 10 billion, and Billy currency initially blocks, each block randomly generated from 1 to 100,000 BIL, production will be about 69 days halved, block production the other day, BIL's just down to the 1 to 50000 BIL. At present, BIL has a trading platform in support of domestic and foreign trade, the current price of each BIL approximately 0.0006 yuan. Billy bit era to establish a dedicated investment currency exchange group: 246 052 868 Welcome to 3, gold coins YBC gold coins are the first domestic cottage currency in the true sense, if only to compare and domestic currency, which has the largest number of miners, the highest market turnover, while, YBC is the first export trading platform for foreign currency-made cottage (if not already demise of CNC words). Currently, gold coins YBC in the country has developed a long ecological chain, including ingot chess game platform, gold bullions coins Stock Exchange as well as a lot of businesses to accept. Gold coins without a clear production ceiling, but according to the algorithm, gold coins yield about four years in four million or so, the 10-year yield of about 10 million or so, at present, YBC in C network, gold exchange, BTCTRADE other domestic can be traded outside the platform, each YBC cost about 15 yuan. Bit era gold coins to establish a dedicated investment exchange group: 370124137 welcome to join us on this currency long overdue, partly because the cottage currency market is chaotic, on the other hand, we also spent a lot of time in the currency consideration the screening. In addition to the three currencies of our on-line, and other popular emerging currencies such as particle coins, coins molecules, Aurora coins, mint coins, the Federal Reserve currency, QQ coins, black coins, currency, and so dark, and ultimately, we believe that these three combination of a currency, more in line with our distribution has always been a reasonable price, the combination of the old and new currency coins habits. I hope you will like it. Finally, we must remind everyone that the virtual currency investment risk is great, please participate, as appropriate. Due to relatively thin market funds, and the times they deliberately released simultaneously three currencies, aimed at weakening the hype fluctuations on the line at the beginning of the new currency, please be sure to maintain peace of mind to participate, thank you.
steban
Full Member
***
Offline Offline

Activity: 168
Merit: 100



View Profile
March 07, 2014, 01:50:14 PM
 #1976

I think Cryptsy wont wait to long to add Riecoin, the volume is increasing dramatically.   Shocked
remistevens
Hero Member
*****
Offline Offline

Activity: 630
Merit: 501


View Profile
March 07, 2014, 02:08:47 PM
 #1977

Probably lots of people on here today, so I'll ask again. . . Pumps are fun, but lets create lasting value for Riecoin - help out with anything below and we'll gladly add you to the list with thanks!

Things You Could Help With Right Now

- get more pools operating
- create open source stratum-mining (Guru Gatra working on)
- finish block explorer (3v1l working on)   
- create p2pool mining  (ThePeePs working on)

- help get listed on cryptsy (vote and share the link to tell everyone!)
- help get listed on BTER (vote and share the link to tell everyone!)   
- have the website redesigned (northranger79510 working on)
- post details about Riecoin in math focused forums
- post details about Riecoin in crypto focused forums
- create an Android wallet
- create a Mac wallet
- create GPU miner
- create a way for people to view the resultant data from Riecoin
- create a live stat "speedometer" that redlines at world record breaking primes and explodes
- contact notable mathematicians/departments worldwide and see if they'd be interested in endorsing or commenting on Riecoin
- make a press release about RIC to be sent to math/science based publications
- compile email list of math and science publication email addresses for press release submission
- create press release for potential merchants
- compile email list of potential merchants (math and science focus first)
- create a faucet (percentage by donation so its always running)
- think of a fun giveaway and ask for donors to make it happen
- create Tor pages and presence
- blog about Riecoin
- finish Wikipedia entry
- start a foundation for bounties and contests
- create paper wallet generator (surfer43 working on)
- create and maintain a list of what needs to be done (remi stevens working on)
steban
Full Member
***
Offline Offline

Activity: 168
Merit: 100



View Profile
March 07, 2014, 02:11:59 PM
 #1978

Probably lots of people on here today, so I'll ask again. . . Pumps are fun, but lets create lasting value for Riecoin - help out with anything below and we'll gladly add you to the list with thanks!

Things You Could Help With Right Now

- get more pools operating
- create open source stratum-mining (Guru Gatra working on)
- finish block explorer (3v1l working on)   
- create p2pool mining  (ThePeePs working on)

- help get listed on cryptsy (vote and share the link to tell everyone!)
- help get listed on BTER (vote and share the link to tell everyone!)   
- have the website redesigned (northranger79510 working on)
- post details about Riecoin in math focused forums
- post details about Riecoin in crypto focused forums
- create an Android wallet
- create a Mac wallet
- create GPU miner
- create a way for people to view the resultant data from Riecoin
- create a live stat "speedometer" that redlines at world record breaking primes and explodes
- contact notable mathematicians/departments worldwide and see if they'd be interested in endorsing or commenting on Riecoin
- make a press release about RIC to be sent to math/science based publications
- compile email list of math and science publication email addresses for press release submission
- create press release for potential merchants
- compile email list of potential merchants (math and science focus first)
- create a faucet (percentage by donation so its always running)
- think of a fun giveaway and ask for donors to make it happen
- create Tor pages and presence
- blog about Riecoin
- finish Wikipedia entry
- start a foundation for bounties and contests
- create paper wallet generator (surfer43 working on)
- create and maintain a list of what needs to be done (remi stevens working on)



That was not a pump!

http://www.btc38.com/general/916.html

translates to:

Dear Customer Hello everyone: the long-awaited era finally planned new currency trading on the line. This time we bring you a three-currency transaction, the transaction will be opened at around 21:00 pm , they are: 1, Riemann currency RIC RIC stands for riecoin, Chinese coins called Riemann, released on February 11 Day, is a fully-fledged quality new currency. Currently, the number of miners in foreign currency-known mineral pool ypool more than 20,000, has the line in foreign mintpal and Poloniex and other trading platforms. RIC very little promotion in the country, but in foreign countries are still relatively popular, RIC and XPM somewhat similar, is performed by calculating the scientific mining primes way, thus avoiding wasted mining operator force, however, RIC's algorithm XPM carried out on the basis of certain improvements, said to be more efficient than xpm find prime numbers. RIC is the total amount of 84 million, one block every 2.5 minutes outputs, each block contains 50 RIC as a bonus, this figure will be halved every four years (equivalent to the basic parameters LTC), which also led to the pre-mining difficulty RIC is very large, less production. Currently, the price of each RIC on the foreign exchange market is about 1.9 yuan RMB. Bit era Riemann establish a dedicated investment currency exchange group: 376 123 691 Welcome to 2, Billy currency BIL this currency for all of us, may be more familiar with some, Billy coins released in December 2013, can be considered a second new currency . Billy currency English called BillionCoin, meaning that ten billion dollars, as the name suggests, its output is 10 billion, and Billy currency initially blocks, each block randomly generated from 1 to 100,000 BIL, production will be about 69 days halved, block production the other day, BIL's just down to the 1 to 50000 BIL. At present, BIL has a trading platform in support of domestic and foreign trade, the current price of each BIL approximately 0.0006 yuan. Billy bit era to establish a dedicated investment currency exchange group: 246 052 868 Welcome to 3, gold coins YBC gold coins are the first domestic cottage currency in the true sense, if only to compare and domestic currency, which has the largest number of miners, the highest market turnover, while, YBC is the first export trading platform for foreign currency-made cottage (if not already demise of CNC words). Currently, gold coins YBC in the country has developed a long ecological chain, including ingot chess game platform, gold bullions coins Stock Exchange as well as a lot of businesses to accept. Gold coins without a clear production ceiling, but according to the algorithm, gold coins yield about four years in four million or so, the 10-year yield of about 10 million or so, at present, YBC in C network, gold exchange, BTCTRADE other domestic can be traded outside the platform, each YBC cost about 15 yuan. Bit era gold coins to establish a dedicated investment exchange group: 370124137 welcome to join us on this currency long overdue, partly because the cottage currency market is chaotic, on the other hand, we also spent a lot of time in the currency consideration the screening. In addition to the three currencies of our on-line, and other popular emerging currencies such as particle coins, coins molecules, Aurora coins, mint coins, the Federal Reserve currency, QQ coins, black coins, currency, and so dark, and ultimately, we believe that these three combination of a currency, more in line with our distribution has always been a reasonable price, the combination of the old and new currency coins habits. I hope you will like it. Finally, we must remind everyone that the virtual currency investment risk is great, please participate, as appropriate. Due to relatively thin market funds, and the times they deliberately released simultaneously three currencies, aimed at weakening the hype fluctuations on the line at the beginning of the new currency, please be sure to maintain peace of mind to participate, thank you.
remistevens
Hero Member
*****
Offline Offline

Activity: 630
Merit: 501


View Profile
March 07, 2014, 02:12:43 PM
 #1979

RIC the video up over 10000 views now! Might be the most popular video I've ever produced.
remistevens
Hero Member
*****
Offline Offline

Activity: 630
Merit: 501


View Profile
March 07, 2014, 02:14:45 PM
 #1980

Probably lots of people on here today, so I'll ask again. . . Pumps are fun, but lets create lasting value for Riecoin - help out with anything below and we'll gladly add you to the list with thanks!

Things You Could Help With Right Now

- get more pools operating
- create open source stratum-mining (Guru Gatra working on)
- finish block explorer (3v1l working on)   
- create p2pool mining  (ThePeePs working on)

- help get listed on cryptsy (vote and share the link to tell everyone!)
- help get listed on BTER (vote and share the link to tell everyone!)   
- have the website redesigned (northranger79510 working on)
- post details about Riecoin in math focused forums
- post details about Riecoin in crypto focused forums
- create an Android wallet
- create a Mac wallet
- create GPU miner
- create a way for people to view the resultant data from Riecoin
- create a live stat "speedometer" that redlines at world record breaking primes and explodes
- contact notable mathematicians/departments worldwide and see if they'd be interested in endorsing or commenting on Riecoin
- make a press release about RIC to be sent to math/science based publications
- compile email list of math and science publication email addresses for press release submission
- create press release for potential merchants
- compile email list of potential merchants (math and science focus first)
- create a faucet (percentage by donation so its always running)
- think of a fun giveaway and ask for donors to make it happen
- create Tor pages and presence
- blog about Riecoin
- finish Wikipedia entry
- start a foundation for bounties and contests
- create paper wallet generator (surfer43 working on)
- create and maintain a list of what needs to be done (remi stevens working on)



That was not a pump!

http://www.btc38.com/general/916.html

translates to:

Dear Customer Hello everyone: the long-awaited era finally planned new currency trading on the line. This time we bring you a three-currency transaction, the transaction will be opened at around 21:00 pm , they are: 1, Riemann currency RIC RIC stands for riecoin, Chinese coins called Riemann, released on February 11 Day, is a fully-fledged quality new currency. Currently, the number of miners in foreign currency-known mineral pool ypool more than 20,000, has the line in foreign mintpal and Poloniex and other trading platforms. RIC very little promotion in the country, but in foreign countries are still relatively popular, RIC and XPM somewhat similar, is performed by calculating the scientific mining primes way, thus avoiding wasted mining operator force, however, RIC's algorithm XPM carried out on the basis of certain improvements, said to be more efficient than xpm find prime numbers. RIC is the total amount of 84 million, one block every 2.5 minutes outputs, each block contains 50 RIC as a bonus, this figure will be halved every four years (equivalent to the basic parameters LTC), which also led to the pre-mining difficulty RIC is very large, less production. Currently, the price of each RIC on the foreign exchange market is about 1.9 yuan RMB. Bit era Riemann establish a dedicated investment currency exchange group: 376 123 691 Welcome to 2, Billy currency BIL this currency for all of us, may be more familiar with some, Billy coins released in December 2013, can be considered a second new currency . Billy currency English called BillionCoin, meaning that ten billion dollars, as the name suggests, its output is 10 billion, and Billy currency initially blocks, each block randomly generated from 1 to 100,000 BIL, production will be about 69 days halved, block production the other day, BIL's just down to the 1 to 50000 BIL. At present, BIL has a trading platform in support of domestic and foreign trade, the current price of each BIL approximately 0.0006 yuan. Billy bit era to establish a dedicated investment currency exchange group: 246 052 868 Welcome to 3, gold coins YBC gold coins are the first domestic cottage currency in the true sense, if only to compare and domestic currency, which has the largest number of miners, the highest market turnover, while, YBC is the first export trading platform for foreign currency-made cottage (if not already demise of CNC words). Currently, gold coins YBC in the country has developed a long ecological chain, including ingot chess game platform, gold bullions coins Stock Exchange as well as a lot of businesses to accept. Gold coins without a clear production ceiling, but according to the algorithm, gold coins yield about four years in four million or so, the 10-year yield of about 10 million or so, at present, YBC in C network, gold exchange, BTCTRADE other domestic can be traded outside the platform, each YBC cost about 15 yuan. Bit era gold coins to establish a dedicated investment exchange group: 370124137 welcome to join us on this currency long overdue, partly because the cottage currency market is chaotic, on the other hand, we also spent a lot of time in the currency consideration the screening. In addition to the three currencies of our on-line, and other popular emerging currencies such as particle coins, coins molecules, Aurora coins, mint coins, the Federal Reserve currency, QQ coins, black coins, currency, and so dark, and ultimately, we believe that these three combination of a currency, more in line with our distribution has always been a reasonable price, the combination of the old and new currency coins habits. I hope you will like it. Finally, we must remind everyone that the virtual currency investment risk is great, please participate, as appropriate. Due to relatively thin market funds, and the times they deliberately released simultaneously three currencies, aimed at weakening the hype fluctuations on the line at the beginning of the new currency, please be sure to maintain peace of mind to participate, thank you.


Ah, . . .Well that is good news then! . . .But still, would love to see my list filled out some more.
Pages: « 1 ... 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 [99] 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 ... 311 »
  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!