Analyze your game history from the official SW app.
How to use it!
↑
↓
Browse to your game history in the app. Right click on the text and choose "Inspect".
The Developer Tools open in a separate window. The source code of the page is shown. Copy the table with the class 'pool' (<table class="pool">),
(left click on this element and copy Outer HTML - works this way in Chrome and Firefox). Last step is to paste it in this textbox.
Another way is to open the "Game History", then press F12 to open the Developer Tools.
Then switch to the console (2nd Tab) and paste this code there, to copy the log to the clipboard.
let log = document.querySelector('table.pool').outerHTML;copy(log);