Skip to content

Commit

Permalink
novomatic/inferno game added.
Browse files Browse the repository at this point in the history
  • Loading branch information
schwarzlichtbezirk committed Jan 21, 2025
1 parent bc2fb67 commit 0629b84
Show file tree
Hide file tree
Showing 9 changed files with 384 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,21 @@ Slots games server. Releases functionality for AGT, Novomatic, NetEnt, BetSoft,
Server provides HTTP-based API for popular slots and have well-optimized performance for thousands requests per second. Can be deployed on dedicated server or as portable application for Linux or Windows.

```text
total: 166 games, 79 algorithms, 9 providers
total: 167 games, 80 algorithms, 9 providers
AGT: 56 games
Aristocrat: 4 games
BetSoft: 3 games
Megajack: 4 games
NetEnt: 20 games
Novomatic: 65 games
Novomatic: 66 games
Play'n GO: 3 games
Playtech: 7 games
Slotopol: 4 games
```

*Last added games*:

* '[Inferno](https://www.slotsmate.com/software/novomatic/inferno)' Novomatic 5x3 videoslot
* '[Helena](https://www.slotsmate.com/software/novomatic/helena)' Novomatic 5x3 videoslot
* '[Golden Prophecies](https://www.slotsmate.com/software/novomatic/golden-prophecies)' Novomatic 5x3 videoslot
* '[Always American](https://www.slotsmate.com/software/novomatic/always-american)' Novomatic 3x3 videoslot
Expand All @@ -41,7 +42,6 @@ Slotopol: 4 games
* 'Aztec Gold' Megajack 5x3 videoslot with 'Aztec Pyramid' bonus game
* '[Book of Ra Deluxe](https://www.slotsmate.com/software/novomatic/book-of-ra-deluxe)' Novomatic 5x3 videoslot
* '[Book of Ra](https://www.slotsmate.com/software/novomatic/book-of-ra-classic)' Novomatic 5x3 videoslot
* '[Gate of Ra Deluxe](https://www.slotsmate.com/software/novomatic/gate-of-ra-deluxe)' Novomatic 5x3 videoslot

*Top-10 of most liked games released on server*:

Expand Down
1 change: 1 addition & 0 deletions cmd/links.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import (
_ "github.com/slotopol/server/game/slot/novomatic/dolphinspearl"
_ "github.com/slotopol/server/game/slot/novomatic/fruitilicious"
_ "github.com/slotopol/server/game/slot/novomatic/helena"
_ "github.com/slotopol/server/game/slot/novomatic/inferno"
_ "github.com/slotopol/server/game/slot/novomatic/jaguarmoon"
_ "github.com/slotopol/server/game/slot/novomatic/jewels"
_ "github.com/slotopol/server/game/slot/novomatic/jewels4all"
Expand Down
5 changes: 3 additions & 2 deletions docs/list-all.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
'Ice Ice Ice' AGT 3x3 videoslot
'Ice Queen' AGT 5x3 videoslot
'Indian Dreaming' Aristocrat 5x3 videoslot
'Inferno' Novomatic 5x3 videoslot
'Infinity Gems' AGT 5x3 videoslot
'Irish Luck' Playtech 5x3 videoslot
'Jaguar Moon' Novomatic 5x3 videoslot
Expand Down Expand Up @@ -169,13 +170,13 @@
'Wild Witches' NetEnt 5x3 videoslot
'Wizard' AGT 5x4 videoslot
total: 166 games, 79 algorithms, 9 providers
total: 167 games, 80 algorithms, 9 providers
AGT: 56 games
Aristocrat: 4 games
BetSoft: 3 games
Megajack: 4 games
NetEnt: 20 games
Novomatic: 65 games
Novomatic: 66 games
Play'n GO: 3 games
Playtech: 7 games
Slotopol: 4 games
Expand Down
29 changes: 29 additions & 0 deletions game/slot/novomatic/inferno/inferno_calc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package inferno

import (
"context"
"fmt"
"time"

"github.com/slotopol/server/game/slot"
)

func CalcStat(ctx context.Context, mrtp float64) float64 {
var reels, _ = slot.FindReels(ReelsMap, mrtp)
var g = NewGame()
var sln float64 = 1
g.Sel = int(sln)
var s slot.Stat

var dur = slot.ScanReels5x(ctx, &s, g, reels,
time.Tick(2*time.Second), time.Tick(2*time.Second))

var reshuf = float64(s.Reshuffles)
var lrtp, srtp = s.LinePay / reshuf / sln * 100, s.ScatPay / reshuf / sln * 100
var rtpsym = lrtp + srtp
fmt.Printf("completed %.5g%%, selected %d lines, time spent %v\n", reshuf/float64(s.Planned())*100, g.Sel, dur)
fmt.Printf("reels lengths [%d, %d, %d, %d, %d], total reshuffles %d\n",
len(reels.Reel(1)), len(reels.Reel(2)), len(reels.Reel(3)), len(reels.Reel(4)), len(reels.Reel(5)), reels.Reshuffles())
fmt.Printf("RTP = %.5g(lined) + %.5g(scatter) = %.6f%%\n", lrtp, srtp, rtpsym)
return rtpsym
}
25 changes: 25 additions & 0 deletions game/slot/novomatic/inferno/inferno_link.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
//go:build !prod || full || novomatic

package inferno

import (
"github.com/slotopol/server/game"
)

var Info = game.GameInfo{
Aliases: []game.GameAlias{
{Prov: "Novomatic", Name: "Inferno"},
},
GP: game.GPfgno |
game.GPscat,
SX: 5,
SY: 3,
SN: len(LinePay),
LN: len(BetLines),
BN: 0,
RTP: game.MakeRtpList(ReelsMap),
}

func init() {
Info.SetupFactory(func() any { return NewGame() }, CalcStat)
}
182 changes: 182 additions & 0 deletions game/slot/novomatic/inferno/inferno_reel.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,182 @@

# RTP list of available reels:
# 92.350228
# 92.614882
# 93.094993
# 93.530397
# 94.250786
# 94.502047
# 95.075253
# 95.442600
# 96.148233
# 96.515580
# 97.196187
# 97.977298
# 98.508098
# 100.048931
# 102.765410
# 105.232209
# 108.177611
# 110.319995

# reels lengths [42, 43, 42, 43, 42], total reshuffles 136988712
# RTP = 86.166(lined) + 6.1838(scatter) = 92.350228%
92.350228:
- [7, 5, 6, 4, 7, 5, 2, 6, 5, 1, 4, 5, 2, 8, 4, 5, 2, 6, 3, 7, 4, 1, 3, 6, 4, 3, 6, 7, 8, 3, 6, 1, 2, 6, 7, 5, 4, 3, 7, 5, 4, 2] # 42
- [7, 6, 3, 4, 7, 5, 4, 6, 3, 8, 7, 5, 6, 2, 1, 4, 6, 2, 4, 6, 7, 5, 3, 4, 5, 2, 1, 6, 3, 4, 2, 6, 3, 2, 5, 7, 8, 5, 7, 6, 5, 4, 1] # 43
- [2, 7, 3, 4, 8, 7, 2, 5, 3, 6, 4, 1, 5, 2, 6, 1, 4, 5, 6, 3, 7, 4, 6, 2, 5, 6, 4, 7, 3, 4, 8, 5, 6, 7, 1, 5, 4, 3, 2, 6, 7, 5] # 42
- [4, 6, 1, 5, 7, 6, 4, 5, 2, 7, 6, 3, 5, 6, 2, 7, 6, 4, 7, 6, 4, 5, 3, 4, 5, 1, 6, 5, 7, 2, 3, 4, 8, 5, 6, 2, 8, 4, 3, 7, 2, 3, 1] # 43
- [5, 4, 3, 6, 7, 1, 6, 3, 4, 7, 5, 4, 8, 6, 5, 1, 3, 4, 6, 5, 4, 2, 5, 6, 2, 1, 6, 5, 7, 8, 3, 2, 5, 7, 4, 2, 3, 7, 2, 6, 4, 7] # 42

# reels lengths [42, 42, 42, 42, 42], total reshuffles 130691232
# RTP = 86.248(lined) + 6.3664(scatter) = 92.614882%
92.614882:
- [7, 5, 6, 4, 7, 5, 2, 6, 5, 1, 4, 5, 2, 8, 4, 5, 2, 6, 3, 7, 4, 1, 3, 6, 4, 3, 6, 7, 8, 3, 6, 1, 2, 6, 7, 5, 4, 3, 7, 5, 4, 2] # 42
- [2, 5, 6, 4, 5, 3, 1, 2, 3, 4, 6, 3, 7, 5, 4, 7, 6, 5, 8, 2, 6, 7, 3, 2, 6, 7, 4, 1, 5, 2, 4, 6, 1, 5, 7, 4, 5, 3, 4, 7, 6, 8] # 42
- [2, 7, 3, 4, 8, 7, 2, 5, 3, 6, 4, 1, 5, 2, 6, 1, 4, 5, 6, 3, 7, 4, 6, 2, 5, 6, 4, 7, 3, 4, 8, 5, 6, 7, 1, 5, 4, 3, 2, 6, 7, 5] # 42
- [3, 4, 7, 6, 2, 7, 6, 2, 4, 6, 7, 2, 3, 5, 4, 8, 5, 7, 6, 5, 1, 4, 5, 7, 4, 1, 5, 7, 6, 3, 1, 5, 6, 4, 3, 2, 5, 8, 2, 3, 4, 6] # 42
- [5, 4, 3, 6, 7, 1, 6, 3, 4, 7, 5, 4, 8, 6, 5, 1, 3, 4, 6, 5, 4, 2, 5, 6, 2, 1, 6, 5, 7, 8, 3, 2, 5, 7, 4, 2, 3, 7, 2, 6, 4, 7] # 42

# reels lengths [43, 43, 43, 43, 43], total reshuffles 147008443
# RTP = 87.177(lined) + 5.9184(scatter) = 93.094993%
93.094993:
- [3, 4, 6, 8, 3, 5, 6, 4, 2, 1, 5, 6, 2, 4, 6, 5, 4, 7, 5, 3, 2, 7, 3, 8, 5, 7, 6, 4, 1, 7, 6, 4, 7, 5, 3, 4, 1, 6, 7, 2, 6, 5, 2] # 43
- [7, 6, 3, 4, 7, 5, 4, 6, 3, 8, 7, 5, 6, 2, 1, 4, 6, 2, 4, 6, 7, 5, 3, 4, 5, 2, 1, 6, 3, 4, 2, 6, 3, 2, 5, 7, 8, 5, 7, 6, 5, 4, 1] # 43
- [4, 3, 6, 1, 3, 6, 2, 3, 6, 5, 1, 2, 4, 7, 2, 4, 3, 5, 2, 4, 7, 6, 5, 7, 8, 4, 5, 1, 4, 6, 8, 2, 5, 7, 3, 5, 6, 7, 4, 6, 7, 5, 6] # 43
- [4, 6, 1, 5, 7, 6, 4, 5, 2, 7, 6, 3, 5, 6, 2, 7, 6, 4, 7, 6, 4, 5, 3, 4, 5, 1, 6, 5, 7, 2, 3, 4, 8, 5, 6, 2, 8, 4, 3, 7, 2, 3, 1] # 43
- [5, 4, 8, 6, 5, 7, 6, 4, 7, 3, 1, 4, 6, 2, 1, 5, 4, 6, 3, 7, 4, 5, 6, 4, 2, 5, 3, 2, 5, 3, 1, 7, 6, 5, 7, 4, 6, 2, 8, 6, 7, 3, 2] # 43

# reels lengths [43, 43, 43, 43, 43], total reshuffles 147008443
# RTP = 87.612(lined) + 5.9184(scatter) = 93.530397%
93.530397:
- [4, 6, 7, 5, 6, 7, 4, 1, 3, 6, 8, 5, 2, 3, 1, 7, 2, 5, 7, 3, 4, 2, 6, 5, 7, 3, 4, 2, 5, 1, 6, 4, 5, 7, 3, 4, 6, 5, 8, 4, 6, 2, 7] # 43
- [6, 3, 4, 1, 6, 2, 5, 4, 6, 7, 5, 6, 4, 7, 1, 5, 7, 3, 6, 2, 5, 7, 4, 5, 2, 3, 4, 8, 7, 4, 3, 7, 6, 3, 1, 2, 4, 7, 6, 5, 2, 8, 5] # 43
- [3, 8, 7, 3, 6, 4, 5, 3, 7, 6, 1, 4, 6, 2, 5, 7, 4, 1, 5, 2, 6, 4, 7, 2, 4, 5, 3, 1, 2, 5, 7, 6, 2, 5, 3, 7, 4, 5, 6, 7, 4, 8, 6] # 43
- [6, 5, 1, 7, 3, 4, 7, 6, 8, 5, 7, 3, 5, 6, 7, 5, 6, 7, 3, 6, 4, 2, 7, 6, 4, 2, 1, 5, 7, 4, 5, 8, 2, 4, 6, 2, 4, 1, 3, 2, 5, 4, 3] # 43
- [5, 3, 6, 5, 2, 6, 7, 5, 3, 6, 5, 7, 6, 3, 4, 5, 7, 4, 1, 5, 7, 4, 8, 7, 2, 3, 4, 2, 6, 4, 5, 6, 4, 1, 3, 4, 2, 7, 1, 2, 7, 8, 6] # 43

# reels lengths [41, 41, 41, 41, 41], total reshuffles 115856201
# RTP = 87.39(lined) + 6.8609(scatter) = 94.250786%
94.250786:
- [6, 7, 2, 1, 3, 4, 2, 5, 6, 7, 1, 5, 2, 6, 3, 5, 7, 2, 5, 4, 3, 6, 4, 5, 7, 6, 4, 3, 8, 6, 3, 1, 4, 5, 7, 6, 8, 5, 2, 7, 4] # 41
- [4, 3, 2, 5, 4, 2, 7, 6, 8, 4, 3, 7, 1, 6, 5, 1, 2, 7, 6, 4, 5, 3, 4, 7, 6, 2, 5, 6, 8, 4, 5, 7, 3, 6, 5, 3, 6, 7, 2, 1, 5] # 41
- [1, 7, 3, 4, 2, 6, 4, 5, 3, 7, 2, 6, 5, 3, 4, 1, 5, 3, 2, 5, 4, 7, 6, 5, 7, 2, 8, 6, 4, 5, 6, 3, 8, 5, 6, 4, 7, 1, 6, 7, 2] # 41
- [7, 2, 6, 3, 8, 6, 5, 8, 7, 2, 1, 6, 4, 2, 3, 4, 7, 5, 4, 2, 3, 6, 1, 5, 4, 7, 3, 5, 7, 2, 5, 1, 6, 7, 5, 4, 3, 6, 5, 4, 6] # 41
- [4, 6, 5, 2, 8, 4, 7, 2, 4, 5, 8, 6, 4, 1, 2, 6, 5, 2, 3, 7, 6, 5, 3, 7, 5, 6, 1, 4, 5, 3, 7, 6, 2, 1, 5, 3, 4, 7, 3, 6, 7] # 41

# reels lengths [42, 42, 42, 42, 42], total reshuffles 130691232
# RTP = 88.136(lined) + 6.3664(scatter) = 94.502047%
94.502047:
- [4, 5, 7, 1, 3, 4, 2, 6, 4, 2, 7, 1, 5, 6, 4, 5, 6, 2, 5, 1, 3, 5, 2, 7, 3, 6, 4, 8, 6, 7, 5, 2, 4, 8, 6, 5, 3, 6, 4, 3, 7, 6] # 42
- [2, 4, 6, 8, 3, 5, 1, 6, 4, 3, 6, 5, 7, 2, 5, 6, 1, 4, 5, 2, 3, 4, 6, 5, 7, 2, 3, 4, 6, 8, 4, 6, 7, 1, 6, 3, 7, 5, 4, 2, 7, 5] # 42
- [6, 4, 3, 6, 2, 7, 5, 4, 1, 6, 7, 4, 3, 7, 5, 8, 6, 2, 4, 5, 6, 1, 2, 5, 8, 4, 6, 5, 3, 2, 6, 3, 5, 4, 7, 1, 3, 5, 6, 7, 4, 2] # 42
- [8, 5, 6, 1, 4, 7, 5, 2, 8, 6, 7, 5, 4, 7, 5, 3, 6, 1, 3, 6, 1, 4, 3, 2, 6, 5, 2, 4, 7, 5, 2, 4, 6, 2, 7, 3, 4, 5, 6, 4, 3, 6] # 42
- [7, 5, 1, 6, 3, 4, 6, 1, 5, 2, 7, 5, 1, 2, 4, 6, 7, 3, 6, 8, 3, 2, 8, 4, 6, 5, 4, 7, 6, 5, 2, 4, 7, 5, 3, 6, 2, 4, 5, 6, 4, 3] # 42

# reels lengths [42, 42, 42, 42, 42], total reshuffles 130691232
# RTP = 88.709(lined) + 6.3664(scatter) = 95.075253%
95.075253:
- [6, 7, 5, 6, 8, 4, 3, 6, 5, 2, 7, 6, 4, 7, 5, 1, 7, 5, 3, 7, 4, 3, 1, 5, 3, 2, 4, 7, 2, 5, 3, 6, 4, 8, 2, 4, 6, 2, 7, 6, 5, 4] # 42
- [7, 6, 4, 3, 2, 8, 4, 5, 6, 1, 5, 3, 7, 8, 2, 7, 3, 5, 4, 6, 5, 2, 4, 6, 7, 3, 5, 4, 7, 6, 1, 2, 4, 3, 6, 7, 4, 5, 7, 6, 5, 2] # 42
- [6, 5, 4, 7, 5, 4, 1, 7, 2, 5, 7, 2, 6, 3, 4, 5, 7, 3, 8, 5, 7, 3, 6, 4, 2, 6, 4, 8, 3, 6, 7, 2, 4, 5, 6, 3, 7, 6, 2, 1, 5, 4] # 42
- [6, 3, 4, 7, 8, 3, 7, 2, 5, 4, 7, 6, 4, 7, 6, 5, 7, 4, 5, 2, 3, 6, 5, 2, 6, 5, 4, 8, 6, 4, 2, 1, 6, 3, 7, 1, 2, 3, 5, 4, 7, 5] # 42
- [2, 7, 5, 6, 1, 3, 6, 7, 5, 6, 4, 7, 5, 6, 2, 5, 1, 3, 4, 8, 2, 4, 6, 5, 7, 3, 2, 6, 4, 7, 8, 5, 4, 7, 3, 6, 4, 2, 5, 4, 7, 3] # 42

# reels lengths [42, 42, 42, 42, 42], total reshuffles 130691232
# RTP = 89.076(lined) + 6.3664(scatter) = 95.442600%
95.442600:
- [5, 2, 1, 5, 3, 6, 7, 2, 5, 8, 4, 2, 7, 4, 8, 5, 6, 7, 5, 1, 3, 6, 4, 3, 2, 6, 4, 7, 6, 2, 4, 7, 6, 5, 3, 7, 5, 4, 7, 6, 3, 1] # 42
- [4, 5, 1, 2, 7, 8, 4, 7, 6, 5, 7, 3, 4, 5, 6, 3, 1, 6, 4, 8, 7, 4, 6, 7, 5, 6, 7, 5, 6, 4, 3, 2, 5, 6, 2, 3, 5, 1, 2, 7, 3, 2] # 42
- [5, 3, 6, 8, 2, 5, 6, 1, 4, 7, 6, 2, 5, 4, 3, 1, 6, 5, 3, 7, 4, 2, 6, 7, 5, 4, 7, 6, 5, 2, 4, 8, 2, 3, 5, 7, 4, 3, 7, 6, 1, 7] # 42
- [5, 2, 6, 4, 3, 6, 5, 4, 1, 3, 2, 6, 4, 3, 7, 2, 5, 6, 7, 5, 2, 6, 7, 1, 4, 3, 8, 4, 5, 2, 7, 8, 3, 7, 4, 6, 5, 1, 7, 5, 6, 7] # 42
- [4, 2, 1, 5, 6, 2, 3, 7, 5, 4, 7, 3, 6, 4, 1, 2, 4, 7, 8, 5, 3, 6, 2, 5, 6, 3, 7, 5, 8, 6, 4, 7, 6, 5, 2, 7, 1, 6, 4, 5, 7, 3] # 42

# reels lengths [42, 42, 42, 42, 42], total reshuffles 130691232
# RTP = 89.782(lined) + 6.3664(scatter) = 96.148233%
96.148233:
- [4, 1, 6, 7, 2, 1, 3, 5, 6, 7, 3, 5, 4, 2, 5, 4, 7, 5, 4, 2, 5, 4, 7, 6, 4, 3, 2, 6, 8, 4, 6, 3, 5, 7, 6, 3, 2, 6, 5, 8, 3, 7] # 42
- [6, 4, 3, 5, 6, 2, 3, 4, 2, 7, 5, 2, 6, 4, 7, 3, 6, 7, 4, 6, 1, 5, 4, 6, 7, 4, 6, 8, 5, 2, 3, 4, 1, 7, 5, 8, 2, 5, 3, 7, 5, 3] # 42
- [8, 4, 3, 5, 2, 4, 5, 6, 3, 8, 7, 5, 6, 3, 7, 4, 5, 3, 6, 4, 7, 5, 1, 7, 2, 6, 4, 5, 2, 3, 6, 7, 3, 6, 4, 2, 5, 1, 7, 4, 2, 6] # 42
- [7, 4, 5, 6, 4, 5, 6, 4, 5, 3, 2, 6, 7, 5, 6, 7, 2, 3, 5, 4, 7, 8, 2, 3, 4, 7, 6, 1, 5, 6, 3, 5, 4, 3, 2, 6, 3, 8, 7, 4, 2, 1] # 42
- [1, 7, 5, 2, 4, 6, 8, 2, 6, 3, 7, 6, 4, 3, 5, 6, 4, 3, 5, 4, 2, 3, 7, 2, 1, 4, 2, 7, 5, 3, 6, 5, 7, 4, 8, 5, 6, 4, 7, 6, 3, 5] # 42

# reels lengths [42, 42, 42, 42, 42], total reshuffles 130691232
# RTP = 90.149(lined) + 6.3664(scatter) = 96.515580%
96.515580:
- [6, 1, 3, 6, 2, 3, 1, 7, 6, 8, 7, 4, 5, 6, 7, 4, 5, 3, 7, 4, 8, 5, 6, 2, 5, 3, 2, 5, 4, 6, 2, 7, 6, 3, 5, 1, 4, 3, 2, 4, 7, 5] # 42
- [5, 2, 4, 5, 1, 6, 3, 7, 5, 6, 2, 7, 6, 2, 8, 7, 5, 4, 3, 6, 5, 8, 3, 5, 4, 7, 3, 4, 5, 6, 4, 1, 6, 7, 3, 2, 6, 3, 2, 1, 4, 7] # 42
- [1, 7, 4, 5, 6, 2, 5, 1, 6, 5, 4, 3, 7, 6, 3, 5, 6, 4, 7, 3, 6, 1, 2, 6, 8, 4, 2, 7, 4, 2, 7, 3, 5, 7, 8, 5, 4, 3, 6, 5, 3, 2] # 42
- [3, 5, 4, 3, 5, 4, 2, 5, 4, 7, 3, 6, 1, 2, 4, 6, 5, 7, 6, 8, 7, 5, 2, 3, 5, 8, 4, 6, 7, 1, 6, 3, 1, 5, 4, 2, 3, 6, 7, 2, 6, 7] # 42
- [7, 5, 2, 4, 3, 2, 5, 4, 7, 8, 5, 6, 3, 8, 6, 3, 1, 5, 6, 4, 2, 6, 1, 2, 4, 5, 6, 4, 3, 7, 6, 5, 7, 3, 1, 2, 7, 3, 5, 7, 4, 6] # 42

# reels lengths [41, 41, 41, 41, 41], total reshuffles 115856201
# RTP = 90.335(lined) + 6.8609(scatter) = 97.196187%
97.196187:
- [2, 4, 5, 6, 3, 4, 5, 7, 2, 5, 7, 1, 6, 3, 7, 6, 4, 1, 5, 6, 3, 4, 7, 6, 3, 2, 4, 7, 6, 2, 1, 5, 2, 6, 3, 8, 7, 5, 4, 8, 7] # 41
- [2, 3, 4, 5, 7, 2, 6, 1, 4, 3, 6, 1, 3, 5, 7, 3, 5, 6, 2, 1, 6, 4, 3, 2, 7, 8, 6, 7, 4, 5, 7, 4, 5, 6, 7, 4, 5, 2, 7, 6, 8] # 41
- [2, 4, 6, 7, 3, 1, 7, 3, 6, 2, 7, 6, 3, 5, 8, 7, 2, 5, 4, 2, 8, 4, 7, 6, 5, 4, 6, 7, 4, 3, 5, 6, 7, 5, 4, 1, 6, 3, 2, 5, 1] # 41
- [5, 8, 2, 4, 5, 6, 3, 7, 4, 3, 7, 2, 3, 4, 5, 6, 4, 2, 1, 6, 2, 3, 5, 7, 4, 5, 2, 7, 6, 3, 7, 1, 4, 6, 5, 7, 8, 6, 7, 1, 6] # 41
- [1, 2, 5, 7, 8, 6, 4, 5, 6, 4, 2, 5, 7, 3, 6, 8, 5, 4, 3, 7, 6, 2, 7, 4, 6, 3, 1, 7, 5, 6, 3, 2, 7, 4, 5, 3, 6, 2, 1, 7, 4] # 41

# reels lengths [43, 43, 43, 43, 43], total reshuffles 147008443
# RTP = 92.059(lined) + 5.9184(scatter) = 97.977298%
97.977298:
- [5, 6, 3, 2, 4, 7, 5, 1, 4, 6, 2, 3, 7, 4, 3, 5, 4, 6, 2, 5, 6, 7, 1, 2, 3, 6, 2, 7, 5, 8, 3, 7, 6, 8, 3, 5, 4, 2, 7, 6, 5, 1, 4] # 43
- [3, 2, 1, 5, 7, 6, 5, 2, 4, 7, 1, 6, 2, 3, 5, 6, 7, 8, 4, 5, 7, 3, 6, 2, 4, 5, 3, 2, 4, 5, 3, 6, 5, 1, 2, 7, 6, 4, 3, 8, 7, 4, 6] # 43
- [1, 5, 4, 8, 7, 3, 2, 7, 1, 6, 5, 2, 6, 7, 5, 2, 4, 7, 6, 2, 3, 4, 8, 3, 5, 1, 3, 6, 5, 3, 6, 4, 5, 6, 4, 3, 2, 7, 4, 2, 5, 6, 7] # 43
- [4, 7, 2, 6, 5, 1, 6, 7, 5, 4, 3, 8, 5, 7, 6, 3, 5, 2, 6, 5, 2, 7, 3, 4, 6, 2, 7, 8, 4, 6, 3, 4, 1, 3, 2, 5, 3, 4, 7, 5, 2, 6, 1] # 43
- [5, 1, 6, 7, 2, 4, 6, 5, 1, 2, 4, 8, 2, 7, 4, 2, 3, 5, 4, 3, 5, 7, 4, 5, 6, 3, 7, 8, 6, 2, 3, 7, 5, 3, 1, 6, 4, 2, 6, 3, 5, 7, 6] # 43

# reels lengths [41, 41, 41, 41, 41], total reshuffles 115856201
# RTP = 91.647(lined) + 6.8609(scatter) = 98.508098%
98.508098:
- [4, 5, 3, 6, 1, 7, 6, 2, 7, 5, 1, 6, 2, 7, 4, 6, 3, 8, 6, 3, 8, 5, 6, 4, 7, 3, 4, 7, 5, 4, 1, 5, 7, 6, 2, 3, 4, 2, 3, 5, 2] # 41
- [7, 3, 1, 6, 7, 5, 6, 2, 4, 6, 5, 1, 4, 6, 3, 8, 6, 2, 5, 3, 2, 7, 4, 3, 7, 5, 1, 6, 3, 5, 8, 4, 7, 3, 6, 2, 4, 7, 5, 2, 4] # 41
- [2, 6, 1, 7, 3, 6, 7, 5, 4, 7, 5, 8, 6, 5, 4, 6, 2, 3, 8, 4, 6, 3, 5, 7, 6, 5, 2, 1, 5, 4, 1, 3, 7, 2, 6, 4, 3, 2, 7, 4, 3] # 41
- [2, 5, 7, 2, 3, 7, 2, 4, 1, 5, 3, 1, 6, 2, 4, 6, 7, 5, 4, 7, 6, 3, 2, 7, 6, 5, 4, 6, 7, 1, 3, 6, 5, 8, 3, 5, 8, 4, 3, 6, 4] # 41
- [7, 8, 5, 3, 7, 5, 1, 7, 4, 6, 2, 7, 3, 4, 6, 2, 4, 3, 6, 2, 4, 5, 6, 1, 2, 6, 5, 3, 7, 5, 6, 1, 2, 3, 6, 7, 4, 8, 5, 4, 3] # 41

# reels lengths [42, 42, 42, 42, 42], total reshuffles 130691232
# RTP = 93.683(lined) + 6.3664(scatter) = 100.048931%
100.048931:
- [2, 4, 7, 5, 2, 7, 4, 5, 6, 4, 3, 6, 5, 8, 6, 7, 5, 3, 2, 5, 6, 4, 2, 7, 4, 5, 1, 6, 3, 7, 1, 6, 3, 7, 6, 2, 4, 8, 3, 2, 5, 3] # 42
- [4, 3, 7, 6, 4, 7, 3, 2, 1, 7, 6, 2, 8, 6, 2, 5, 8, 3, 7, 5, 6, 4, 2, 5, 4, 7, 3, 5, 6, 4, 2, 6, 5, 3, 2, 7, 6, 5, 3, 4, 5, 1] # 42
- [5, 1, 2, 6, 3, 4, 7, 2, 5, 8, 7, 6, 3, 5, 6, 8, 4, 7, 1, 3, 6, 4, 2, 6, 7, 2, 5, 6, 4, 2, 5, 7, 3, 4, 2, 3, 5, 4, 6, 5, 3, 7] # 42
- [4, 1, 7, 5, 4, 2, 5, 1, 6, 4, 5, 2, 6, 3, 7, 5, 3, 6, 2, 5, 8, 6, 2, 3, 7, 5, 2, 3, 6, 4, 7, 3, 6, 4, 5, 7, 6, 2, 3, 4, 8, 7] # 42
- [5, 7, 3, 4, 2, 1, 7, 3, 5, 6, 7, 5, 2, 4, 5, 3, 6, 4, 2, 3, 6, 4, 5, 6, 2, 1, 6, 7, 5, 3, 4, 8, 7, 2, 6, 7, 3, 4, 6, 5, 8, 2] # 42

# reels lengths [41, 41, 41, 41, 41], total reshuffles 115856201
# RTP = 95.904(lined) + 6.8609(scatter) = 102.765410%
102.765410:
- [7, 6, 5, 3, 2, 7, 4, 5, 7, 4, 3, 7, 1, 6, 5, 1, 4, 2, 6, 4, 1, 5, 6, 2, 8, 3, 2, 7, 3, 2, 6, 7, 8, 5, 3, 6, 4, 2, 5, 3, 4] # 41
- [4, 3, 1, 2, 3, 5, 8, 3, 6, 4, 8, 6, 2, 5, 7, 3, 4, 6, 2, 5, 4, 1, 7, 3, 6, 2, 5, 7, 6, 4, 7, 6, 4, 5, 7, 2, 1, 3, 2, 7, 5] # 41
- [3, 4, 5, 2, 6, 7, 2, 4, 7, 5, 6, 7, 1, 4, 2, 6, 3, 2, 5, 8, 4, 5, 6, 7, 8, 5, 2, 7, 3, 1, 7, 3, 1, 4, 3, 6, 5, 3, 4, 6, 2] # 41
- [6, 3, 8, 2, 7, 5, 1, 3, 6, 5, 4, 3, 7, 6, 4, 2, 6, 4, 5, 2, 7, 3, 2, 5, 3, 8, 7, 4, 6, 7, 1, 2, 5, 4, 6, 1, 7, 5, 3, 2, 4] # 41
- [1, 3, 6, 2, 3, 1, 6, 5, 4, 7, 8, 5, 2, 7, 5, 4, 6, 7, 2, 5, 1, 4, 3, 7, 2, 6, 3, 7, 4, 2, 3, 7, 6, 4, 8, 5, 6, 4, 2, 3, 5] # 41

# reels lengths [41, 41, 41, 41, 41], total reshuffles 115856201
# RTP = 98.371(lined) + 6.8609(scatter) = 105.232209%
105.232209:
- [7, 4, 2, 5, 7, 4, 6, 7, 3, 6, 8, 2, 6, 7, 1, 6, 5, 7, 6, 5, 4, 3, 2, 5, 8, 6, 4, 1, 3, 2, 5, 4, 1, 3, 6, 1, 7, 4, 2, 5, 3] # 41
- [7, 2, 5, 1, 7, 2, 3, 5, 2, 6, 4, 3, 6, 1, 4, 7, 8, 5, 4, 6, 3, 5, 6, 4, 3, 6, 2, 4, 7, 1, 4, 5, 7, 8, 2, 3, 6, 7, 5, 1, 6] # 41
- [8, 3, 5, 1, 7, 4, 6, 5, 7, 4, 6, 3, 5, 2, 6, 1, 7, 5, 8, 2, 7, 1, 4, 5, 7, 3, 6, 5, 3, 4, 6, 2, 3, 7, 4, 6, 2, 4, 1, 2, 6] # 41
- [6, 4, 2, 5, 7, 3, 2, 1, 6, 5, 8, 7, 4, 5, 8, 3, 6, 2, 4, 5, 7, 1, 5, 6, 4, 2, 3, 1, 4, 3, 7, 6, 2, 4, 6, 7, 1, 3, 6, 5, 7] # 41
- [3, 4, 5, 6, 7, 4, 3, 6, 2, 7, 5, 4, 1, 7, 6, 5, 2, 1, 7, 3, 2, 1, 6, 7, 5, 4, 2, 1, 6, 5, 4, 6, 8, 3, 5, 4, 7, 3, 6, 8, 2] # 41

# reels lengths [41, 41, 41, 41, 41], total reshuffles 115856201
# RTP = 101.32(lined) + 6.8609(scatter) = 108.177611%
108.177611:
- [6, 5, 4, 6, 7, 5, 3, 7, 5, 1, 6, 2, 5, 4, 1, 2, 4, 5, 1, 7, 3, 5, 8, 3, 6, 2, 7, 8, 6, 7, 2, 3, 4, 7, 3, 4, 6, 1, 4, 2, 7] # 41
- [5, 4, 3, 2, 5, 7, 1, 4, 7, 1, 6, 5, 8, 7, 6, 4, 2, 3, 4, 2, 1, 7, 5, 2, 6, 1, 4, 6, 7, 3, 5, 4, 2, 7, 3, 5, 8, 6, 3, 7, 6] # 41
- [4, 7, 5, 2, 3, 6, 5, 7, 1, 4, 6, 3, 7, 6, 5, 8, 2, 5, 4, 7, 1, 5, 6, 4, 2, 1, 6, 4, 7, 3, 8, 7, 4, 3, 2, 6, 7, 5, 2, 3, 1] # 41
- [1, 4, 5, 2, 7, 4, 6, 2, 4, 7, 2, 6, 4, 7, 5, 4, 1, 3, 2, 6, 3, 7, 4, 3, 1, 6, 2, 7, 3, 5, 7, 8, 5, 6, 3, 1, 5, 6, 8, 7, 5] # 41
- [1, 5, 2, 8, 5, 7, 2, 3, 4, 5, 2, 3, 4, 2, 7, 4, 2, 6, 3, 7, 6, 3, 4, 1, 6, 5, 1, 7, 4, 5, 1, 6, 7, 5, 6, 3, 8, 7, 6, 4, 7] # 41

# reels lengths [42, 42, 42, 42, 42], total reshuffles 130691232
# RTP = 103.95(lined) + 6.3664(scatter) = 110.319995%
110.319995:
- [1, 5, 3, 2, 5, 6, 7, 4, 3, 5, 4, 7, 5, 1, 6, 5, 4, 2, 7, 1, 4, 3, 6, 7, 2, 6, 1, 2, 3, 8, 4, 7, 6, 3, 5, 8, 2, 7, 3, 6, 2, 4] # 42
- [2, 5, 3, 4, 5, 7, 8, 2, 3, 5, 1, 7, 6, 4, 5, 3, 6, 4, 2, 7, 6, 1, 4, 2, 3, 7, 4, 6, 1, 7, 5, 2, 8, 3, 5, 2, 6, 7, 1, 4, 3, 6] # 42
- [5, 6, 8, 3, 5, 4, 3, 1, 7, 4, 5, 6, 3, 4, 6, 8, 3, 2, 1, 3, 7, 2, 1, 7, 3, 2, 6, 5, 2, 7, 5, 6, 4, 2, 1, 4, 5, 7, 6, 4, 2, 7] # 42
- [2, 4, 5, 6, 8, 3, 4, 1, 2, 7, 3, 5, 1, 3, 4, 5, 2, 6, 5, 2, 4, 6, 1, 7, 2, 5, 4, 6, 3, 1, 7, 3, 5, 7, 6, 8, 2, 4, 7, 3, 6, 7] # 42
- [4, 3, 2, 4, 1, 5, 3, 2, 7, 6, 5, 1, 7, 3, 4, 7, 5, 3, 7, 1, 2, 7, 8, 6, 4, 2, 1, 4, 2, 6, 3, 8, 5, 6, 7, 4, 6, 5, 3, 6, 5, 2] # 42
Loading

0 comments on commit 0629b84

Please sign in to comment.