News
LATEST NEWS
If you're over 25. FTD 25+ Affiliate Lottery
Big boys and girls get serious gifts. So the long-awaited last month of 2020, so beloved by everyone, has come! Let's say goodbye to it with fanfare. The affiliate lottery prize fund will be 1 million rubles in December. Hurry up to take part!
Lottery Details
Time: from 1 December 2020 (00.00) till 1 January 2021 (00.00)
1 lottery ticket is given for an achievement of 25 FTD
If you have a lot of FTD, then 1 lottery ticket is given for every 25 FTD
8 prizes in RUB (USDEUR equivalent on the day of receiving the prize)
280 000
220 000
160 000
130 000
90 000
60 000
40 000
20 000
The draw will be held on 2 January 2021
The list of lottery tickets is generated automatically
Open the tickets list
Terms of participation
1) Have 25+ FTD from 1 December 2020 (00.00) till 1 January 2021 (00.00)
2) Apply for participation through an affiliate program ticket on any day during the Lottery
3) How to apply: write through the affiliate program messenger from your id: “I want to participate in the FTD Lottery.”
4) All revshare, CPA and brand accounts are involved, except for networks
How the prize draw is held
The draw will be held using this code in Python version 3.4.0 / 3.5.2 / 3.5.1 / 3.6.1 / 3.6.5.
# code that selects winners
import random
import sys
print ("python version -", sys.version)
number of_tickets = ??? # ???? will be replaced by the total number of tickets - it will be known at the time of the drawing
course_euro = ??? # ??? will be replaced by the EUR / USD rate at the close of the session on the next day after the end of ticket issuance xe.com/currencytables/?from=USD
random.seed (euro_ rate)
seats = list (range (1, number of_tickets + 1))
random.shuffle (locations)
print ("280 thousand rubles - ticket #", seats [0])
print ("220 thousand rubles - ticket #", seats [1])
print ("160 thousand rubles - ticket #", seats [2])
print ("130 thousand rubles - ticket #", seats [3])
print ("90 thousand rubles - ticket #", seats [4])
print ("60 thousand rubles - ticket #", seats [5])
print ("40 thousand rubles - ticket #", seats [6])
print ("20 thousand rubles - ticket #", seats [7])
You can check the draw code by substituting the exchange rate value and the number of tickets on sites such as:
https://rextester.com/l/python3_online_compiler
https://repl.it/repls/DisgustingSlipperyCommand
https://www.jdoodle.com/python3-programming-online
https://www.onlinegdb.com/online_python_compiler
Simply put
1. Go to the website https://rextester.com/l/python3_online_compiler
2. Copy the code there
3. In the code, replace "???" on the number of tickets and the EUR / USD rate
4. Click Run it