Bitcoin Forum
May 14, 2024, 02:17:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 [54] 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 ... 350 »
  Print  
Author Topic: [ANN] KRAKEN.COM - Exchange with USD EUR GBP JPY CAD BTC LTC XRP NMC XDG STR ETH  (Read 628612 times)
Avalaxy
Full Member
***
Offline Offline

Activity: 149
Merit: 100


View Profile
January 28, 2014, 01:59:40 PM
 #1061

Today Kraken was the #2 in EUR volume Cheesy https://bitcoinaverage.com/markets.htm#EUR

Volume is still way too low though.

BTC: 1BvzHyU2WnxtVYbUZYdQ6RExwLUZTfBN1K
LTC: LfoPTEEyhdRHn8Sob8tu1iLz8AjVpvAXa4
1715653041
Hero Member
*
Offline Offline

Posts: 1715653041

View Profile Personal Message (Offline)

Ignore
1715653041
Reply with quote  #2

1715653041
Report to moderator
1715653041
Hero Member
*
Offline Offline

Posts: 1715653041

View Profile Personal Message (Offline)

Ignore
1715653041
Reply with quote  #2

1715653041
Report to moderator
1715653041
Hero Member
*
Offline Offline

Posts: 1715653041

View Profile Personal Message (Offline)

Ignore
1715653041
Reply with quote  #2

1715653041
Report to moderator
The grue lurks in the darkest places of the earth. Its favorite diet is adventurers, but its insatiable appetite is tempered by its fear of light. No grue has ever been seen by the light of day, and few have survived its fearsome jaws to tell the tale.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
tbosman
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
January 28, 2014, 02:18:43 PM
 #1062

no update about the order book bug yet?

We think we've fixed all the issues people were seeing, and all those fixes are now live. So please let us know if you see anything that still doesn't look right.

There were a variety of cases, but all of them were caused by a bid > ask condition. For example, suppose the book contains these orders:

sell 1 lot @ 130
buy 0.5 lot @ 127
buy 0.5 lot @ 120
sell 0.5 lot @ trailing stop 126, limit 100
buy 1 lot @ 110

So current ask is 130 and bid is 127.

A new order is placed to buy sell 1 lot at 125.  The order picks up the 0.5 lots @ 127 and then the rest of it goes on the book as 0.5 lot @ 125. Now the current ask is 125 and bid is 120.

The 120 bid triggers the trailing stop @ 126 and puts in a limit sell order at 100.  Now the bid is 120 and ask is 100 (bid > ask condition). If the ask side initiates the trade, the trade will be done at $120. If the bid side initiates the trade, the trade will be done at $100 (which appears to have skipped over the buy @ 110).

So those of you who thought you were being skipped over, you weren't. It's just that someone with a higher bid in the book got filled at a price below your offer. Of course, the converse could happen too, where someone on the ask side might appear to have been skipped over when in fact someone with a lower ask just got filled at a higher price.

In one sense, this isn't really a bug, because whichever side initiates is supposed to get the best offer on the book from their perspective. So if the buy side initiates, they should get the lowest ask on the book - i.e. $100 in the case above. It's just that when bid > ask, this normally sound principle leads to unexpected price action that doesn't look right. And we'd probably be answering support tickets and questions on social media forever if it wasn't fixed.  In the scenario above, the fix is that the trade will execute at $120 regardless of which side initiates the trade. That seemed the best solution, and will avoid the strange price action, but it also means that the side initiating the trade under this bid > ask condition isn't always going to get the best offer on the book (as they normally would when ask > bid).  
I don't really follow your explanation. How do you determine the side which initiates the trade? In this case the bid of 120 was there before the stop was triggered, so the sell order came last and is the initiating side right? I don't see how this ever could lead to a scenario where the trades executing at a price beyond the best bid/ask.

This is how it works now, but not before. Before the timestamp on an order was just the time of order entry, and this timestamp carried over to orders that triggered from advanced orders. Now the timestamp is determined by the time the order is created, so an order that triggers from an advanced order is given a new timestamp. Apparently in the original design of the trade engine, triggered orders got a new timestamp, but at some point this was changed to the timestamp just being the time of order entry because that was simpler and it was thought that it wouldn't be a problem.

Suppose the orders in the example are placed in the following sequence:

sell 1 lot @ 130
sell 0.5 lot @ trailing stop 126, limit 100
buy 0.5 lot @ 120
buy 0.5 lot @ 127
buy 1 lot @ 110
sell 1 lot at 125

As you say, the newest order initiates, but before this meant that the buy order @ 120 would initiate because it was considered newest and this would result in a fill at 100. Apparently there was also an issue with sorting that sometimes caused the older order to initiate (resulting in a fill at 120), but this has been fixed as well.

With both of the fixes, the newest order always initiates and the age of an order is determined by when it is created (so an order that triggers from another gets a new timestamp). In the example, this means that the triggered sell @ 100 will always initiates and the fill will be at 120.

I'm not sure when we'll have the time to do this, but at some point we'd like to write up a document explaining all the rules of the trade engine so the technical details of how trade matching works exactly are available. Some exchanges have done this for basic order types, but I'm not sure any exchange has ever done it to include the advanced orders (but let me know if you know of one).    
Ok that explains a lot. Regarding documentation, i don't know of any bitcoin exchanges having advanced orders like kraken at all, are there any? Strangely enough i couldn't find the matching rules for advanced orders on any regular exchange either, although they must be publicized somewhere.

I do have a few questions about the matching if you can answer them yourself, if not i can wait for the document.
- How is the price protection calculated for market orders?
- Is order matching atomic? I.e. if a orders crosses the market, will it match orders as far as possible before anything else happens, or is it possible for incoming/triggered orders to be added as the order 'walks' the book.
- I understand that any triggered order will be handled as a new limit/market order with a fresh timestamp. So this means that if multiple orders are triggered by the same trade/order being executed, they will arrive with the stame timestamp right? How is execution priority handled in that case?
coinpr0n
Hero Member
*****
Offline Offline

Activity: 910
Merit: 1000



View Profile
January 28, 2014, 02:35:19 PM
 #1063

Same-day deposits and same-day withdrawals.. Everything works great! I suspect most of the people who have problem this actually has to do with their bank. My initial deposit a few months ago took ~2 weeks (the teller at the bank looked at me funny when I told him to send it via SEPA). Since then, I have switched to another bank, more modern and with proper online banking. Now everything works smoothly.

OleOle
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


Are you like these guys?


View Profile
January 28, 2014, 02:39:22 PM
 #1064

Hi, is it possible to convert a USD balance (resulting from an XBT/USD trade) into EUR at the prevailing exchange rate?

Thanks!



No, it's not.

What is possible though is sell USD to XBT, then with the XBT buy EUR.

Check Bloomberg, Reuters, XE.com or another reputable site to get the latest fx rates and see if doing USD to XBT to EUR gives a commensurate exchange rate.

Good luck!

Smiley

It's not even close - first, the XBT/USD volumes are too low. Secondly, because withdrawing USD takes a long time and seems to be unreliable, there's a Gox-like premium for buying XBT with USD.

If Kraken were to use their bank to convert USD to EUR (the way bitstamp does, but in the other direction), they would benefit from increased trade volume from all the USD deposits.




Well, let's have a look, shall we?

01-29-14 01:33:04 +11:00
Last Updated: 6 seconds ago


USD$806.08009 = 1 XBT.

1 XBT = 588.06182 Euros


www.xe.com

USD$806.08009 = 589.191 Euros

That's interesting, it does look quite close.

Smiley


finder_keeper
Jr. Member
*
Offline Offline

Activity: 58
Merit: 10


View Profile
January 28, 2014, 04:05:21 PM
 #1065

Hi, is it possible to convert a USD balance (resulting from an XBT/USD trade) into EUR at the prevailing exchange rate?

Thanks!



No, it's not.

What is possible though is sell USD to XBT, then with the XBT buy EUR.

Check Bloomberg, Reuters, XE.com or another reputable site to get the latest fx rates and see if doing USD to XBT to EUR gives a commensurate exchange rate.

Good luck!

Smiley

It's not even close - first, the XBT/USD volumes are too low. Secondly, because withdrawing USD takes a long time and seems to be unreliable, there's a Gox-like premium for buying XBT with USD.

If Kraken were to use their bank to convert USD to EUR (the way bitstamp does, but in the other direction), they would benefit from increased trade volume from all the USD deposits.



Well, let's have a look, shall we?

01-29-14 01:33:04 +11:00
Last Updated: 6 seconds ago


USD$806.08009 = 1 XBT.

1 XBT = 588.06182 Euros


www.xe.com

USD$806.08009 = 589.191 Euros

That's interesting, it does look quite close.

Smiley



Are you looking at the correct buy/sell sides? Right now, buying 1 BTC will cost USD 829.99 (the XBT/USD buy/sell spread is 1.5%). This equals EUR 607.

Selling that 1 BTC will net just EUR 581.

This changes constantly, but clearly the difference is big - 26 EUR, which is 4.37% over the average. And that's not even counting commissions...

12HYShbhrFH1eyrmXc3zMRSFFnkgaVstcg
Avalaxy
Full Member
***
Offline Offline

Activity: 149
Merit: 100


View Profile
January 28, 2014, 05:34:10 PM
 #1066

Over the last few days, the story about the latest update of my WP8 Kraken app spread like a wildfire on twitter and the internet in general Smiley A lot of websites wrote a story about it, here are a couple of important sites:

Tweakers.net (largest Dutch/Belgian tech website, around 600.000 registered users): http://tweakers.net/nieuws/93916/microsoft-laat-eerste-bitcoin-app-toe-op-windows-phone-platform.html
WMPowerUser (second largest Windows Phone community website): http://wmpoweruser.com/kraken-is-the-first-bitcoin-trading-app-for-windows-phone/
Frontpage of /r/bitcoin: http://www.reddit.com/r/Bitcoin/comments/1w4v3x/microsoft_allows_bitcoin_trading_app_on_windows/

A lot of niche sites wrote about it as well. To name a few: CoinCourant, CoinReporter, TechieNews, BitcoinExaminer, etc.

I've seen a massive increase in downloads over the last few days. Keep in mind that Kraken is growing with ~2000 users per day (December 2013), and doubling their use base every month (source). The Windows Phone 8 platform is also seeing a consistent growth every month, it outsells iPhone in 24 countries (source). In a lot of European countries, Windows Phone is the second largest OS. This coincides with Kraken's userbase which consists of 75% EU customers, 10% US customers and 15% customers from other countries (see angel.co source). Right now, Kraken is the #2 bitcoin exchange when it comes to XBT/EUR volume (source).

BTC: 1BvzHyU2WnxtVYbUZYdQ6RExwLUZTfBN1K
LTC: LfoPTEEyhdRHn8Sob8tu1iLz8AjVpvAXa4
ledmaniak
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
January 28, 2014, 06:18:26 PM
 #1067

Nice! How many downloads did you get so far? Can you see the amount and frequency of users using your app?

It seems like your app is getting a LOT of attention on twitter and big tech sites as people are discovering it. Random keywords on twitter also show more and more results: https://twitter.com/search?q=kraken%20app&src=typd&f=realtime Shocked

Good news for both Kraken and you! Smiley

This seems like a really great opportunity for kraken to support promotion of the app(or adopt it?!) and use all the free attention to promote their services and the fact that they are the first exchange with a mobile trading app!.

Keep up the good work! Grin

Bitcoin: 1Cxi8BLvScSm1mW6kjb5MNeJZPrvAiYL6B
Litecoin: LLmjtrrq1ZeD51NSUJ8VanuQduW8Ma3jrs
C. Bergmann
Hero Member
*****
Offline Offline

Activity: 803
Merit: 500



View Profile
January 28, 2014, 07:06:37 PM
 #1068

Right now, Kraken is the #2 bitcoin exchange when it comes to XBT/EUR volume (source).

No. Bitcoin.de is the second largest exchanges for Euro. Source: bitcoincharts.com/markets. More than three times the monthly volume kraken has.


▄▄████▄▄
▄████████████▄
▄▄█████▀▀    ▀▀█████▄▄
▄█████▀▀            ▀▀█████▄
▄███▀       ▄████▄       ▀███▄
███      ▄██████████▄      ███
███    ▄██████████████▄    ███
███    ████████████████    ███
███    ████████████████    ███
███    ████████████████    ███
███    ▀██████████████▀    ███
███      ▀██████████▀      ███
▀███▄       ▀████▀       ▄███▀
▀█████▄▄            ▄▄█████▀
▀▀█████▄▄    ▄▄█████▀▀
▀████████████▀
▀▀████▀▀
Gabro███
███
███
███
███
███
███
███
███
███
███
███
███
███
███
███
███
███
███
███
███
███
███
███
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
WHITEPAPER
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
TOKEN SALES
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
Avalaxy
Full Member
***
Offline Offline

Activity: 149
Merit: 100


View Profile
January 28, 2014, 07:12:04 PM
 #1069

Right now, Kraken is the #2 bitcoin exchange when it comes to XBT/EUR volume (source).

No. Bitcoin.de is the second largest exchanges for Euro. Source: bitcoincharts.com/markets. More than three times the monthly volume kraken has.

Erhhh, did you look at the last column "volume"? http://bitcoincharts.com/markets/currency/EUR.html

Bitcoin.de: 591.77
Kraken: 836.00

BTC: 1BvzHyU2WnxtVYbUZYdQ6RExwLUZTfBN1K
LTC: LfoPTEEyhdRHn8Sob8tu1iLz8AjVpvAXa4
garan
Newbie
*
Offline Offline

Activity: 44
Merit: 0


View Profile
January 28, 2014, 07:26:40 PM
 #1070

Right now, Kraken is the #2 bitcoin exchange when it comes to XBT/EUR volume (source).

No. Bitcoin.de is the second largest exchanges for Euro. Source: bitcoincharts.com/markets. More than three times the monthly volume kraken has.

I'm glad to see bitcoincharts.com added Kraken data.
However, you should not look at the monthly volume because Kraken was apparently added the Jan 9th (http://bitcoincharts.com/markets/krakenEUR.html).

From Jan 9th up to Jan 27th (both inclusive) I have found the following volume:
Code:
MtGox      15,491
Bitcoin.de  8,891
Kraken      7,149
BTC-E       5,996

@Avalaxy, he's talking about monthly volume...
Serpens66
Legendary
*
Offline Offline

Activity: 2926
Merit: 1131



View Profile
January 28, 2014, 10:12:59 PM
 #1071

...
and you could have said all this in 1-2 sentences without insulting him.

Mit Cointracking (10% Rabatt) behältst du die Übersicht über all deine Trades und Gewinne. Sogar ein Tool für die Steuer ist dabei Wink                          
Great Freeware Game: Clonk Rage
binance.com hat nun auch SEPA und EUR Paare! Mit dem RefLink bekommst du 5% Rabatt auf die Tradinggebühren!
finder_keeper
Jr. Member
*
Offline Offline

Activity: 58
Merit: 10


View Profile
January 29, 2014, 07:55:33 AM
 #1072

...
and you could have said all this in 1-2 sentences without insulting him.

That's ok, I'm not insulted, just impressed by the time he/she chose to take to write this diatribe :-)

I'm actually a fan of Kraken, I trade there (as well as bitstamp), and I am just hoping that they can work something out with their banks to:
  a) Speed up USD withdrawls, or better yet,
  b) Convert USD balances to EUR.

This will actually be beneficial to both the exchange and its users, by providing assurances that people can withdraw money quickly and losslessly when needed, and therefore increasing the trade volume overall.

-- FK

12HYShbhrFH1eyrmXc3zMRSFFnkgaVstcg
thisisnotmyltcusername
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
January 29, 2014, 10:33:52 AM
 #1073

by the time he/she chose to take to write this diatribe :-)

I'm actually a fan of Kraken, I trade there (as well as bitstamp), and I am just hoping that they can work something out with their banks to:
  a) Speed up USD withdrawls, or better yet,
  b) Convert USD balances to EUR.


c) don't block BTC withdrawals  Undecided

Serpens66
Legendary
*
Offline Offline

Activity: 2926
Merit: 1131



View Profile
January 29, 2014, 06:00:31 PM
 #1074

How about kraken on tradingview?

Mit Cointracking (10% Rabatt) behältst du die Übersicht über all deine Trades und Gewinne. Sogar ein Tool für die Steuer ist dabei Wink                          
Great Freeware Game: Clonk Rage
binance.com hat nun auch SEPA und EUR Paare! Mit dem RefLink bekommst du 5% Rabatt auf die Tradinggebühren!
ledmaniak
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
January 29, 2014, 06:45:31 PM
 #1075

by the time he/she chose to take to write this diatribe :-)

I'm actually a fan of Kraken, I trade there (as well as bitstamp), and I am just hoping that they can work something out with their banks to:
  a) Speed up USD withdrawls, or better yet,
  b) Convert USD balances to EUR.


c) don't block BTC withdrawals  Undecided



Just try again if it happens. I just did a withdrawal with success.

Bitcoin: 1Cxi8BLvScSm1mW6kjb5MNeJZPrvAiYL6B
Litecoin: LLmjtrrq1ZeD51NSUJ8VanuQduW8Ma3jrs
tbosman
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
January 29, 2014, 07:35:08 PM
 #1076

no update about the order book bug yet?

We think we've fixed all the issues people were seeing, and all those fixes are now live. So please let us know if you see anything that still doesn't look right.

There were a variety of cases, but all of them were caused by a bid > ask condition. For example, suppose the book contains these orders:

sell 1 lot @ 130
buy 0.5 lot @ 127
buy 0.5 lot @ 120
sell 0.5 lot @ trailing stop 126, limit 100
buy 1 lot @ 110

So current ask is 130 and bid is 127.

A new order is placed to buy sell 1 lot at 125.  The order picks up the 0.5 lots @ 127 and then the rest of it goes on the book as 0.5 lot @ 125. Now the current ask is 125 and bid is 120.

The 120 bid triggers the trailing stop @ 126 and puts in a limit sell order at 100.  Now the bid is 120 and ask is 100 (bid > ask condition). If the ask side initiates the trade, the trade will be done at $120. If the bid side initiates the trade, the trade will be done at $100 (which appears to have skipped over the buy @ 110).

So those of you who thought you were being skipped over, you weren't. It's just that someone with a higher bid in the book got filled at a price below your offer. Of course, the converse could happen too, where someone on the ask side might appear to have been skipped over when in fact someone with a lower ask just got filled at a higher price.

In one sense, this isn't really a bug, because whichever side initiates is supposed to get the best offer on the book from their perspective. So if the buy side initiates, they should get the lowest ask on the book - i.e. $100 in the case above. It's just that when bid > ask, this normally sound principle leads to unexpected price action that doesn't look right. And we'd probably be answering support tickets and questions on social media forever if it wasn't fixed.  In the scenario above, the fix is that the trade will execute at $120 regardless of which side initiates the trade. That seemed the best solution, and will avoid the strange price action, but it also means that the side initiating the trade under this bid > ask condition isn't always going to get the best offer on the book (as they normally would when ask > bid).  
I don't really follow your explanation. How do you determine the side which initiates the trade? In this case the bid of 120 was there before the stop was triggered, so the sell order came last and is the initiating side right? I don't see how this ever could lead to a scenario where the trades executing at a price beyond the best bid/ask.

This is how it works now, but not before. Before the timestamp on an order was just the time of order entry, and this timestamp carried over to orders that triggered from advanced orders. Now the timestamp is determined by the time the order is created, so an order that triggers from an advanced order is given a new timestamp. Apparently in the original design of the trade engine, triggered orders got a new timestamp, but at some point this was changed to the timestamp just being the time of order entry because that was simpler and it was thought that it wouldn't be a problem.

Suppose the orders in the example are placed in the following sequence:

sell 1 lot @ 130
sell 0.5 lot @ trailing stop 126, limit 100
buy 0.5 lot @ 120
buy 0.5 lot @ 127
buy 1 lot @ 110
sell 1 lot at 125

As you say, the newest order initiates, but before this meant that the buy order @ 120 would initiate because it was considered newest and this would result in a fill at 100. Apparently there was also an issue with sorting that sometimes caused the older order to initiate (resulting in a fill at 120), but this has been fixed as well.

With both of the fixes, the newest order always initiates and the age of an order is determined by when it is created (so an order that triggers from another gets a new timestamp). In the example, this means that the triggered sell @ 100 will always initiates and the fill will be at 120.

I'm not sure when we'll have the time to do this, but at some point we'd like to write up a document explaining all the rules of the trade engine so the technical details of how trade matching works exactly are available. Some exchanges have done this for basic order types, but I'm not sure any exchange has ever done it to include the advanced orders (but let me know if you know of one).    
Ok that explains a lot. Regarding documentation, i don't know of any bitcoin exchanges having advanced orders like kraken at all, are there any? Strangely enough i couldn't find the matching rules for advanced orders on any regular exchange either, although they must be publicized somewhere.

I do have a few questions about the matching if you can answer them yourself, if not i can wait for the document.
- How is the price protection calculated for market orders?
- Is order matching atomic? I.e. if a orders crosses the market, will it match orders as far as possible before anything else happens, or is it possible for incoming/triggered orders to be added as the order 'walks' the book.
- I understand that any triggered order will be handled as a new limit/market order with a fresh timestamp. So this means that if multiple orders are triggered by the same trade/order being executed, they will arrive with the stame timestamp right? How is execution priority handled in that case?

https://europeanequities.nyx.com/sites/europeanequities.nyx.com/files/the_stop_order.pdf
This explains the priority for the stop/loss and stop-limit order types on NYSE Euronext. Is this comparable to how it works at kraken?
MakeBelieve
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500


View Profile
January 29, 2014, 08:08:03 PM
 #1077

What's the average time it takes to convert from USD to BTC?

On a mission to make Bitcointalk.org Marketplace a safer place to Buy/Sell/Trade
KrakenTrader
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
January 29, 2014, 08:51:12 PM
 #1078

Hi Guys,

Concerning trading volume, we all know it's quite low.
currently:


By yesterday I spotted a ( for Kraken quite unusual ) high buy order at €560.00 for 98.516 BTC.
I don't believe that it's from one trader only.

And at least I haven't seen a large order like that before on Kraken.
I was about to set a buy order at 550€, but for around 15BTC only. Chances are, that during the next drop
BTC won't cross the 560 mark due to that larger buy order. Any thoughts?




Cheers
Derek
raskul
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
January 29, 2014, 08:52:14 PM
 #1079

it'll get there leave the order in

tips    1APp826DqjJBdsAeqpEstx6Q8hD4urac8a
Avalaxy
Full Member
***
Offline Offline

Activity: 149
Merit: 100


View Profile
January 29, 2014, 08:55:29 PM
 #1080

@KrakenTrader if the price drops big time, the wall will simply be (re)moved.

@MakeBelieve what do you mean by "how long does it take to convert USD to BTC"...?

BTC: 1BvzHyU2WnxtVYbUZYdQ6RExwLUZTfBN1K
LTC: LfoPTEEyhdRHn8Sob8tu1iLz8AjVpvAXa4
Pages: « 1 ... 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 [54] 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 ... 350 »
  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!