├── .gitignore ├── BaseSheet.props ├── DominionAI.sln ├── DominionApp ├── CardDatabase.cs ├── ConfigWindow.Designer.cs ├── ConfigWindow.cs ├── ConfigWindow.resx ├── Constants.cs ├── DLLInterface.cs ├── DebugWindow.Designer.cs ├── DebugWindow.cs ├── DebugWindow.resx ├── DominionApp.csproj ├── DominionApp.csproj.user ├── DominionHelper.cs ├── DominionVisualization.cs ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── iconB.ico └── obj │ └── x86 │ ├── Debug │ └── .gitignore │ └── Release │ └── .gitignore ├── DominionDLL ├── AIUtility.cpp ├── AIUtility.h ├── App.cpp ├── App.h ├── AppParameters.cpp ├── AppParameters.h ├── BaseCodeDLL.cpp ├── BaseCodeDLL.def ├── BaseCodeDLL.h ├── BuyAgenda.cpp ├── BuyAgenda.h ├── CardDatabase.cpp ├── CardDatabase.h ├── CardEffect.h ├── CardEffectAlchemy.h ├── CardEffectBase.h ├── CardEffectCustom.h ├── CardEffectIntrigue.h ├── CardEffectProsperity.h ├── CardEffectSeaside.h ├── Config.h ├── Constants.h ├── DLLMain.cpp ├── Debug │ └── .gitignore ├── DominionDLL.vcxproj ├── DominionDLL.vcxproj.filters ├── DominionDLL.vcxproj.user ├── DominionGame.cpp ├── DominionGame.h ├── Engine.cpp ├── Engine.h ├── Enums.h ├── Event.cpp ├── Event.h ├── EventAlchemy.h ├── EventBase.h ├── EventCustom.h ├── EventIntrigue.h ├── EventProsperity.h ├── EventSeaside.h ├── GameData.cpp ├── GameData.h ├── Main.cpp ├── Main.h ├── MetaTestChamber.cpp ├── MetaTestChamber.h ├── Player.h ├── PlayerHeuristic.cpp ├── PlayerRandom.cpp ├── Release │ └── .gitignore ├── State.cpp ├── State.h ├── TestChamber.cpp └── TestChamber.h ├── Engine ├── Core │ ├── Asserts.h │ ├── ClassList.h │ ├── Compression.cpp │ ├── Compression.h │ ├── ExternalFiles.h │ ├── Grid.cpp │ ├── Grid.h │ ├── InputDataStream.cpp │ ├── InputDataStream.h │ ├── KeyDefs.h │ ├── MultiGrid.cpp │ ├── MultiGrid.h │ ├── OutputDataStream.cpp │ ├── OutputDataStream.h │ ├── Stdhdr.cpp │ ├── Stdhdr.h │ ├── String.cpp │ ├── String.h │ ├── UnicodeString.cpp │ ├── UnicodeString.h │ ├── Vector.cpp │ └── Vector.h ├── Graphics Objects │ ├── Bitmap.cpp │ ├── Bitmap.h │ ├── Camera.cpp │ ├── Camera.h │ ├── KDTree3.cpp │ ├── KDTree3.h │ ├── KDTreeN.cpp │ ├── KDTreeN.h │ ├── MatrixController.cpp │ ├── MatrixController.h │ ├── MeshBVH.cpp │ ├── MeshBVH.h │ ├── MeshDistance.cpp │ ├── MeshDistance.h │ ├── MeshVertex.cpp │ ├── MeshVertex.h │ ├── PointSet.cpp │ ├── PointSet.h │ ├── PrimitiveRender.cpp │ ├── PrimitiveRender.h │ ├── RayIntersector.h │ ├── RayIntersectorBruteForce.cpp │ ├── RayIntersectorBruteForce.h │ ├── RayIntersectorKDTree.cpp │ └── RayIntersectorKDTree.h ├── MachineLearning │ ├── BinaryClassifier.h │ ├── BinaryClassifierAdaBoost.h │ ├── BinaryClassifierBagged.h │ ├── BinaryClassifierDecisionTree.h │ ├── BinaryClassifierLogisticRegression.h │ ├── BinaryClassifierMulticlass.h │ ├── BinaryClassifierNaiveBayes.h │ ├── BinaryClassifierSVM.h │ ├── ClassifierDatasetTransformer.h │ ├── ClassifierDatasetTransformerPCA.h │ ├── MulticlassClassifier.h │ ├── MulticlassClassifierAdaBoostM1.h │ ├── MulticlassClassifierDecisionTree.h │ ├── MulticlassClassifierGenerator.h │ ├── MulticlassClassifierNearestNeighborANN.h │ ├── MulticlassClassifierNearestNeighborBruteForce.h │ ├── MulticlassClassifierOneVsAll.h │ ├── MulticlassClassifierPairwiseCoupling.h │ ├── RegressionLearner.h │ ├── RegressionLearnerBagged.h │ ├── RegressionLearnerDecisionTree.h │ └── RegressionLearnerNearestNeighbor.h ├── Math │ ├── BayesNet.cpp │ ├── BayesNet.h │ ├── BipartiteMatcher.cpp │ ├── BipartiteMatcher.h │ ├── ClusteringEvaluationMetric.cpp │ ├── ClusteringEvaluationMetric.h │ ├── DenseMatrix.cpp │ ├── DenseMatrix.h │ ├── DirectedGraph.h │ ├── Distance.cpp │ ├── Distance.h │ ├── FourierTransform.cpp │ ├── Gaussian1D.cpp │ ├── Gaussian1D.h │ ├── Graph.cpp │ ├── Graph.h │ ├── GraphicalModel.cpp │ ├── GraphicalModel.h │ ├── Intersect.cpp │ ├── Intersect.h │ ├── KMeansClustering.h │ ├── KMeansClusteringFloat.h │ ├── KMeansClusteringKDTree.cpp │ ├── KMeansClusteringKDTree.h │ ├── Line3D.cpp │ ├── Line3D.h │ ├── LineSegment2D.cpp │ ├── LineSegment2D.h │ ├── LineSegment3D.cpp │ ├── LineSegment3D.h │ ├── LinearSolver.cpp │ ├── LinearSolver.h │ ├── Matrix4.cpp │ ├── Matrix4.h │ ├── MixtureOfGaussians.h │ ├── PCA.cpp │ ├── PCA.h │ ├── Plane.cpp │ ├── Plane.h │ ├── RGBColor.cpp │ ├── RGBColor.h │ ├── RandomNumbers.h │ ├── Ray3D.cpp │ ├── Ray3D.h │ ├── Rectangle2f.inl │ ├── Rectangle2i.inl │ ├── Rectangle3f.inl │ ├── SpaceVector.cpp │ ├── SpaceVector.h │ ├── SparseMatrix.cpp │ ├── SparseMatrix.h │ ├── SpectralClustering.cpp │ ├── SpectralClustering.h │ ├── TriangleIntersection.cpp │ ├── Vec2f.inl │ ├── Vec2i.inl │ ├── Vec3f.inl │ ├── Vec3i.inl │ ├── Vec4f.inl │ └── VecNf.inl ├── Multithreading │ ├── Mutex.h │ ├── TaskList.h │ ├── Thread.cpp │ ├── Thread.h │ ├── ThreadPool.cpp │ ├── ThreadPool.h │ ├── WorkerThread.cpp │ └── WorkerThread.h ├── Networking │ ├── Pipe.cpp │ └── Pipe.h ├── Utility │ ├── AudioCapture.cpp │ ├── AudioCapture.h │ ├── ColorGenerator.cpp │ ├── ColorGenerator.h │ ├── Console.cpp │ ├── Console.h │ ├── DialogBoxes.cpp │ ├── DialogBoxes.h │ ├── DialogInterface.cpp │ ├── DialogInterface.h │ ├── Directory.cpp │ ├── Directory.h │ ├── FileCollection.cpp │ ├── FileCollection.h │ ├── FrameTimer.cpp │ ├── FrameTimer.h │ ├── ImageCompressor.h │ ├── ImageCompressorBlockPalette.cpp │ ├── ImageCompressorJPEG.cpp │ ├── ImageCompressorJPEG2000.cpp │ ├── Indicator.cpp │ ├── Indicator.h │ ├── MenuInterface.cpp │ ├── MenuInterface.h │ ├── MeshSampler.cpp │ ├── MeshSampler.h │ ├── MovieExporter.cpp │ ├── MovieExporter.h │ ├── Palette.cpp │ ├── Palette.h │ ├── ParameterFile.cpp │ ├── ParameterFile.h │ ├── Profiler.cpp │ ├── Profiler.h │ ├── Stemmer.cpp │ ├── Stemmer.h │ ├── UVAtlas.cpp │ ├── UVAtlas.h │ ├── VideoCompressor.cpp │ ├── VideoCompressor.h │ ├── WindowsTasks.cpp │ ├── WindowsTasks.h │ ├── XMLFile.cpp │ ├── XMLFile.h │ ├── XMLNode.cpp │ └── XMLNode.h └── Windows Controller │ ├── ApplicationWindow.cpp │ ├── ApplicationWindow.h │ ├── EventHandler.cpp │ ├── EventHandler.h │ ├── InputManager.cpp │ ├── InputManager.h │ └── WinMain.cpp ├── LICENSE.md ├── README.md ├── ReleaseSheet.props ├── TestingGrounds ├── App.config ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TestingGrounds.csproj └── obj │ ├── Debug │ └── .gitignore │ └── Release │ └── .gitignore └── bin ├── .gitignore ├── BaseCode.dll ├── Provincial.exe ├── README.txt ├── SampleLeaderboardVisualization.png ├── SampleVisualizationAI.txt ├── TestingGroundsInternal.exe ├── TestingGroundsSpawner.exe └── data ├── 25Split.png ├── 25SplitSmall.png ├── 34Split.png ├── 34SplitSmall.png ├── ProsperityLogo.png ├── alchemy.txt ├── all.xlsx ├── base.txt ├── core.txt ├── coreBuyTemplate.png ├── custom.txt ├── iconA.ico ├── iconA.png ├── iconB.ico ├── iconB.png ├── intrigue.txt ├── kingdoms_g32_c1 ├── auto_0257bc783981223b5378a6b53089605f.txt ├── auto_02b756af0372c501858747cde840bdc4.txt ├── auto_036acfd359ac893b937b8090f740f7e7.txt ├── auto_04898be2609501e50440ed38ca1f09ea.txt ├── auto_05b260f124cf041c42e231ce7d332061.txt ├── auto_0659e410fe682e5daf38be83a47c528f.txt ├── auto_0700e1cad0525d74cd1b4362db4ef3ea.txt ├── auto_08e2f3124e6a5a751042cf37f660de00.txt ├── auto_0a8380c1f4b353754a9207d97c13a81a.txt ├── auto_0be42d5e3505aa0870edbc3409390017.txt ├── auto_0c14c9d4f98b64bab48499297d2c0a88.txt ├── auto_0c63bba1b1a395e9a53fc3c64a6b8dd8.txt ├── auto_0df36d97565bd1252df9900f16d0edcb.txt ├── auto_0e006fcbb3aaa55e2fdfa4ac7338c250.txt ├── auto_0ec1eb12808228ad88ecb84813d2310e.txt ├── auto_1112a45a5a671c0c40619c83faf9fb1f.txt ├── auto_1236614f90acd1f57a9cf3990a73dea2.txt ├── auto_12b7fd92532318606937bb27468a6a84.txt ├── auto_13004cea52fb26e1553360322499ae75.txt ├── auto_155a359172a36792a4f118fd00150ed9.txt ├── auto_1a4a2fab9e243602de98aa2a7c31b1fb.txt ├── auto_1c6d2db848d605b343bf3a4a5a39d3dc.txt ├── auto_1c8f738e205f0cb8c93756737665a7e2.txt ├── auto_228fd827b5a9c558f30331f5f03251c2.txt ├── auto_242aa5c738c063f38c06ed326a43061d.txt ├── auto_2649a7a66ab3195c27194073dc6300a4.txt ├── auto_2826c39c0fae75ecb82ad0c31232cb23.txt ├── auto_28e65403299f8728fa0f915c8c37735c.txt ├── auto_2ac97a36217b06b429e3122d6dfc2264.txt ├── auto_2b3e6660ab0116f2622f8b2dab54864d.txt ├── auto_2be2fe827609d41fc1d8674a8cdd6b84.txt ├── auto_2e2b1268eba3de26a13a2dd0ecf23f9b.txt ├── auto_2e6697d2943aab229dfca1ddb0e37481.txt ├── auto_2f211899b768b8421516c40d0efb2753.txt ├── auto_30e5ddc261c673e12450db2a559a0757.txt ├── auto_342a18af96075fd9c9e1d4bdae6174f2.txt ├── auto_349356ec05da058e75a74cf7716f04b5.txt ├── auto_35a0618273acd4dd3be66cca9dc75058.txt ├── auto_37b6d429eebc8b71d2235f90fe6563af.txt ├── auto_3836b8b05685127256325fa37cd115c4.txt ├── auto_39320f9489577b50adf66bcb993fa94b.txt ├── auto_39348854119f0207c3eca73c269c3f58.txt ├── auto_39978ea7b1e1070923723d7a9e534759.txt ├── auto_39bbb3616735e85419a9521040d5d6ac.txt ├── auto_39d0b443952a557a8f86378f79f7c3a2.txt ├── auto_3e95ea044740bd0ec79f6e6b1fe9f8fe.txt ├── auto_4121a1ac2a0571454b61ebeaae2f54b6.txt ├── auto_41caaa8ec1335b086ede1c304d574153.txt ├── auto_45c4c49710ebc3b37b072b1798e5af63.txt ├── auto_4a57f19b1aafdccbd619aba0d448f6d0.txt ├── auto_4da48b248a516429bf161fc33e63194b.txt ├── auto_51d2d430df7ec3f4bd54a75763e9561d.txt ├── auto_51e331603f6da58e95ccf196d201057b.txt ├── auto_5211bebfd317fb6d71b63fa36b4c47c6.txt ├── auto_539ca186c46d4648d9aa1783d1753f17.txt ├── auto_56881bf74779d80961a6f367bd9cdb83.txt ├── auto_5a0c0ab9f02a30997d56fae424c6fbc5.txt ├── auto_5cbfddfc5fc8f79cce9eb3d302099cb4.txt ├── auto_5cf5ec2d987b3a2e51f041670e9f7b8f.txt ├── auto_6010c220c20de37dbdbbd717e8c04054.txt ├── auto_608da0027c72f69d9b2cd5f9cba17081.txt ├── auto_6202453a0461d74868306e7c700e41ad.txt ├── auto_6628b9d22394adc02441e833b11e2da3.txt ├── auto_677326dc3e2faf5000300aa839630259.txt ├── auto_67e9a59df81af91f8b580f1d5a75d465.txt ├── auto_67fe23bd45b7f4dc91a0c1ad4974c828.txt ├── auto_6b1c811fac2c2f50267c3b3ab67f6607.txt ├── auto_6c41ceb0fbd95de17028fb74c492453b.txt ├── auto_6d65e8d7f61966c0f6649fb5a21e3865.txt ├── auto_73c3f98e7a581a7ee43022f632eaf683.txt ├── auto_74c1acfaf08d5b0e49f16f3a501566d9.txt ├── auto_77ae51d30f0af6cee6916f7455045c39.txt ├── auto_78aaec0a10ae1a4a95b24bbe31622d9e.txt ├── auto_791cca0409134c86f6419039eb0895e0.txt ├── auto_7a13c357a1edb4e28a6273d474b07a3f.txt ├── auto_7b2f9700c060c0a7150ba4c7636ea9b4.txt ├── auto_7d389ce5472dfafc4bf4f8f8333ee227.txt ├── auto_80f3b0f8750afc592249ca33093522ba.txt ├── auto_8428b1eb1857d43395bc2c0c587f1a19.txt ├── auto_84690612b07f7e21a9a408077fdde641.txt ├── auto_850222e06caf08613708924dbe67fcdd.txt ├── auto_871ba54ac7f8b7c1fd5ea4bcdc33d723.txt ├── auto_87cb2b8aa96f18818b1e9dc0480a3662.txt ├── auto_88480f3f21f6adaddf13862a09303071.txt ├── auto_899226bda89cd8767360691017c4d359.txt ├── auto_8a2fb25e55b87e0e26b9bea2f2732264.txt ├── auto_8cebfde2b343a0d26d5db0b18ce2156c.txt ├── auto_8eb3adcc61268b4ad5193afcf938724b.txt ├── auto_93b018391000b4863d2dcc59001fbb09.txt ├── auto_95c603105c267c343f7bf7482db1280d.txt ├── auto_968cad48ed023256c18a44dede8dbfdb.txt ├── auto_993fe64ec1b888bcd3536b1eb4d8e31b.txt ├── auto_9ad42b0b592d30067497cba8d2e521ea.txt ├── auto_9cb0cc4d07bea98d87616ef5041e510c.txt ├── auto_9ce1ce675bad0a4560547139027a9a62.txt ├── auto_9e824a89a1d60e8107221046964f7b64.txt ├── auto_9ee9e9f96bef83e589fbc765861a08fe.txt ├── auto_a65b3ab729a236d21ce54af493858cd9.txt ├── auto_a6b0794dfa6ef26fcbd6a0746b31fc56.txt ├── auto_a88fdc864a701bb2ab421c9b689c8db5.txt ├── auto_a9e7f5d007a96ad85ea5254c59fc2e06.txt ├── auto_ab0f5b081a911cd81d0e269ca2cfd3db.txt ├── auto_abed00754367adecae74b9baab8e5416.txt ├── auto_ace721b95858f155285269cea89b42e0.txt ├── auto_ad05dfd40a938e3134cd722069e2fc1b.txt ├── auto_ad2b164ac58a83d61b2d31e50bcc7f91.txt ├── auto_ae93293d714b9ed05dbae822633c8c4c.txt ├── auto_b49dbab8cb415f75290bd67964d06db1.txt ├── auto_b5189be68ef567273ec165e395e0f1b4.txt ├── auto_b9fc9e633f7cc0111210a99232c66c8b.txt ├── auto_ba1412a9d38d6a098753ea558fa9f555.txt ├── auto_bb05d2dad6b910a06ebce27f1ba47327.txt ├── auto_bbc2b70c0e2dc47ced28c174080f7271.txt ├── auto_bc88c261d7626d5a23015ecee794645f.txt ├── auto_bf6c3b57878a9f8f41c66dd2858c36a4.txt ├── auto_c1961b9e8f0217797d14676769e8ca0d.txt ├── auto_c4566c8451727796a499c52348c37d29.txt ├── auto_c4e6c2b12c8d9ed0885f59320854d569.txt ├── auto_cd8b998c08e9b787ddf8d2e670b63104.txt ├── auto_d1bf92e9df2cda251ca692ab7769cebd.txt ├── auto_d23e1ca29199f03ef3e6d60253a704c6.txt ├── auto_d4843e373cba33e314e71ba4544b87c2.txt ├── auto_d6385c3eecd29224190e4d043216e923.txt ├── auto_d7f8b4a34d13eb87f71785dbc917d0f5.txt ├── auto_dabe25ed7ce4008bcf6a3ddd026b1ab3.txt ├── auto_db33eb575bda32a5f80cfdb2f43993da.txt ├── auto_dbdd32d407baf1872c8b48fc47a0ab22.txt ├── auto_dd2fac1af4108f08a1201302973d7d69.txt ├── auto_debe98d6db80ab76ad1fc8341efe123f.txt ├── auto_e00efc706e9bd1b8fa88db0fde04a09c.txt ├── auto_e06df4a53d2fc90c61c22dd4553646da.txt ├── auto_e0a93f9215e04d68b22faf871746315c.txt ├── auto_e48566f8548597adea149ca6cabca0dc.txt ├── auto_e8ced89c21fead2d43790f9421b717a3.txt ├── auto_e9bcc67f29d3dfe22eb484b98b28cc01.txt ├── auto_eacfc95747bf8c132d6bbe833a3760cd.txt ├── auto_ebe0b7d215a984edac9fb49dd9dde2ba.txt ├── auto_ee6d5ab6beaecbaaa133739facc2ce0a.txt ├── auto_f12ac278c2cfc616f3c99dfae96eddaa.txt ├── auto_f1d9732dd9b289823617ad420b5a03d6.txt ├── auto_f74ec6b1cbf1a6cfcb8660e69c7acdab.txt ├── auto_f7888c5d1d4059275d1e07cf471a6575.txt ├── auto_f9a37389e50cee6d3a7e5ac6b09c51c4.txt ├── auto_fab18a1b1eb1b4b3560be013b6407866.txt ├── auto_fbea5a2cb411fda93aa949e789165a59.txt └── auto_fed9585e10b2b6c19590a8fbb6c666a1.txt ├── parameters.txt ├── priority.txt ├── prosperity.txt ├── prosperityBuyTemplate.png ├── seaside.txt ├── skipList.txt └── strongCards.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /BaseSheet.props 2 | /DominionAI.opensdf 3 | /DominionAI.sdf 4 | /ReleaseSheet.props 5 | -------------------------------------------------------------------------------- /BaseSheet.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | ../../;../../Include;../Include;C:\Program Files %28x86%29\Microsoft DirectX SDK %28June 2010%29\Include;$(IncludePath) 7 | 8 | 9 | ../../Libraries;../Libraries;C:\Program Files %28x86%29\Microsoft DirectX SDK %28June 2010%29\Lib\x86;$(LibraryPath) 10 | 11 | 12 | 13 | true 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /DominionApp/Constants.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace BaseCodeApp 7 | { 8 | class Constants 9 | { 10 | public const int croppedWidth = 50; 11 | public const int croppedHeight = 38; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /DominionApp/DominionApp.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | true 5 | .\ 6 | 7 | 8 | true 9 | .\ 10 | 11 | -------------------------------------------------------------------------------- /DominionApp/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace BaseCodeApp 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new MainWindow()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /DominionApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.239 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace BaseCodeApp.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /DominionApp/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DominionApp/iconB.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/DominionApp/iconB.ico -------------------------------------------------------------------------------- /DominionApp/obj/x86/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | /BaseCodeApp.ConfigWindow.resources 2 | /BaseCodeApp.DebugWindow.resources 3 | /BaseCodeApp.MainWindow.resources 4 | /BaseCodeApp.Properties.Resources.resources 5 | /DesignTimeResolveAssemblyReferencesInput.cache 6 | /DominionApp.csproj.FileListAbsolute.txt 7 | /DominionApp.csproj.GenerateResource.Cache 8 | /Provincial.exe 9 | /Provincial.pdb 10 | -------------------------------------------------------------------------------- /DominionApp/obj/x86/Release/.gitignore: -------------------------------------------------------------------------------- 1 | /BaseCodeApp.ConfigWindow.resources 2 | /BaseCodeApp.DebugWindow.resources 3 | /BaseCodeApp.MainWindow.resources 4 | /BaseCodeApp.Properties.Resources.resources 5 | /DesignTimeResolveAssemblyReferencesInput.cache 6 | /DominionApp.csproj.FileListAbsolute.txt 7 | /DominionApp.csproj.GenerateResource.Cache 8 | /Provincial.exe 9 | /Provincial.pdb 10 | -------------------------------------------------------------------------------- /DominionDLL/App.h: -------------------------------------------------------------------------------- 1 | class App 2 | { 3 | public: 4 | void Init(); 5 | 6 | UINT32 ProcessCommand(const String &command); 7 | int QueryIntegerByName(const String &s); 8 | const char *QueryStringByName(const String &s); 9 | double QueryDoubleByName(const String &s); 10 | 11 | private: 12 | 13 | AppParameters _parameters; 14 | 15 | DominionGame _game; 16 | CardDatabase _cards; 17 | GameOptions _options; 18 | 19 | MetaTestChamber _chamber; 20 | 21 | String _queryString; 22 | double _AITestResult; 23 | }; 24 | -------------------------------------------------------------------------------- /DominionDLL/AppParameters.cpp: -------------------------------------------------------------------------------- 1 | #include "Main.h" 2 | -------------------------------------------------------------------------------- /DominionDLL/AppParameters.h: -------------------------------------------------------------------------------- 1 | struct AppParameters 2 | { 3 | void Init(const String ¶meterFilename) 4 | { 5 | ParameterFile file(parameterFilename); 6 | useCustomCards = file.GetBoolean("useCustomCards"); 7 | } 8 | 9 | bool useCustomCards; 10 | }; -------------------------------------------------------------------------------- /DominionDLL/BaseCodeDLL.cpp: -------------------------------------------------------------------------------- 1 | #include "Main.h" 2 | 3 | BASECODEDLL_API void* __stdcall BCInit() 4 | { 5 | App *app = new App; 6 | app->Init(); 7 | return app; 8 | } 9 | 10 | BASECODEDLL_API UINT32 __stdcall BCProcessCommand(void *context, const char *s) 11 | { 12 | if(context == NULL) return 1; 13 | App &app = *(App*)context; 14 | UINT32 result = app.ProcessCommand(String(s)); 15 | return result; 16 | } 17 | 18 | BASECODEDLL_API const char* __stdcall BCQueryStringByName(void *context, const char *s) 19 | { 20 | if(context == NULL) return NULL; 21 | App &app = *(App*)context; 22 | return app.QueryStringByName(s); 23 | } 24 | 25 | BASECODEDLL_API int __stdcall BCQueryIntegerByName(void *context, const char *s) 26 | { 27 | if(context == NULL) return 0; 28 | App &app = *(App*)context; 29 | return app.QueryIntegerByName(s); 30 | } 31 | 32 | BASECODEDLL_API double __stdcall BCQueryDoubleByName(void *context, const char *s) 33 | { 34 | if(context == NULL) return 0; 35 | App &app = *(App*)context; 36 | return app.QueryDoubleByName(s); 37 | } -------------------------------------------------------------------------------- /DominionDLL/BaseCodeDLL.def: -------------------------------------------------------------------------------- 1 | LIBRARY BaseCode.dll 2 | 3 | EXPORTS 4 | BCInit 5 | BCProcessCommand 6 | BCQueryStringByName 7 | BCQueryIntegerByName 8 | BCQueryDoubleByName -------------------------------------------------------------------------------- /DominionDLL/BaseCodeDLL.h: -------------------------------------------------------------------------------- 1 | // The following ifdef block is the standard way of creating macros which make exporting 2 | // from a DLL simpler. All files within this DLL are compiled with the BASECODEDLL_EXPORTS 3 | // symbol defined on the command line. This symbol should not be defined on any project 4 | // that uses this DLL. This way any other project whose source files include this file see 5 | // BASECODEDLL_API functions as being imported from a DLL, whereas this DLL sees symbols 6 | // defined with this macro as being exported. 7 | #ifdef BASECODEDLL_EXPORTS 8 | #define BASECODEDLL_API __declspec(dllexport) 9 | #else 10 | #define BASECODEDLL_API __declspec(dllimport) 11 | #endif 12 | 13 | BASECODEDLL_API void* __stdcall BCInit(); 14 | BASECODEDLL_API UINT32 __stdcall BCProcessCommand(void *context, const char *s); 15 | BASECODEDLL_API const char* __stdcall BCQueryStringByName(void *context, const char *s); 16 | BASECODEDLL_API int __stdcall BCQueryIntegerByName(void *context, const char *s); 17 | BASECODEDLL_API double __stdcall BCQueryDoubleByName(void *context, const char *s); -------------------------------------------------------------------------------- /DominionDLL/CardEffect.h: -------------------------------------------------------------------------------- 1 | class CardEffect 2 | { 3 | public: 4 | virtual void PlayAction(State &s) const {} 5 | virtual bool CanProcessDecisions() const 6 | { 7 | return false; 8 | } 9 | virtual void ProcessDecision(State &s, const DecisionResponse &response) const 10 | { 11 | SignalError("Card does not support decisions"); 12 | } 13 | virtual void ProcessDuration(State &s) const {} 14 | virtual int VictoryPoints(const State &s, UINT playerIndex) const 15 | { 16 | return 0; 17 | } 18 | Card *c; 19 | }; 20 | -------------------------------------------------------------------------------- /DominionDLL/CardEffectAlchemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/DominionDLL/CardEffectAlchemy.h -------------------------------------------------------------------------------- /DominionDLL/Constants.h: -------------------------------------------------------------------------------- 1 | 2 | #ifdef LOGGING_CONSTANT 3 | const bool logging = false; 4 | const bool decisionText = false; 5 | #else 6 | extern bool logging; 7 | extern bool decisionText; 8 | #endif -------------------------------------------------------------------------------- /DominionDLL/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | /AIUtility.obj 2 | /App.obj 3 | /AppParameters.obj 4 | /BaseCode.Build.CppClean.log 5 | /BaseCode.pch 6 | /BaseCodeDLL.obj 7 | /BuyAgenda.obj 8 | /CL.11220.read.1.tlog 9 | /CL.11220.write.1.tlog 10 | /CL.13400.read.1.tlog 11 | /CL.13400.write.1.tlog 12 | /CL.13872.read.1.tlog 13 | /CL.13872.write.1.tlog 14 | /CL.13896.read.1.tlog 15 | /CL.13896.write.1.tlog 16 | /CL.7432.read.1.tlog 17 | /CL.7432.write.1.tlog 18 | /CL.7576.read.1.tlog 19 | /CL.7576.write.1.tlog 20 | /CL.7916.read.1.tlog 21 | /CL.7916.write.1.tlog 22 | /CL.7932.read.1.tlog 23 | /CL.7932.write.1.tlog 24 | /CL.read.1.tlog 25 | /CL.write.1.tlog 26 | /CardDatabase.obj 27 | /DLLMain.obj 28 | /DominionDLL.lastbuildstate 29 | /DominionDLL.log 30 | /DominionDLL.write.1.tlog 31 | /DominionGame.obj 32 | /Engine.obj 33 | /Event.obj 34 | /GameData.obj 35 | /Main.obj 36 | /MetaTestChamber.obj 37 | /PlayerHeuristic.obj 38 | /PlayerRandom.obj 39 | /State.obj 40 | /TestChamber.obj 41 | /cl.command.1.tlog 42 | /link-cvtres.read.1.tlog 43 | /link-cvtres.write.1.tlog 44 | /link-rc.read.1.tlog 45 | /link-rc.write.1.tlog 46 | /link.command.1.tlog 47 | /link.read.1.tlog 48 | /link.write.1.tlog 49 | /vc110.idb 50 | /vc110.pdb 51 | -------------------------------------------------------------------------------- /DominionDLL/DominionDLL.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(ProjectDir)../bin 5 | WindowsLocalDebugger 6 | 7 | -------------------------------------------------------------------------------- /DominionDLL/DominionGame.cpp: -------------------------------------------------------------------------------- 1 | #include "Main.h" 2 | 3 | #ifndef LOGGING_CONSTANT 4 | bool logging = true; 5 | bool decisionText = true; 6 | #endif 7 | 8 | void DominionGame::Init(const CardDatabase &cards) 9 | { 10 | _data.Init(cards); 11 | } 12 | 13 | void DominionGame::NewGame(const Vector &playerList, const GameOptions &options) 14 | { 15 | _data.NewGame(playerList, options); 16 | _state.NewGame(_data); 17 | } 18 | -------------------------------------------------------------------------------- /DominionDLL/DominionGame.h: -------------------------------------------------------------------------------- 1 | 2 | class DominionGame 3 | { 4 | public: 5 | void NewGame(const Vector &playerList, const GameOptions &options); 6 | void Init(const CardDatabase &cards); 7 | __forceinline State& state() 8 | { 9 | return _state; 10 | } 11 | __forceinline const GameData& data() const 12 | { 13 | return _data; 14 | } 15 | 16 | private: 17 | GameData _data; 18 | State _state; 19 | }; -------------------------------------------------------------------------------- /DominionDLL/Enums.h: -------------------------------------------------------------------------------- 1 | 2 | enum Phase 3 | { 4 | PhaseAction, 5 | PhaseTreasure, 6 | PhaseBuy, 7 | PhaseCleanup 8 | }; 9 | 10 | enum DecisionType 11 | { 12 | DecisionNone, 13 | DecisionSelectCards, 14 | DecisionDiscreteChoice, 15 | DecisionGameOver, 16 | }; 17 | 18 | enum GainZone 19 | { 20 | GainToDiscard, 21 | GainToDiscardIronworks, 22 | GainToHand, 23 | GainToDeckTop, 24 | GainToTrash, 25 | }; 26 | 27 | enum DiscardZone 28 | { 29 | DiscardFromHand, 30 | DiscardFromSideZone, 31 | }; 32 | 33 | enum StartingCondition 34 | { 35 | StartingCondition34Split, 36 | StartingCondition25Split, 37 | StartingConditionRandom, 38 | }; 39 | 40 | enum CardFilter 41 | { 42 | FilterAny, 43 | FilterTreasure, 44 | }; -------------------------------------------------------------------------------- /DominionDLL/EventAlchemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/DominionDLL/EventAlchemy.h -------------------------------------------------------------------------------- /DominionDLL/Main.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Main.cpp 3 | Written by Matthew Fisher 4 | 5 | Source file for precompiled header. 6 | */ 7 | #include "Main.h" -------------------------------------------------------------------------------- /DominionDLL/MetaTestChamber.h: -------------------------------------------------------------------------------- 1 | 2 | class MetaTestChamber 3 | { 4 | public: 5 | void StrategizeStart(const CardDatabase &cards, const GameOptions &options, const String &directory, int chamberCount); 6 | void StrategizeStep(const CardDatabase &cards); 7 | 8 | private: 9 | 10 | Vector _chambers; 11 | }; 12 | -------------------------------------------------------------------------------- /DominionDLL/PlayerRandom.cpp: -------------------------------------------------------------------------------- 1 | #include "Main.h" 2 | 3 | void PlayerRandom::MakeDecision(const State &s, DecisionResponse &response) 4 | { 5 | const DecisionState &d = s.decision; 6 | if(d.type == DecisionSelectCards) 7 | { 8 | int cardsToPick = d.minimumCards; 9 | if(d.maximumCards > d.minimumCards) cardsToPick = rand() % (d.maximumCards - d.minimumCards + 1) + d.minimumCards; 10 | Vector responseIndices; 11 | for(int responseIndex = 0; responseIndex < cardsToPick; responseIndex++) 12 | { 13 | int choice = -1; 14 | do { choice = rand() % d.cardChoices.Length(); } 15 | while(responseIndices.Contains(choice)); 16 | responseIndices.PushEnd(choice); 17 | response.cards.PushEnd(d.cardChoices[choice]); 18 | } 19 | } 20 | else if(d.type == DecisionDiscreteChoice) 21 | { 22 | response.choice = rand() % d.minimumCards; 23 | } 24 | else 25 | { 26 | SignalError("Invalid decision type"); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /DominionDLL/Release/.gitignore: -------------------------------------------------------------------------------- 1 | /AIUtility.obj 2 | /App.obj 3 | /AppParameters.obj 4 | /BaseCode.pch 5 | /BaseCodeDLL.obj 6 | /BuyAgenda.obj 7 | /CL.11644.read.1.tlog 8 | /CL.11644.write.1.tlog 9 | /CL.12116.read.1.tlog 10 | /CL.12116.write.1.tlog 11 | /CL.12328.read.1.tlog 12 | /CL.12328.write.1.tlog 13 | /CL.12376.read.1.tlog 14 | /CL.12376.write.1.tlog 15 | /CL.12436.read.1.tlog 16 | /CL.12436.write.1.tlog 17 | /CL.12448.read.1.tlog 18 | /CL.12448.write.1.tlog 19 | /CL.12460.read.1.tlog 20 | /CL.12460.write.1.tlog 21 | /CL.12496.read.1.tlog 22 | /CL.12496.write.1.tlog 23 | /CL.read.1.tlog 24 | /CL.write.1.tlog 25 | /CardDatabase.obj 26 | /DLLMain.obj 27 | /DominionDLL.lastbuildstate 28 | /DominionDLL.log 29 | /DominionDLL.write.1.tlog 30 | /DominionGame.obj 31 | /Engine.obj 32 | /Event.obj 33 | /GameData.obj 34 | /Main.obj 35 | /MetaTestChamber.obj 36 | /PlayerHeuristic.obj 37 | /PlayerRandom.obj 38 | /State.obj 39 | /TestChamber.obj 40 | /cl.command.1.tlog 41 | /link-cvtres.read.1.tlog 42 | /link-cvtres.write.1.tlog 43 | /link-rc.read.1.tlog 44 | /link-rc.write.1.tlog 45 | /link.command.1.tlog 46 | /link.read.1.tlog 47 | /link.write.1.tlog 48 | /vc110.pdb 49 | -------------------------------------------------------------------------------- /Engine/Core/ClassList.h: -------------------------------------------------------------------------------- 1 | /* 2 | ClassList.h 3 | Written by Matthew Fisher 4 | 5 | Forward declarations for classes/structures 6 | */ 7 | 8 | //Graphics objects 9 | struct RGBColor; 10 | class PointSet; 11 | class KDTree3; 12 | 13 | //Math objects 14 | struct Vec3f; 15 | struct Vec3f; 16 | struct Vec4f; 17 | struct Plane; 18 | struct Line3D; 19 | 20 | //Mesh objects 21 | struct MeshVertex; 22 | class BaseMesh; 23 | class D3D9Mesh; 24 | class D3D10Mesh; 25 | class Mesh; 26 | 27 | //D3D objects 28 | class D3D9Font; 29 | 30 | //Subdivision objects 31 | class HalfEdge; 32 | class FullEdge; 33 | class Triangle; 34 | class Vertex; 35 | class ComplexMesh; 36 | 37 | //Application/Windows objects 38 | class InputManager; 39 | class FrameTimer; 40 | class ApplicationWindow; 41 | 42 | //Graphics devices/API objects 43 | class GraphicsDevice; 44 | class OpenGLGraphicsDevice; 45 | class D3D9GraphicsDevice; 46 | class D3D10GraphicsDevice; 47 | class SoftwareGraphicsDevice; 48 | 49 | //Other objects 50 | class String; 51 | class UnicodeString; 52 | //template class Vector; 53 | 54 | //Texture objects 55 | class D3D10Texture; 56 | -------------------------------------------------------------------------------- /Engine/Core/Compression.h: -------------------------------------------------------------------------------- 1 | /* 2 | Compression.h 3 | Written by Matthew Fisher 4 | */ 5 | 6 | class Compression 7 | { 8 | public: 9 | static void CompressStreamToFile(const Vector &stream, const String &filename); 10 | static void CompressStreamToFile(const BYTE *stream, UINT byteCount, const String &filename); 11 | static void DecompressStreamFromFile(const String &filename, Vector &stream); 12 | static void DecompressStreamFromMemory(const Vector &compressedStream, Vector &decompressedStream); 13 | static void DecompressStreamFromMemory(const BYTE *compressedStream, UINT compressedStreamLength, BYTE *decompressedStream, UINT decompressedStreamLength); 14 | }; 15 | -------------------------------------------------------------------------------- /Engine/Graphics Objects/MatrixController.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | MatrixController.cpp 3 | Written by Matthew Fisher 4 | 5 | MatrixController manages the 3 transformations (world, view, projection) central to the graphics pipeline. 6 | */ 7 | 8 | -------------------------------------------------------------------------------- /Engine/Graphics Objects/MatrixController.h: -------------------------------------------------------------------------------- 1 | /* 2 | MatrixController.h 3 | Written by Matthew Fisher 4 | 5 | MatrixController manages the 3 transformations (world, view, projection) central to the graphics pipeline. 6 | */ 7 | 8 | class MatrixController 9 | { 10 | public: 11 | MatrixController() {} 12 | MatrixController(const Matrix4 &Input) 13 | { 14 | World = Matrix4::Identity(); 15 | View = Matrix4::Identity(); 16 | Perspective = Input; 17 | } 18 | 19 | __forceinline Matrix4 TotalMatrix() const 20 | { 21 | return World * View * Perspective; 22 | } 23 | 24 | Matrix4 World, View, Perspective; 25 | }; 26 | -------------------------------------------------------------------------------- /Engine/Graphics Objects/MeshVertex.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | MeshVertex.cpp 3 | Written by Matthew Fisher 4 | 5 | MeshVertex Represents a single vertex in a mesh structure. 6 | */ 7 | 8 | void Interpolate(const MeshVertex &sv, const MeshVertex &ev, MeshVertex &out, float s) 9 | { 10 | int i; 11 | unsigned char *color1,*color2,*color; 12 | color = (unsigned char *) &out.Color; 13 | color1 = (unsigned char *) &sv.Color; 14 | color2 = (unsigned char *) &ev.Color; 15 | for(i=0;i<3;i++) 16 | color[i] = unsigned char(color1[i] + int(s * (color2[i] - color1[i]))); //interpolate each component of the color seperately 17 | 18 | out.TexCoord.x = sv.TexCoord.x + s * (ev.TexCoord.x - sv.TexCoord.x); 19 | out.TexCoord.y = sv.TexCoord.y + s * (ev.TexCoord.y - sv.TexCoord.y); //interpolate the texture coordinates 20 | 21 | out.Normal = sv.Normal + s * (ev.Normal - sv.Normal); //interpolate the normal vector 22 | float Len = out.Normal.Length(); 23 | if(Len == 0.0f) 24 | { 25 | out.Normal = sv.Normal; //renormalize the normal vector 26 | } 27 | else 28 | { 29 | out.Normal /= Len; 30 | } 31 | 32 | out.Pos = sv.Pos + s * (ev.Pos - sv.Pos); //interpolate the position 33 | } 34 | -------------------------------------------------------------------------------- /Engine/Graphics Objects/MeshVertex.h: -------------------------------------------------------------------------------- 1 | /* 2 | MeshVertex.h 3 | Written by Matthew Fisher 4 | 5 | MeshVertex Represents a single vertex in a mesh structure. 6 | */ 7 | 8 | struct MeshVertex 9 | { 10 | MeshVertex() {} 11 | explicit MeshVertex(const Vec3f &_Pos) 12 | { 13 | Pos = _Pos; 14 | Normal = Vec3f::Origin; 15 | Color = RGBColor::White; 16 | TexCoord = Vec2f::Origin; 17 | } 18 | MeshVertex(const Vec3f &_Pos, const Vec3f &_Normal, RGBColor _Color, const Vec2f &_TexCoord) 19 | { 20 | Pos = _Pos; 21 | Normal = _Normal; 22 | Color = _Color; 23 | TexCoord = _TexCoord; 24 | } 25 | 26 | // 27 | // Static helper functions 28 | // 29 | static void Interpolate(const MeshVertex &sv, const MeshVertex &ev, MeshVertex &out, float s); 30 | 31 | // 32 | // The order of these elements matters for D3D 33 | // 34 | Vec3f Pos; // position of the vertex in 3-space 35 | Vec3f Normal; // vector normal to the surface passing through this vertex 36 | RGBColor Color; // color of this vertex 37 | Vec2f TexCoord; // x and y texture coordinates of this vertex 38 | }; 39 | -------------------------------------------------------------------------------- /Engine/Graphics Objects/RayIntersector.h: -------------------------------------------------------------------------------- 1 | /* 2 | RayIntersector.h 3 | Written by Matthew Fisher 4 | 5 | Abstract interface for ray-triangle mesh intersections. 6 | */ 7 | 8 | class RayIntersector 9 | { 10 | public: 11 | struct Intersection 12 | { 13 | UINT FaceIndex; 14 | Vec3f Pt; 15 | }; 16 | struct RayIntersectionSorter 17 | { 18 | RayIntersectionSorter(const Vec3f &_BasePt) 19 | { 20 | BasePt = _BasePt; 21 | } 22 | bool operator() (const Intersection &L, const Intersection &R) 23 | { 24 | return (Vec3f::DistSq(L.Pt, BasePt) < Vec3f::DistSq(R.Pt, BasePt)); 25 | } 26 | Vec3f BasePt; 27 | }; 28 | 29 | void InitSingleMesh(const BaseMesh &M) 30 | { 31 | Vector Meshes; 32 | Meshes.PushEnd(&M); 33 | InitMeshList(Meshes); 34 | } 35 | virtual void InitMeshList(const Vector &Meshes) = 0; 36 | virtual void FindIntersections(const Ray3D &R, Vector &IntersectPts) const = 0; 37 | virtual bool FindFirstIntersection(const Ray3D &R, Intersection &Result, float &DistSq) const = 0; 38 | }; 39 | -------------------------------------------------------------------------------- /Engine/Graphics Objects/RayIntersectorBruteForce.h: -------------------------------------------------------------------------------- 1 | /* 2 | RayIntersectorBruteForce.h 3 | Written by Matthew Fisher 4 | 5 | Brute force implementation of RayIntersector. 6 | */ 7 | 8 | class RayIntersectorBruteForce : public RayIntersector 9 | { 10 | public: 11 | void InitMeshList(const Vector &M); 12 | void FindIntersections(const Ray3D &R, Vector &IntersectPts) const; 13 | bool FindFirstIntersection(const Ray3D &R, Intersection &Result, float &DistSq) const; 14 | 15 | private: 16 | //Vector _Vertices; 17 | //Vector _Indices; 18 | Vector _Triangles; 19 | }; 20 | -------------------------------------------------------------------------------- /Engine/MachineLearning/ClassifierDatasetTransformer.h: -------------------------------------------------------------------------------- 1 | template 2 | struct ClassifierDatasetTransformer 3 | { 4 | public: 5 | typedef ClassifierDataset Dataset; 6 | typedef ClassifierExample Example; 7 | 8 | virtual void Init(const Dataset &Examples) = 0; 9 | 10 | virtual UINT DatasetCount() = 0; 11 | virtual void MakeDataset(UINT Index, ClassifierDataset > &Result) = 0; 12 | }; 13 | -------------------------------------------------------------------------------- /Engine/Math/ClusteringEvaluationMetric.h: -------------------------------------------------------------------------------- 1 | class ClusteringEvaluationMetric 2 | { 3 | public: 4 | virtual double Evaluate(const Vector &clusteringA, const Vector &clusteringB) const = 0; 5 | }; 6 | 7 | class ClusteringEvaluationMetricBCubed 8 | { 9 | public: 10 | double Evaluate(const Vector &clusteringA, const Vector &clusteringB) const; 11 | }; 12 | -------------------------------------------------------------------------------- /Engine/Math/Gaussian1D.h: -------------------------------------------------------------------------------- 1 | struct Gaussian1D 2 | { 3 | template 4 | void FitToPoints(const Vector &points) 5 | { 6 | const UINT pointCount = points.Length(); 7 | if(pointCount == 1) 8 | { 9 | mu = points[0]; 10 | sigma = 0.0; 11 | } 12 | else 13 | { 14 | mu = points.Sum() / double(points.Length()); 15 | double sum = 0.0; 16 | for(UINT pointIndex = 0; pointIndex < pointCount; pointIndex++) 17 | { 18 | sum += Math::Square(points[pointIndex] - mu); 19 | } 20 | sigma = sqrt(sum / (pointCount - 1)); 21 | } 22 | } 23 | 24 | double mu, sigma; 25 | }; 26 | -------------------------------------------------------------------------------- /Engine/Math/Graph.h: -------------------------------------------------------------------------------- 1 | struct GraphEdge 2 | { 3 | __forceinline UINT GetOtherVertex(UINT V0) const 4 | { 5 | if(V[0] == V0) 6 | { 7 | return V[1]; 8 | } 9 | else 10 | { 11 | return V[0]; 12 | } 13 | } 14 | 15 | UINT V[2]; 16 | float Weight; 17 | }; 18 | 19 | struct GraphVertex 20 | { 21 | Vector Edges; 22 | 23 | // 24 | // Internal values used by Dijkstra's algorithm 25 | // 26 | float Dist; 27 | int PredecessorEdgeIndex; 28 | bool Visited; 29 | }; 30 | 31 | class Graph 32 | { 33 | public: 34 | Graph(); 35 | Graph(const Vector &Edges); 36 | void FreeMemory(); 37 | //void LoadFromEdgeMesh(const EdgeMesh &M); 38 | void LoadEdges(const Vector &Edges); 39 | 40 | void ShortestPath(UINT StartVertex, UINT EndVertex, Vector &PathEdgeIndices); 41 | 42 | __forceinline const Vector& Edges() 43 | { 44 | return _Edges; 45 | } 46 | 47 | private: 48 | void GenerateAdjacencyList(); 49 | UINT HighestVertexIndex(); 50 | 51 | Vector _Edges; 52 | Vector _Vertices; 53 | }; 54 | -------------------------------------------------------------------------------- /Engine/Math/Line3D.h: -------------------------------------------------------------------------------- 1 | /* 2 | Line3D.h 3 | Written by Matthew Fisher 4 | 5 | A standard 3D line. 6 | */ 7 | 8 | struct Line3D 9 | { 10 | Line3D() {} 11 | Line3D(const Vec3f &_P0, const Vec3f &_D) 12 | { 13 | P0 = _P0; 14 | D = _D; 15 | } 16 | 17 | float DistToPoint(const Vec3f &V) const; 18 | 19 | static bool ClosestPoint(const Line3D &L1, const Line3D &L2, Vec3f &Result1, Vec3f &Result2); 20 | static float Dist(const Line3D &L1, const Line3D &L2); 21 | static float DistSq(const Line3D &L1, const Line3D &L2); 22 | 23 | Vec3f P0; 24 | Vec3f D; 25 | }; 26 | -------------------------------------------------------------------------------- /Engine/Math/LineSegment2D.h: -------------------------------------------------------------------------------- 1 | /* 2 | LineSegment2D.h 3 | Written by Matthew Fisher 4 | 5 | a 2D line segment represented by an origin point and a direction vector. 6 | */ 7 | 8 | struct LineSegment2D 9 | { 10 | LineSegment2D() {} 11 | LineSegment2D(const Vec3f &_P0, const Vec3f &_D) 12 | { 13 | P0 = _P0; 14 | D = _D; 15 | } 16 | 17 | float DistToPoint(const Vec3f &P) const; 18 | float FindLineT(const Vec3f &WorldPos) const; 19 | 20 | void Expand(float Dist); 21 | 22 | __forceinline Vec3f Evaluate(float t) const 23 | { 24 | return (P0 + D * t); 25 | } 26 | __forceinline bool Valid() const 27 | { 28 | return (P0.x == P0.x && P0.y == P0.y && D.x == D.x && D.y == D.y); 29 | } 30 | 31 | static bool Intersect(const LineSegment2D &A, const LineSegment2D &B, Vec3f &Intersection); 32 | 33 | Vec3f P0, D; 34 | }; 35 | -------------------------------------------------------------------------------- /Engine/Math/LineSegment3D.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | LineSegment3D.cpp 3 | Written by Matthew Fisher 4 | 5 | a 3D line segment represented by an origin point and a direction vector. 6 | */ 7 | 8 | void LineSegment3D::Expand(float Dist) 9 | { 10 | Vec3f Extension = Vec3f::Normalize(D) * Dist; 11 | P0 -= Extension; 12 | D += Extension * 2.0f; 13 | } 14 | 15 | float LineSegment3D::FindLineT(const Vec3f &P) const 16 | { 17 | SignalError("Not implemented"); 18 | return 0.0f; 19 | } 20 | 21 | float LineSegment3D::DistToPoint(const Vec3f &P) const 22 | { 23 | float t0 = Vec3f::Dot(D, P - P0) / Vec3f::Dot(D, D); 24 | 25 | float distanceLine = Vec3f::Dist(P, P0 + t0 * D); 26 | 27 | if ( (t0 >= 0) && (t0 <= 1) ) 28 | { 29 | return distanceLine; 30 | } 31 | else 32 | { 33 | float dist1 = Vec3f::Dist(P, P0); 34 | float dist2 = Vec3f::Dist(P, P0 + D); 35 | return Math::Min(dist1, dist2); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Engine/Math/LineSegment3D.h: -------------------------------------------------------------------------------- 1 | /* 2 | LineSegment3D.h 3 | Written by Matthew Fisher 4 | 5 | a 3D line segment represented by an origin point and a direction vector. 6 | */ 7 | 8 | struct LineSegment3D 9 | { 10 | LineSegment3D() {} 11 | LineSegment3D(const Vec3f &_P0, const Vec3f &_D) 12 | { 13 | P0 = _P0; 14 | D = _D; 15 | } 16 | 17 | float DistToPoint(const Vec3f &P) const; 18 | float FindLineT(const Vec3f &WorldPos) const; 19 | 20 | void Expand(float Dist); 21 | 22 | __forceinline Vec3f Evaluate(float t) const 23 | { 24 | return (P0 + D * t); 25 | } 26 | __forceinline bool Valid() const 27 | { 28 | return (P0.Valid() && D.Valid()); 29 | } 30 | 31 | Vec3f P0, D; 32 | }; 33 | -------------------------------------------------------------------------------- /Engine/Math/PCA.h: -------------------------------------------------------------------------------- 1 | template 2 | class PCA 3 | { 4 | public: 5 | void InitFromDensePoints(const Vector &Points, UINT Dimension); 6 | //void InitFromPointMatrix(const SparseMatrix &B); 7 | void InitFromPointMatrix(DenseMatrix &B); 8 | void InitFromMATLAB(UINT Dimension, const String &EigenvectorFilename, const String &EigenvalueFilename, const String &MeanFilename); 9 | 10 | void SaveToFile(const String &filename) const; 11 | void LoadFromFile(const String &filename); 12 | 13 | UINT ReducedDimension(double EnergyPercent); 14 | 15 | void Transform(Vector &Result, const Vector &Input, UINT ReducedDimension); 16 | void InverseTransform(Vector &Result, const Vector &Input); 17 | 18 | void Transform(T *Result, const T *Input, UINT ReducedDimension); 19 | void InverseTransform(T *Result, const T *Input, UINT ReducedDimension); 20 | 21 | private: 22 | void InitFromCorrelationMatrix(const DenseMatrix &M); 23 | void FinalizeFromEigenSystem(); 24 | 25 | Vector _Means; 26 | Vector _Eigenvalues; 27 | DenseMatrix _Eigenvectors; 28 | }; 29 | 30 | #include "PCA.cpp" 31 | -------------------------------------------------------------------------------- /Engine/Math/Ray3D.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Ray3D.cpp 3 | Written by Matthew Fisher 4 | 5 | a 3D ray represented by an origin point and a direction vector. 6 | */ -------------------------------------------------------------------------------- /Engine/Math/Ray3D.h: -------------------------------------------------------------------------------- 1 | /* 2 | Ray3D.h 3 | Written by Matthew Fisher 4 | 5 | a 3D ray represented by an origin point and a direction vector. 6 | */ 7 | 8 | struct Ray3D 9 | { 10 | Ray3D() {} 11 | Ray3D(const Vec3f &_P0, const Vec3f &_D) 12 | { 13 | P0 = _P0; 14 | D = _D; 15 | } 16 | 17 | __forceinline Vec3f Evaluate(float t) const 18 | { 19 | return (P0 + D * t); 20 | } 21 | __forceinline bool Valid() const 22 | { 23 | return (P0.Valid() && D.Valid()); 24 | } 25 | 26 | Vec3f P0, D; 27 | }; 28 | -------------------------------------------------------------------------------- /Engine/Math/SpectralClustering.h: -------------------------------------------------------------------------------- 1 | class SpectralClusteringCache 2 | { 3 | private: 4 | friend class SpectralClustering; 5 | 6 | Vector eigenvalues; 7 | DenseMatrix eigenvectors; 8 | }; 9 | 10 | class SpectralClustering 11 | { 12 | public: 13 | enum Method 14 | { 15 | Unnormalized, 16 | RandomWalk, 17 | Symmetric, 18 | }; 19 | 20 | static void MakeSimilarityMatrix(Vector &points, UINT dimension, float sigma, bool zeroDiagonal, DenseMatrix &result); 21 | static void Cluster(const DenseMatrix &S, UINT kMeansClusters, UINT reducedDimensionCount, Method method, Vector &clusterIDs, SpectralClusteringCache *cache = NULL); 22 | 23 | private: 24 | static void MakeLaplacian(const DenseMatrix &S, Method method, DenseMatrix &L); 25 | }; 26 | -------------------------------------------------------------------------------- /Engine/Multithreading/Mutex.h: -------------------------------------------------------------------------------- 1 | /* 2 | Mutex.h 3 | Written by Matthew Fisher 4 | 5 | A mutex is an object that grants a thread exclusive access to a given section of code. 6 | */ 7 | 8 | // 9 | // Note: CRITICAL_SECTION stores a ref count each time EnterCriticalSection is called, 10 | // and LeaveCriticalSection must be called once for each EnterCriticalSection. 11 | // 12 | 13 | struct Mutex 14 | { 15 | public: 16 | __forceinline Mutex() 17 | { 18 | InitializeCriticalSection(&_criticalSection); 19 | } 20 | __forceinline ~Mutex() 21 | { 22 | DeleteCriticalSection(&_criticalSection); 23 | } 24 | __forceinline bool TryAcquire() 25 | { 26 | return (TryEnterCriticalSection(&_criticalSection) != 0); 27 | } 28 | __forceinline void Acquire() 29 | { 30 | EnterCriticalSection(&_criticalSection); 31 | } 32 | __forceinline void Release() 33 | { 34 | LeaveCriticalSection(&_criticalSection); 35 | } 36 | 37 | private: 38 | CRITICAL_SECTION _criticalSection; 39 | }; 40 | -------------------------------------------------------------------------------- /Engine/Multithreading/TaskList.h: -------------------------------------------------------------------------------- 1 | template class TaskList 2 | { 3 | public: 4 | void InsertTask(T task) 5 | { 6 | _lock.Acquire(); 7 | _tasks.PushEnd(task); 8 | _lock.Release(); 9 | } 10 | 11 | bool Done() 12 | { 13 | _lock.Acquire(); 14 | bool result = (_tasks.Length() == 0); 15 | _lock.Release(); 16 | return result; 17 | } 18 | 19 | UINT TasksLeft() 20 | { 21 | _lock.Acquire(); 22 | UINT result = _tasks.Length(); 23 | _lock.Release(); 24 | return result; 25 | } 26 | 27 | bool GetNextTask(T &nextTask) 28 | { 29 | _lock.Acquire(); 30 | if(_tasks.Length() == 0) 31 | { 32 | _lock.Release(); 33 | return false; 34 | } 35 | else 36 | { 37 | nextTask = _tasks.Last(); 38 | _tasks.PopEnd(); 39 | _lock.Release(); 40 | return true; 41 | } 42 | } 43 | 44 | private: 45 | Mutex _lock; 46 | Vector _tasks; 47 | }; -------------------------------------------------------------------------------- /Engine/Multithreading/Thread.h: -------------------------------------------------------------------------------- 1 | /* 2 | Thread.h 3 | Written by Matthew Fisher 4 | 5 | A thread is a single unit of code execution 6 | */ 7 | 8 | struct Thread 9 | { 10 | public: 11 | Thread(); 12 | ~Thread(); 13 | 14 | __forceinline bool Active() 15 | { 16 | return (_Handle != NULL); 17 | } 18 | void CloseThread(); 19 | 20 | //void Begin(LPTHREAD_START_ROUTINE StartFunction, void *Context); 21 | void BeginStdCall(unsigned int (__stdcall *StartFunction)(void *), void *Context); 22 | void BeginCdecl(void (__cdecl *StartFunction)(void *), void *Context); 23 | 24 | private: 25 | HANDLE _Handle; 26 | }; 27 | -------------------------------------------------------------------------------- /Engine/Multithreading/ThreadPool.h: -------------------------------------------------------------------------------- 1 | class ThreadPool 2 | { 3 | public: 4 | ~ThreadPool(); 5 | void FreeMemory(); 6 | 7 | void Init(UINT threadCount); 8 | void Init(UINT threadCount, Vector &theadLocalStorage); 9 | void Go(TaskList &tasks, bool useConsole = true); 10 | 11 | private: 12 | Vector _threads; 13 | }; 14 | -------------------------------------------------------------------------------- /Engine/Multithreading/WorkerThread.cpp: -------------------------------------------------------------------------------- 1 | #include "Main.h" 2 | 3 | //unsigned int WINAPI WorkerThreadEntry( LPVOID context ) 4 | void __cdecl WorkerThreadEntry( LPVOID context ) 5 | { 6 | WorkerThread *curWorkerThread = (WorkerThread *)context; 7 | curWorkerThread->Entry(); 8 | //return 0; 9 | } 10 | 11 | void WorkerThread::Init(ThreadLocalStorage *storage) 12 | { 13 | _storage = storage; 14 | } 15 | 16 | WorkerThread::~WorkerThread() 17 | { 18 | 19 | } 20 | 21 | void WorkerThread::Start(TaskList &tasks) 22 | { 23 | _done = false; 24 | _tasks = &tasks; 25 | _thread.CloseThread(); 26 | _thread.BeginCdecl(WorkerThreadEntry, this); 27 | } 28 | 29 | void WorkerThread::Entry() 30 | { 31 | WorkerThreadTask* curTask; 32 | while(_tasks->GetNextTask(curTask)) 33 | { 34 | curTask->Run(_storage); 35 | delete curTask; 36 | } 37 | _done = true; 38 | } 39 | -------------------------------------------------------------------------------- /Engine/Multithreading/WorkerThread.h: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // Abstract base class for thread local storage 4 | // 5 | class ThreadLocalStorage 6 | { 7 | public: 8 | 9 | }; 10 | 11 | // 12 | // Abstract base class for thread tasks 13 | // 14 | class WorkerThreadTask 15 | { 16 | public: 17 | virtual void Run(ThreadLocalStorage *threadLocalStorage) = 0; 18 | }; 19 | 20 | class WorkerThread 21 | { 22 | public: 23 | ~WorkerThread(); 24 | void Init(ThreadLocalStorage *storage); 25 | void Start(TaskList &tasks); 26 | void Entry(); 27 | 28 | __forceinline bool Done() 29 | { 30 | return _done; 31 | } 32 | 33 | private: 34 | bool _done; 35 | Thread _thread; 36 | ThreadLocalStorage *_storage; 37 | TaskList *_tasks; 38 | }; 39 | -------------------------------------------------------------------------------- /Engine/Networking/Pipe.h: -------------------------------------------------------------------------------- 1 | /* 2 | Pipe.h 3 | Written by Matthew Fisher 4 | 5 | A pipe is a connection between two programs, possibly on different computers. 6 | */ 7 | 8 | class Pipe 9 | { 10 | public: 11 | Pipe(); 12 | ~Pipe(); 13 | 14 | // 15 | // Connection 16 | // 17 | void ClosePipe(); 18 | void CreatePipe(const String &PipeName, bool block); 19 | void ConnectToLocalPipe(const String &PipeName); 20 | void ConnectToPipe(const String &PipeName); 21 | 22 | // 23 | // Messaging 24 | // 25 | bool MessagePresent(); 26 | bool ReadMessage(Vector &Message); 27 | void SendMessage(const BYTE *Message, UINT MessageLength); 28 | void SendMessage(const Vector &Message); 29 | 30 | // 31 | // Query 32 | // 33 | UINT ActiveInstances(); 34 | String UserName(); 35 | __forceinline bool Valid() 36 | { 37 | return (_Handle != NULL); 38 | } 39 | 40 | 41 | private: 42 | HANDLE _Handle; 43 | }; 44 | -------------------------------------------------------------------------------- /Engine/Utility/AudioCapture.h: -------------------------------------------------------------------------------- 1 | /* 2 | AudioCapture.h 3 | Written by Matthew Fisher 4 | 5 | VideoCompressor takes a sequence of images and compressed them into a video file. 6 | */ 7 | 8 | #ifdef USE_WMF 9 | struct IMMDeviceCollection; 10 | struct IMMDevice; 11 | class VideoCompressor; 12 | class CWASAPICapture; 13 | 14 | class AudioCapture 15 | { 16 | public: 17 | AudioCapture() 18 | { 19 | _Compressor = NULL; 20 | _CaptureDevice = NULL; 21 | _Capturer = NULL; 22 | } 23 | bool Capturing() 24 | { 25 | return (_Capturer != NULL); 26 | } 27 | bool StartCapture(VideoCompressor *Compressor, UINT AudioDeviceIndex); 28 | bool StartCapture(const String &Filename, UINT AudioDeviceIndex); 29 | void StopCapture(); 30 | 31 | private: 32 | bool StartCaptureInternal(UINT AudioDeviceIndex); 33 | 34 | CWASAPICapture* _Capturer; 35 | Vector _CaptureBuffer; 36 | String _Filename; 37 | VideoCompressor* _Compressor; 38 | IMMDevice* _CaptureDevice; 39 | }; 40 | #endif -------------------------------------------------------------------------------- /Engine/Utility/ColorGenerator.h: -------------------------------------------------------------------------------- 1 | /* 2 | ColorGenerator.h 3 | Written by Matthew Fisher 4 | */ 5 | 6 | class ColorGenerator 7 | { 8 | public: 9 | static void Generate(Vector &Result); 10 | static void Generate(Vector &Result, const Vec3f &Scale); 11 | static Vector Generate(UINT colorCount); 12 | 13 | private: 14 | 15 | }; -------------------------------------------------------------------------------- /Engine/Utility/Console.h: -------------------------------------------------------------------------------- 1 | /* 2 | Console.h 3 | Written by Matthew Fisher 4 | 5 | Functions for interacting with the console. 6 | */ 7 | 8 | namespace Console 9 | { 10 | ofstream& File(); 11 | void AdvanceLine(); 12 | 13 | void WriteLine(const String &S); 14 | void WriteLine(const char *S); 15 | 16 | void OverwriteLine(const String &S); 17 | void OverwriteLine(const char *S); 18 | 19 | void WriteString(const String &S); 20 | void WriteString(const char *S); 21 | } 22 | -------------------------------------------------------------------------------- /Engine/Utility/DialogBoxes.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ColorGenerator.cpp 3 | Written by Matthew Fisher 4 | */ 5 | 6 | bool DialogBoxes::Load(String &Result, const String &FileTypeDescription, const String &FileTypeExtension) 7 | { 8 | String Filter = FileTypeDescription; 9 | Filter.PushEnd('\0'); 10 | Filter += "*."; 11 | Filter += FileTypeExtension; 12 | Filter.PushEnd('\0'); 13 | return Load(Result, Filter); 14 | } 15 | 16 | bool DialogBoxes::Load(String &Result, const String &Filter) 17 | { 18 | OPENFILENAME ofn; 19 | char Filename[512]; 20 | 21 | ZeroMemory(&ofn, sizeof(ofn)); 22 | ofn.lStructSize = sizeof(ofn); 23 | ofn.hwndOwner = NULL; 24 | ofn.lpstrFile = Filename; 25 | ofn.lpstrFile[0] = '\0'; 26 | ofn.nMaxFile = sizeof(Filename); 27 | ofn.lpstrFilter = Filter.CString(); 28 | ofn.nFilterIndex = 1; 29 | ofn.lpstrFileTitle = NULL; 30 | ofn.nMaxFileTitle = 0; 31 | ofn.lpstrInitialDir = NULL; 32 | ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST; 33 | if(GetOpenFileName(&ofn) == TRUE) 34 | { 35 | Result = Filename; 36 | return true; 37 | } 38 | else 39 | { 40 | return false; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /Engine/Utility/DialogBoxes.h: -------------------------------------------------------------------------------- 1 | /* 2 | DialogBoxes.h 3 | Written by Matthew Fisher 4 | */ 5 | 6 | class DialogBoxes 7 | { 8 | public: 9 | static bool Load(String &Result, const String &FileTypeDescription, const String &FileTypeExtension); 10 | static bool Load(String &Result, const String &Filter); 11 | }; -------------------------------------------------------------------------------- /Engine/Utility/DialogInterface.h: -------------------------------------------------------------------------------- 1 | class DialogInterface 2 | { 3 | public: 4 | static bool GetSaveFilename(String &Result, const String &Title); 5 | static bool GetOpenFilename(String &Result, const String &Title); 6 | }; -------------------------------------------------------------------------------- /Engine/Utility/Directory.h: -------------------------------------------------------------------------------- 1 | /* 2 | Directory.h 3 | Written by Matthew Fisher 4 | */ 5 | 6 | class Directory 7 | { 8 | public: 9 | Directory() {} 10 | Directory(const String &DirectoryPath); 11 | void Load(const String &DirectoryPath); 12 | 13 | __forceinline const String& DirectoryPath() const 14 | { 15 | return _DirectoryPath; 16 | } 17 | __forceinline const Vector& Files() const 18 | { 19 | return _Files; 20 | } 21 | __forceinline const Vector& Directories() const 22 | { 23 | return _Directories; 24 | } 25 | Vector FilesWithSuffix(const String &suffix) const; 26 | 27 | private: 28 | String _DirectoryPath; 29 | Vector _Files; 30 | Vector _Directories; 31 | }; 32 | 33 | -------------------------------------------------------------------------------- /Engine/Utility/ImageCompressorJPEG2000.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ImageCompressorJPEG2000.cpp 3 | Written by Matthew Fisher 4 | */ 5 | 6 | #include "Main.h" 7 | 8 | //http://www.embl.de/~gpau/misc/dwt97.c -------------------------------------------------------------------------------- /Engine/Utility/MovieExporter.h: -------------------------------------------------------------------------------- 1 | /* 2 | MovieExporter.h 3 | Written by Matthew Fisher 4 | 5 | MovieExporter manages screen capture and exports as a sequence of images for compilation into a movie. 6 | */ 7 | 8 | class MovieExporter 9 | { 10 | public: 11 | void Init(const String &BaseFilename, const String &ImageListFilename, const String &MaskFilename); 12 | void ExportScreen(GraphicsDevice &GD, ApplicationWindow &Window); 13 | 14 | private: 15 | Bitmap _Mask; 16 | UINT _CurImageIndex; 17 | String _BaseFilename; 18 | ofstream _ImageList; 19 | }; 20 | -------------------------------------------------------------------------------- /Engine/Utility/Palette.h: -------------------------------------------------------------------------------- 1 | /* 2 | Palette.h 3 | Written by Matthew Fisher 4 | */ 5 | 6 | class Palette 7 | { 8 | public: 9 | void Init(const String &imageFilename, bool wrapping, double minValue, double maxValue); 10 | RGBColor SampleColor(double value) const; 11 | 12 | __forceinline double& MinValue() 13 | { 14 | return _minValue; 15 | } 16 | __forceinline double& MaxValue() 17 | { 18 | return _maxValue; 19 | } 20 | 21 | private: 22 | double _minValue, _maxValue; 23 | Vector _colors; 24 | }; 25 | -------------------------------------------------------------------------------- /Engine/Utility/Profiler.h: -------------------------------------------------------------------------------- 1 | /* 2 | Profiler.h 3 | Written by Matthew Fisher 4 | 5 | Profiler is used to record the percent of time spent in code. 6 | */ 7 | 8 | #ifdef PROFILING_ENABLED 9 | 10 | class Profiler 11 | { 12 | public: 13 | void AddEntry(UINT index, const String &description); 14 | void Reset(UINT startState); 15 | __forceinline void ChangeState(UINT newState) 16 | { 17 | INT64 currentTime; 18 | QueryPerformanceCounter((LARGE_INTEGER*)¤tTime); 19 | _totalsPointer[_previousState] += currentTime - _previousTime; 20 | _previousState = newState; 21 | _previousTime = currentTime; 22 | } 23 | String Report(); 24 | 25 | private: 26 | INT64 *_totalsPointer; 27 | UINT _previousState; 28 | INT64 _previousTime; 29 | Vector _totals; 30 | Vector _descriptions; 31 | }; 32 | 33 | #else 34 | 35 | class Profiler 36 | { 37 | public: 38 | void AddEntry(UINT index, const String &description); 39 | void Reset(UINT startState); 40 | __forceinline void ChangeState(UINT newState) 41 | { 42 | 43 | } 44 | String Report(); 45 | 46 | private: 47 | INT64 _startTime; 48 | }; 49 | 50 | #endif -------------------------------------------------------------------------------- /Engine/Utility/Stemmer.h: -------------------------------------------------------------------------------- 1 | struct StemmerInfo; 2 | class Stemmer 3 | { 4 | public: 5 | static void Stem(String &s); 6 | 7 | private: 8 | static int cons(StemmerInfo *z, int i); 9 | static int m(StemmerInfo *z); 10 | static int vowelinstem(StemmerInfo *z); 11 | static int doublec(StemmerInfo *z, int j); 12 | static int cvc(StemmerInfo *z, int i); 13 | static void setto(StemmerInfo *z, char * s); 14 | static int ends(StemmerInfo *z, char * s); 15 | static void r(StemmerInfo *z, char * s); 16 | static void step1ab(StemmerInfo *z); 17 | static void step1c(StemmerInfo *z); 18 | static void step2(StemmerInfo *z); 19 | static void step3(StemmerInfo *z); 20 | static void step4(StemmerInfo *z); 21 | static void step5(StemmerInfo *z); 22 | }; 23 | -------------------------------------------------------------------------------- /Engine/Utility/XMLNode.h: -------------------------------------------------------------------------------- 1 | struct XMLSchemaChildEntry; 2 | 3 | struct XMLAttribute 4 | { 5 | String Name; 6 | String Value; 7 | }; 8 | 9 | struct XMLNode 10 | { 11 | XMLNode(const String &S); 12 | ~XMLNode(); 13 | void FreeMemory(); 14 | 15 | void Init(const String &S); 16 | void Save(ofstream &File); 17 | 18 | __forceinline void AddChild(XMLNode *Child) 19 | { 20 | Children.PushEnd(Child); 21 | } 22 | 23 | void MakeChildEntryList(Vector &List) const; 24 | void GetChildrenByName(const String &Name, Vector &Result) const; 25 | String GetAttributeByName(const String &Name) const; 26 | 27 | String Name; 28 | String Value; 29 | Vector Attributes; 30 | Vector Children; 31 | }; 32 | -------------------------------------------------------------------------------- /Engine/Windows Controller/EventHandler.h: -------------------------------------------------------------------------------- 1 | /* 2 | EventHandler.h 3 | Written by Matthew Fisher 4 | 5 | Creating a new window involves having a callback function, WndProc, that is called whenever Windows has 6 | an event to send to your window/application. 7 | */ 8 | 9 | extern InputManager *g_WndProcContext; 10 | LRESULT WINAPI WndProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam ); //the windows callback function -------------------------------------------------------------------------------- /Engine/Windows Controller/InputManager.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | InputManager.cpp 3 | Written by Matthew Fisher 4 | 5 | InputManager stores and controls access to keyboard and mouse data. 6 | */ 7 | 8 | InputManager::InputManager() 9 | { 10 | for(UINT KeyIndex = 0; KeyIndex < MaxKeyCount; KeyIndex++) 11 | { 12 | _KeyPressed[KeyIndex] = false; 13 | } 14 | for(UINT ButtonIndex = 0; ButtonIndex < MouseButtonCount; ButtonIndex++) 15 | { 16 | _Mouse.Buttons[ButtonIndex] = false; 17 | } 18 | 19 | _Mouse.Pos = Vec2i::Origin; 20 | _Mouse.Wheel = 0; 21 | } 22 | 23 | void InputManager::Frame() 24 | { 25 | _MouseDiff.Pos = _Mouse.Pos - _PrevMouse.Pos; 26 | _MouseDiff.Wheel = _Mouse.Wheel - _PrevMouse.Wheel; 27 | _PrevMouse = _Mouse; 28 | } 29 | -------------------------------------------------------------------------------- /Engine/Windows Controller/WinMain.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | WinMain.cpp 3 | Written by Matthew Fisher 4 | 5 | The WinMain function itself. Just creates the App class and runs it. See App.h/App.cpp 6 | */ 7 | 8 | int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, 9 | LPSTR lpszCmdLine, int nCmdShow) 10 | { 11 | App *A = new App; //create a new App 12 | A->Init(hInstance, nCmdShow); //initalize App 13 | A->MessageLoop(hInstance, nCmdShow); //begin App's "lifetime" (looping for messages. all frames occur here.) 14 | A->FreeMemory(); //kill App 15 | return 0; //exit Main 16 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Matt Fisher 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Provincial 2 | ========== 3 | 4 | A kingdom-adaptive AI for Dominion 5 | 6 | Project hosted on GitHub at https://github.com/techmatt/Provincial 7 | 8 | For more information see http://graphics.stanford.edu/~mdfisher/DominionAI.html 9 | -------------------------------------------------------------------------------- /TestingGrounds/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TestingGrounds/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace TestingGrounds 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new MainWindow()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /TestingGrounds/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.17929 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace TestingGrounds.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /TestingGrounds/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TestingGrounds/obj/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | /DesignTimeResolveAssemblyReferencesInput.cache 2 | /TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs 3 | /TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs 4 | /TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs 5 | -------------------------------------------------------------------------------- /TestingGrounds/obj/Release/.gitignore: -------------------------------------------------------------------------------- 1 | /DesignTimeResolveAssemblyReferencesInput.cache 2 | /TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs 3 | /TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs 4 | /TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs 5 | -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | /BaseCode.exp 2 | /BaseCode.ilk 3 | /BaseCode.lib 4 | /BaseCode.pdb 5 | /Console.txt 6 | /Provincial.pdb 7 | -------------------------------------------------------------------------------- /bin/BaseCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/BaseCode.dll -------------------------------------------------------------------------------- /bin/Provincial.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/Provincial.exe -------------------------------------------------------------------------------- /bin/SampleLeaderboardVisualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/SampleLeaderboardVisualization.png -------------------------------------------------------------------------------- /bin/SampleVisualizationAI.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,steward,gardens,island,scout,worker's village,explorer,royal seal,torturer,hoard@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 29.94 e4-d4-p8-torturer@1|hoard@1|gold@99|torturer@3|island@1|worker's village@3|silver@99 7 | Leader 1: 27.01 e2-d5-p8-torturer@1|hoard@2|gold@99|steward@1|torturer@2|worker's village@1|island@1|silver@99 8 | Leader 2: 21.915 e2-d5-p8-hoard@1|torturer@1|gold@99|torturer@6|island@1|silver@99|pawn@10 9 | Leader 3: -40.16 e3-d6-p8-hoard@10|royal seal@1|gold@99|island@5|silver@1|pawn@1|torturer@4|silver@99 10 | Leader 4: -40.225 e3-d6-p8-hoard@3|royal seal@1|gold@99|island@3|silver@1|pawn@1|gardens@5|silver@99|pawn@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0 3.06 5.68 54.7 56.32 15 | 1 0.58 0.06 2.56 53.54 51.36 16 | 2 -7.98 -4.12 -1.44 51.6 48.16 17 | 3 -56.3 -55.44 -52.64 0.44 3.74 18 | 4 -55.2 -52.6 -51.16 -1.94 -1 19 | -------------------------------------------------------------------------------- /bin/TestingGroundsInternal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/TestingGroundsInternal.exe -------------------------------------------------------------------------------- /bin/TestingGroundsSpawner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/TestingGroundsSpawner.exe -------------------------------------------------------------------------------- /bin/data/25Split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/25Split.png -------------------------------------------------------------------------------- /bin/data/25SplitSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/25SplitSmall.png -------------------------------------------------------------------------------- /bin/data/34Split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/34Split.png -------------------------------------------------------------------------------- /bin/data/34SplitSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/34SplitSmall.png -------------------------------------------------------------------------------- /bin/data/ProsperityLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/ProsperityLogo.png -------------------------------------------------------------------------------- /bin/data/alchemy.txt: -------------------------------------------------------------------------------- 1 | name cost pcost supply type actions cards buys money v tokens v points treasure 2 | transmute 0 0 10 action 0 0 0 0 0 0 0 3 | vineyard 0 1 10 victory 0 0 0 0 0 0 0 4 | apothecary 2 1 10 action 1 1 0 0 0 0 0 5 | herbalist 2 0 10 action 0 0 1 1 0 0 0 6 | scrying pool 2 1 10 action attack 1 0 0 0 0 0 0 7 | university 2 1 10 action 2 0 0 0 0 0 0 8 | alchemist 3 1 10 action 1 2 0 0 0 0 0 9 | familiar 3 1 10 action attack 1 1 0 0 0 0 0 10 | philosopher's stone 3 1 10 treasure 0 0 0 0 0 0 0 11 | golem 4 1 10 action 0 0 0 0 0 0 0 12 | apprentice 5 0 10 action 1 0 0 0 0 0 0 13 | possession 6 1 10 action 0 0 0 0 0 0 0 14 | -------------------------------------------------------------------------------- /bin/data/all.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/all.xlsx -------------------------------------------------------------------------------- /bin/data/base.txt: -------------------------------------------------------------------------------- 1 | name cost pcost supply type actions cards buys money v tokens v points treasure 2 | cellar 2 0 10 action 1 0 0 0 0 0 0 3 | chapel 2 0 10 action 0 0 0 0 0 0 0 4 | moat 2 0 10 action reaction 0 2 0 0 0 0 0 5 | chancellor 3 0 10 action 0 0 0 2 0 0 0 6 | village 3 0 10 action 2 1 0 0 0 0 0 7 | woodcutter 3 0 10 action 0 0 1 2 0 0 0 8 | workshop 3 0 10 action 0 0 0 0 0 0 0 9 | bureaucrat 4 0 10 action attack 0 0 0 0 0 0 0 10 | feast 4 0 10 action 0 0 0 0 0 0 0 11 | gardens 4 0 10 victory 0 0 0 0 0 0 0 12 | militia 4 0 10 action attack 0 0 0 2 0 0 0 13 | moneylender 4 0 10 action 0 0 0 0 0 0 0 14 | remodel 4 0 10 action 0 0 0 0 0 0 0 15 | smithy 4 0 10 action 0 3 0 0 0 0 0 16 | spy 4 0 10 action attack 1 1 0 0 0 0 0 17 | thief 4 0 10 action attack 0 0 0 0 0 0 0 18 | throne room 4 0 10 action 0 0 0 0 0 0 0 19 | council room 5 0 10 action 0 4 1 0 0 0 0 20 | festival 5 0 10 action 2 0 1 2 0 0 0 21 | laboratory 5 0 10 action 1 2 0 0 0 0 0 22 | library 5 0 10 action 0 0 0 0 0 0 0 23 | market 5 0 10 action 1 1 1 1 0 0 0 24 | mine 5 0 10 action 0 0 0 0 0 0 0 25 | witch 5 0 10 action attack 0 2 0 0 0 0 0 26 | adventurer 6 0 10 action 0 0 0 0 0 0 0 27 | -------------------------------------------------------------------------------- /bin/data/core.txt: -------------------------------------------------------------------------------- 1 | name cost pcost supply type actions cards buys money v tokens v points treasure 2 | copper 0 0 60 treasure 0 0 0 0 0 0 1 3 | silver 3 0 40 treasure 0 0 0 0 0 0 2 4 | gold 6 0 30 treasure 0 0 0 0 0 0 3 5 | platinum 9 0 12 treasure 0 0 0 0 0 0 5 6 | estate 2 0 24 victory 0 0 0 0 0 1 0 7 | duchy 5 0 12 victory 0 0 0 0 0 3 0 8 | province 8 0 12 victory 0 0 0 0 0 6 0 9 | colony 11 0 12 victory 0 0 0 0 0 10 0 10 | curse 0 0 30 curse 0 0 0 0 0 -1 0 11 | -------------------------------------------------------------------------------- /bin/data/coreBuyTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/coreBuyTemplate.png -------------------------------------------------------------------------------- /bin/data/iconA.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/iconA.ico -------------------------------------------------------------------------------- /bin/data/iconA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/iconA.png -------------------------------------------------------------------------------- /bin/data/iconB.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/iconB.ico -------------------------------------------------------------------------------- /bin/data/iconB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/iconB.png -------------------------------------------------------------------------------- /bin/data/intrigue.txt: -------------------------------------------------------------------------------- 1 | name cost pcost supply type actions cards buys money v tokens v points treasure 2 | courtyard 2 0 10 action 0 3 0 0 0 0 0 3 | pawn 2 0 10 action 0 0 0 0 0 0 0 4 | secret chamber 2 0 10 action reaction 0 0 0 0 0 0 0 5 | great hall 3 0 10 action victory 1 1 0 0 0 1 0 6 | masquerade 3 0 10 action 0 2 0 0 0 0 0 7 | shanty town 3 0 10 action 2 0 0 0 0 0 0 8 | steward 3 0 10 action 0 0 0 0 0 0 0 9 | swindler 3 0 10 action attack 0 0 0 2 0 0 0 10 | wishing well 3 0 10 action 1 1 0 0 0 0 0 11 | baron 4 0 10 action 0 0 1 0 0 0 0 12 | bridge 4 0 10 action 0 0 1 1 0 0 0 13 | conspirator 4 0 10 action 0 0 0 2 0 0 0 14 | coppersmith 4 0 10 action 0 0 0 0 0 0 0 15 | ironworks 4 0 10 action 0 0 0 0 0 0 0 16 | mining village 4 0 10 action 2 1 0 0 0 0 0 17 | scout 4 0 10 action 1 0 0 0 0 0 0 18 | duke 5 0 10 victory 0 0 0 0 0 0 0 19 | minion 5 0 10 action attack 1 0 0 0 0 0 0 20 | saboteur 5 0 10 action attack 0 0 0 0 0 0 0 21 | torturer 5 0 10 action attack 0 3 0 0 0 0 0 22 | trading post 5 0 10 action 0 0 0 0 0 0 0 23 | tribute 5 0 10 action 0 0 0 0 0 0 0 24 | upgrade 5 0 10 action 1 1 0 0 0 0 0 25 | harem 6 0 10 treasure victory 0 0 0 0 0 2 2 26 | nobles 6 0 10 action victory 0 0 0 0 0 2 0 27 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_0257bc783981223b5378a6b53089605f.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: swindler,watchtower,conspirator,gardens,moneylender,spy,counting house,explorer,library,trading post@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 3.94 e3-d4-p8-gold@99|trading post@1|library@1|explorer@1|silver@99 7 | Leader 1: 2.215 e2-d4-p8-gold@99|trading post@1|library@2|silver@99 8 | Leader 2: -0.25 e2-d4-p8-gold@99|trading post@1|library@1|explorer@1|spy@1|library@1|silver@99 9 | Leader 3: -1.835 e1-d5-p8-gold@99|trading post@1|library@10|silver@5|watchtower@1|conspirator@1|silver@99 10 | Leader 4: -5.26 e0-d4-p8-gold@99|trading post@1|library@10|silver@5|conspirator@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.34 0.72 3.16 4.76 7.12 15 | 1 -1.4 0.56 2.34 3.34 4.58 16 | 2 -1.62 -4.24 0.36 2.08 2.78 17 | 3 -2.7 -3.16 -2.62 1.14 1.14 18 | 4 -5.18 -7.94 -4.18 -3.74 0.46 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_02b756af0372c501858747cde840bdc4.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,loan,lookout,steward,woodcutter,spy,ghost ship,torturer,grand market,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 8.02 e2-d4-p8-torturer@1|gold@99|torturer@2|ghost ship@1|silver@99 7 | Leader 1: 9.185 e2-d4-p8-torturer@1|gold@99|torturer@2|silver@99 8 | Leader 2: 4.485 e2-d4-p8-torturer@1|gold@99|torturer@4|silver@99|cellar@1 9 | Leader 3: -11.735 e2-d3-p8-grand market@3|gold@99|steward@1|ghost ship@10|loan@1|silver@99 10 | Leader 4: -10.655 e2-d4-p8-ghost ship@1|gold@99|ghost ship@10|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 2.04 -1.8 1.54 24.4 7.94 15 | 1 2.14 1.98 3.02 24.08 7.5 16 | 2 -2.4 -4.02 1.46 21.54 2.82 17 | 3 -25 -21.94 -21.14 -0.84 21.14 18 | 4 -9.34 -4.6 -6.9 -21.78 -1.72 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_036acfd359ac893b937b8090f740f7e7.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,moat,swindler,coppersmith,ironworks,duke,tactician,treasury,upgrade,peddler@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 6.21 e2-d5-p8-gold@99|upgrade@1|treasury@10|peddler@1|swindler@2|silver@99 7 | Leader 1: 2.985 e2-d5-p8-gold@99|upgrade@1|treasury@10|tactician@1|swindler@2|silver@99|chapel@2 8 | Leader 2: 6.075 e2-d4-p8-gold@99|treasury@10|peddler@1|swindler@2|silver@99 9 | Leader 3: -7.175 e2-d4-p8-tactician@1|gold@99|peddler@2|coppersmith@2|peddler@1|silver@99 10 | Leader 4: -6.015 e2-d4-p8-tactician@1|gold@99|peddler@7|coppersmith@2|treasury@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 2.52 0.94 9.3 7.88 6.72 15 | 1 -3.82 -1.3 8.94 3.78 3.04 16 | 2 -10.82 -3.88 -0.48 22.02 16.98 17 | 3 -7.28 -3.78 -15.86 2.88 -1.78 18 | 4 -4.26 -2.6 -16.3 -0.9 0.04 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_04898be2609501e50440ed38ca1f09ea.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,smugglers,steward,ironworks,council room,merchant ship,upgrade,goons,hoard,expand@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 12.04 e2-d3-p4-platinum@99|goons@2|gold@99|chapel@1|silver@99 7 | Leader 1: 6.535 e3-d3-p3-platinum@99|goons@1|gold@99|silver@1|chapel@1|silver@1|merchant ship@1|silver@99 8 | Leader 2: 5.08 e3-d3-p3-platinum@99|goons@1|gold@99|silver@1|chapel@1|silver@1|merchant ship@1|upgrade@1|silver@99 9 | Leader 3: -7.36 e1-d4-p5-platinum@99|hoard@1|council room@1|gold@99|chapel@1|silver@99 10 | Leader 4: -13.155 e0-d5-p5-platinum@99|hoard@1|council room@1|gold@99|chapel@1|merchant ship@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.62 6.42 13.86 10.34 17.54 15 | 1 -4.08 -0.32 1.92 10.56 17.74 16 | 2 -9.84 -2.9 0.34 14.98 18.08 17 | 3 -11.1 -12.16 -12.62 0.98 6.44 18 | 4 -16.34 -14.38 -15.66 -6.24 -2.14 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_05b260f124cf041c42e231ce7d332061.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pearl diver,loan,cutpurse,ironworks,island,quarry,salvager,city,explorer,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 6.295 e2-d4-p8-city@6|gold@99|ironworks@1|island@8|loan@1|cutpurse@1|silver@99|pearl diver@7 7 | Leader 1: 3.385 e2-d4-p8-city@6|gold@99|ironworks@1|island@8|loan@1|cutpurse@1|silver@99 8 | Leader 2: -1.7 e2-d4-p8-city@9|gold@99|ironworks@1|island@8|loan@1|silver@99|pearl diver@2 9 | Leader 3: -3.565 e2-d4-p8-city@6|gold@99|ironworks@1|island@8|loan@1|silver@99 10 | Leader 4: -3.325 e2-d4-p8-king's court@1|city@9|gold@99|ironworks@1|island@8|loan@1|cutpurse@2|silver@99|pearl diver@2 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.7 0.66 6.98 9.52 8.02 15 | 1 -1.98 -0.5 5.14 6.44 3.94 16 | 2 -7.38 -1.8 -1.8 1.7 0.68 17 | 3 -8.86 -3.76 -3 1.4 1.36 18 | 4 -6.32 -5.14 -2.82 0.98 -1.8 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_0659e410fe682e5daf38be83a47c528f.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,fishing village,trade route,watchtower,throne room,explorer,mountebank,rabble,tribute,vault@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 6.14 e4-d5-p8-mountebank@2|gold@99|watchtower@1|vault@1|fishing village@10|trade route@1|watchtower@1|silver@99|moat@6 7 | Leader 1: 5.86 e3-d5-p8-mountebank@2|gold@99|watchtower@1|vault@1|fishing village@10|trade route@1|vault@1|silver@99|moat@6 8 | Leader 2: 5.99 e3-d5-p8-mountebank@2|gold@99|watchtower@1|vault@1|fishing village@10|trade route@1|watchtower@1|silver@99|moat@6 9 | Leader 3: -7.92 e2-d4-p8-gold@99|trade route@1|watchtower@1|rabble@1|fishing village@10|silver@99|moat@3 10 | Leader 4: -11.52 e1-d4-p8-gold@99|trade route@1|watchtower@1|rabble@2|fishing village@10|throne room@1|silver@99|moat@3 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.24 1.24 1.2 9.92 12.2 15 | 1 -2.7 0.16 -0.12 11.92 14.34 16 | 2 -0.8 -2.2 0.64 14.5 12.46 17 | 3 -7.68 -13.12 -11.42 1.08 0.54 18 | 4 -14.56 -13.06 -14.54 -3.92 0.34 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_0700e1cad0525d74cd1b4362db4ef3ea.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,courtyard,woodcutter,island,militia,smithy,counting house,mountebank,witch,harem@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 14.225 e5-d6-p8-witch@1|harem@8|gold@99|witch@1|militia@1|silver@99|courtyard@10 7 | Leader 1: 9.8 e5-d6-p8-witch@1|gold@99|witch@1|militia@1|silver@99|courtyard@7 8 | Leader 2: 9.455 e5-d5-p8-witch@1|gold@99|witch@1|militia@1|silver@99 9 | Leader 3: -17.5 e5-d6-p8-mountebank@1|harem@8|gold@99|mountebank@1|smithy@1|silver@99 10 | Leader 4: -16.64 e5-d6-p8-mountebank@1|harem@8|gold@99|mountebank@1|smithy@1|silver@99|courtyard@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.78 1.04 4.14 27.68 24.04 15 | 1 -2.12 0.14 0.82 21.76 18.74 16 | 2 -4.56 -1.6 -0.14 21.2 22.78 17 | 3 -25.68 -20.82 -20.9 -0.8 -2.6 18 | 4 -25.08 -20.74 -20.04 -0.7 0.2 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_08e2f3124e6a5a751042cf37f660de00.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: ambassador,chancellor,wishing well,scout,throne room,bazaar,mint,wharf,harem,hoard@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 9.42 e4-d4-p8-hoard@1|harem@8|gold@99|wharf@3|bazaar@3|silver@99 7 | Leader 1: 10.03 e4-d4-p8-hoard@1|harem@8|gold@99|wharf@4|silver@99 8 | Leader 2: 15.655 e4-d4-p8-hoard@1|harem@8|gold@99|wharf@2|bazaar@1|ambassador@1|wishing well@3|silver@99 9 | Leader 3: -13.49 e3-d5-p8-hoard@1|harem@5|gold@99|ambassador@1|wishing well@1|bazaar@3|wishing well@3|silver@99 10 | Leader 4: -22.65 e2-d3-p8-hoard@1|harem@5|gold@99|ambassador@1|wishing well@5|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 2.36 0.58 -15.18 16.38 35.9 15 | 1 2.62 1.28 -15.78 17.34 35.94 16 | 2 12.74 14.48 0.18 15.82 19.58 17 | 3 -19.14 -18.9 -16.1 -2.26 0.18 18 | 4 -34.94 -33.84 -17.42 -4.4 0.34 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_0a8380c1f4b353754a9207d97c13a81a.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: great hall,shanty town,workshop,coppersmith,militia,salvager,city,tribute,adventurer,grand market@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 42.775 e1-d3-p5-platinum@99|city@10|grand market@1|gold@99|tribute@2|city@7|militia@3|silver@1|shanty town@8|silver@99 7 | Leader 1: 39.205 e1-d4-p4-platinum@99|city@10|grand market@2|gold@99|city@1|militia@3|silver@1|shanty town@10|silver@99 8 | Leader 2: 37.32 e1-d2-p5-platinum@99|city@10|gold@99|tribute@2|city@7|militia@3|silver@1|shanty town@8|silver@99 9 | Leader 3: -57.035 e3-d4-p6-platinum@99|gold@99|tribute@2|city@2|coppersmith@1|city@10|silver@99 10 | Leader 4: -60.66 e2-d3-p6-platinum@99|gold@99|tribute@10|coppersmith@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.12 5.84 1.36 80.16 83.74 15 | 1 -1.76 0.74 -5.04 80.22 83.4 16 | 2 0.28 2.9 0 71.82 74.28 17 | 3 -79.82 -80.08 -70.22 0.52 1.98 18 | 4 -83.28 -84.54 -73.9 -0.92 -0.96 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_0be42d5e3505aa0870edbc3409390017.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,chapel,steward,talisman,bazaar,duke,mint,witch,hoard,nobles@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 16.05 e4-d4-p8-hoard@1|nobles@8|gold@99|witch@1|bazaar@5|chapel@1|silver@99 7 | Leader 1: 13.54 e2-d4-p8-witch@1|hoard@1|gold@99|chapel@1|bazaar@2|silver@99 8 | Leader 2: 12.11 e1-d4-p8-hoard@1|nobles@8|gold@99|witch@1|chapel@1|bazaar@5|silver@99|cellar@1 9 | Leader 3: -18.465 e4-d4-p8-hoard@1|nobles@8|gold@99|bazaar@5|chapel@1|silver@99 10 | Leader 4: -23.28 e2-d4-p8-hoard@1|nobles@8|gold@99|bazaar@6|chapel@1|silver@99|cellar@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.12 2.12 2.98 27.02 32.08 15 | 1 -2.1 -1.14 0.52 23.82 31.92 16 | 2 -5.46 -0.82 2.8 22.6 32.12 17 | 3 -27.96 -24.1 -23.02 1.3 1.22 18 | 4 -31.36 -31.08 -30.94 0.26 -2.5 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_0c14c9d4f98b64bab48499297d2c0a88.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,great hall,salvager,scout,talisman,explorer,trading post,venture,wharf,bank@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 27.47 e2-d4-p8-bank@5|wharf@2|gold@99|venture@5|wharf@1|silver@99|moat@1 7 | Leader 1: 26.735 e2-d3-p8-bank@5|wharf@2|gold@99|venture@4|wharf@1|silver@99 8 | Leader 2: 25.41 e2-d3-p8-bank@5|wharf@2|gold@99|wharf@1|venture@4|silver@99 9 | Leader 3: -37.795 e4-d5-p8-bank@2|explorer@1|gold@99|venture@8|silver@99|moat@1 10 | Leader 4: -42.205 e3-d4-p8-bank@2|gold@99|silver@2|venture@2|moat@1|venture@10|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.84 1.34 1.14 53.54 53.86 15 | 1 3.22 -1.26 -0.88 50.18 54.42 16 | 2 -1.1 -1.1 -0.58 51.92 51.92 17 | 3 -52 -50.02 -51.3 -0.98 2.14 18 | 4 -55.46 -54.32 -54.28 -4.76 -2.1 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_0c63bba1b1a395e9a53fc3c64a6b8dd8.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: fishing village,smugglers,warehouse,coppersmith,sea hag,bazaar,merchant ship,rabble,wharf,bank@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 39.295 e3-d4-p8-gold@1|bank@1|gold@99|sea hag@1|wharf@7|fishing village@3|warehouse@2|silver@99 7 | Leader 1: 36.405 e2-d4-p8-gold@99|sea hag@1|wharf@7|fishing village@3|warehouse@2|silver@99 8 | Leader 2: 32.18 e2-d3-p8-wharf@4|bazaar@1|gold@99|sea hag@1|wharf@5|fishing village@3|warehouse@3|rabble@1|silver@99 9 | Leader 3: -52.38 e3-d4-p8-gold@99|merchant ship@5|warehouse@1|fishing village@2|silver@99 10 | Leader 4: -54.7 e4-d4-p8-merchant ship@1|gold@99|merchant ship@4|warehouse@1|merchant ship@1|bazaar@1|rabble@2|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.1 4.16 8.46 69.38 75.18 15 | 1 -5.3 -0.94 4.46 71.2 75.26 16 | 2 -8.14 -2.48 1.32 70.22 69.12 17 | 3 -70.72 -71.82 -68.32 -0.28 1.34 18 | 4 -74.12 -74.12 -68.98 -1.58 2.14 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_0df36d97565bd1252df9900f16d0edcb.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: baron,bishop,cutpurse,gardens,ironworks,monument,talisman,explorer,rabble,goons@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 30.46 e2-d4-p5-platinum@99|gold@1|rabble@1|gold@99|silver@1|rabble@3|silver@99 7 | Leader 1: 22.21 e1-d5-p5-platinum@99|gold@99|monument@1|rabble@3|silver@99 8 | Leader 2: 18.98 e5-d5-p5-platinum@99|gold@7|goons@4|gold@99|rabble@2|monument@1|silver@99 9 | Leader 3: -32.995 e3-d6-p7-platinum@99|goons@1|gold@1|goons@2|gold@99|cutpurse@1|silver@99 10 | Leader 4: -36.54 e2-d5-p6-platinum@99|gold@1|goons@2|gold@99|monument@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.44 6.52 8.84 58.9 47.58 15 | 1 -5.24 -1.92 2.5 48.3 43.28 16 | 2 -7 -2.7 -0.28 44.7 40.92 17 | 3 -58.36 -47.12 -44.04 3.58 17.54 18 | 4 -48.4 -40.86 -41.08 -15.82 -0.94 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_0e006fcbb3aaa55e2fdfa4ac7338c250.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,moat,warehouse,baron,caravan,duke,festival,minion,torturer,hoard@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 45.065 e2-d3-p3-platinum@99|festival@1|torturer@3|festival@4|gold@99|torturer@4|duke@2|caravan@9|warehouse@3|silver@99|moat@1 7 | Leader 1: 37.025 e2-d3-p3-platinum@99|festival@1|torturer@3|festival@4|gold@99|torturer@4|caravan@8|warehouse@3|silver@99 8 | Leader 2: 32.44 e2-d2-p3-platinum@99|festival@1|torturer@3|festival@4|gold@99|minion@5|festival@1|caravan@9|warehouse@1|silver@99|moat@2 9 | Leader 3: -56.82 e3-d4-p6-platinum@99|hoard@1|gold@99|caravan@8|warehouse@2|silver@99 10 | Leader 4: -58.71 e2-d4-p4-platinum@99|gold@99|caravan@10|warehouse@2|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.08 13.32 11.08 77.54 78.32 15 | 1 -12.9 -1.36 0.86 79.7 80.44 16 | 2 -11.04 -1 0.52 70.84 70.96 17 | 3 -77.54 -81.22 -71.94 -3.3 3.42 18 | 4 -77.46 -79.24 -73.12 -5.02 -1.3 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_0ec1eb12808228ad88ecb84813d2310e.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: loan,lookout,steward,trade route,woodcutter,remodel,scout,mine,wharf,grand market@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 33.98 e2-d4-p8-wharf@2|gold@99|wharf@1|silver@99 7 | Leader 1: 29.275 e2-d4-p8-wharf@1|gold@99|wharf@4|silver@5|woodcutter@10|steward@3|silver@99 8 | Leader 2: 27.43 e2-d4-p8-wharf@1|gold@99|wharf@4|silver@5|loan@10|steward@5|silver@99 9 | Leader 3: -42.83 e4-d5-p8-gold@99|silver@1|mine@1|silver@99 10 | Leader 4: -47.045 e3-d5-p8-gold@99|remodel@1|mine@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.4 3.64 5.1 63.42 63.76 15 | 1 -2.56 0.72 1.18 59.28 59.2 16 | 2 -4.24 -1.84 0.66 57.7 58.1 17 | 3 -60.92 -60.08 -57.46 0.36 7.14 18 | 4 -63.14 -58.32 -59.78 -6.94 -1.36 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_1112a45a5a671c0c40619c83faf9fb1f.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cutpurse,gardens,festival,ghost ship,market,royal seal,tribute,grand market,hoard,expand@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 35.44 e5-d6-p6-platinum@99|ghost ship@3|gold@99|ghost ship@9|festival@1|market@1|silver@99 7 | Leader 1: 36.655 e4-d6-p6-platinum@99|ghost ship@3|gold@99|ghost ship@8|market@1|silver@99 8 | Leader 2: 35.66 e4-d5-p7-platinum@99|ghost ship@3|gold@99|ghost ship@10|silver@99 9 | Leader 3: -53.475 e2-d4-p6-platinum@99|royal seal@1|grand market@3|gold@99|cutpurse@1|tribute@2|market@10|silver@99 10 | Leader 4: -54.345 e3-d4-p5-platinum@99|royal seal@1|grand market@3|gold@99|tribute@8|cutpurse@1|royal seal@1|market@10|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.36 1.8 -1.64 69.04 72.56 15 | 1 -0.66 2.52 0.68 73.48 73.12 16 | 2 1.82 0.34 -0.84 68.3 72.18 17 | 3 -72.86 -70.12 -68.68 0.5 -2.24 18 | 4 -71.74 -73.1 -72.02 -0.52 -1.3 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_1236614f90acd1f57a9cf3990a73dea2.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,lookout,conspirator,moneylender,scout,worker's village,vault,bank,king's court,peddler@25Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 3.12 e2-d4-p5-platinum@99|bank@2|vault@1|gold@99|silver@3|vault@2|pawn@1|silver@99|peddler@1 7 | Leader 1: -0.475 e3-d5-p5-platinum@99|vault@1|bank@2|gold@99|silver@3|vault@1|worker's village@5|conspirator@1|pawn@1|silver@99 8 | Leader 2: -1.72 e3-d4-p5-platinum@99|bank@2|vault@1|gold@99|silver@3|vault@1|pawn@1|conspirator@2|peddler@1|silver@99 9 | Leader 3: -0.155 e3-d4-p5-platinum@99|bank@3|vault@1|gold@99|silver@3|vault@1|pawn@1|scout@1|silver@99|pawn@2 10 | Leader 4: -2.03 e3-d4-p5-platinum@99|bank@3|vault@1|gold@99|silver@3|vault@1|silver@99|peddler@2 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.72 3.28 4.04 0.88 4.28 15 | 1 -3.22 3.88 -0.5 0.22 1.6 16 | 2 -4.76 -1.04 0.68 0.38 -1.46 17 | 3 -0.82 0.12 0.38 -0.16 -0.3 18 | 4 -5 -1.02 -0.42 -1.68 -0.66 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_12b7fd92532318606937bb27468a6a84.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,fishing village,trade route,baron,throne room,festival,ghost ship,mint,tribute,adventurer@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 13.275 e3-d4-p8-gold@99|ghost ship@3|festival@1|fishing village@8|silver@99|moat@10 7 | Leader 1: 10.16 e4-d4-p8-gold@99|ghost ship@3|fishing village@1|festival@1|fishing village@6|baron@1|silver@99|moat@10 8 | Leader 2: 9.65 e3-d4-p8-gold@99|ghost ship@4|festival@1|fishing village@10|baron@9|silver@99|moat@10 9 | Leader 3: -7.48 e2-d4-p8-festival@1|gold@99|fishing village@3|moat@2|tribute@2|silver@99|moat@10 10 | Leader 4: -25.73 e2-d5-p8-festival@1|gold@99|fishing village@3|moat@1|fishing village@10|silver@99|moat@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.3 1.5 1.6 17.44 32.56 15 | 1 -2.56 -0.1 -0.08 11 32.28 16 | 2 -1.54 0.6 0.64 10.48 29.06 17 | 3 -15.06 -12.38 -13.6 -0.32 11.12 18 | 4 -31.08 -30.14 -28.58 -13.12 -0.44 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_13004cea52fb26e1553360322499ae75.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: great hall,bishop,bridge,feast,island,throne room,rabble,grand market,bank,peddler@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 9.79 e0-d3-p8-bank@10|gold@99|rabble@1|peddler@3|island@2|silver@99 7 | Leader 1: 4.08 e1-d3-p8-bank@1|gold@99|rabble@2|island@3|bishop@1|silver@99 8 | Leader 2: -3.265 e0-d4-p8-grand market@1|gold@99|bishop@1|great hall@2|peddler@10|great hall@8|silver@99|peddler@1 9 | Leader 3: 3.18 e0-d3-p8-gold@99|rabble@1|peddler@3|island@2|silver@99 10 | Leader 4: -15.305 e2-d3-p8-gold@99|bishop@1|peddler@10|great hall@8|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.72 2.84 9.5 10.52 16.3 15 | 1 -3.58 -1.72 4.08 5.58 10.24 16 | 2 -9.74 -4.38 -0.32 -12.1 13.16 17 | 3 -9.54 -7.34 11.4 0.38 18.2 18 | 4 -20.06 -10.94 -11.94 -18.28 -0.16 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_155a359172a36792a4f118fd00150ed9.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: fishing village,moneylender,quarry,council room,counting house,market,minion,upgrade,vault,adventurer@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 2.685 e3-d5-p8-gold@7|adventurer@3|gold@99|vault@2|market@2|vault@1|silver@99 7 | Leader 1: 1.295 e3-d5-p8-gold@99|vault@1|market@1|minion@10|silver@99 8 | Leader 2: 1.22 e2-d5-p8-gold@99|vault@1|minion@10|silver@99 9 | Leader 3: -1.56 e2-d4-p8-gold@99|vault@1|market@1|minion@9|silver@99 10 | Leader 4: -4.27 e2-d5-p8-gold@99|vault@1|council room@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.14 1.02 1.14 3.4 5.18 15 | 1 -1.82 -0.98 -0.68 3.32 4.36 16 | 2 -1.04 0.7 -0.68 3.5 1.72 17 | 3 -3.46 -3.26 -0.06 -0.06 0.54 18 | 4 -5.58 -4 -4.52 -2.98 -0.42 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_1a4a2fab9e243602de98aa2a7c31b1fb.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,shanty town,militia,moneylender,city,mint,goons,hoard,nobles,expand@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 36.36 e1-d2-p2-platinum@99|goons@1|nobles@8|gold@99|city@10|militia@1|silver@1|chapel@1|shanty town@7|silver@99 7 | Leader 1: 13.685 e0-d2-p3-platinum@99|goons@1|nobles@8|hoard@1|gold@99|city@10|militia@1|chapel@1|shanty town@2|silver@99 8 | Leader 2: 15.93 e1-d1-p3-platinum@99|nobles@8|gold@99|city@10|militia@2|chapel@1|shanty town@8|silver@99 9 | Leader 3: -26.6 e0-d2-p3-platinum@99|goons@1|nobles@8|gold@99|city@10|chapel@1|silver@99 10 | Leader 4: -40.4 e0-d3-p5-platinum@99|hoard@1|nobles@8|gold@99|city@1|chapel@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.3 24.14 14.44 44.7 62.16 15 | 1 -25.32 -1.66 -14.1 35.94 58.22 16 | 2 -17.92 13.24 0.94 26.1 42.3 17 | 3 -45.44 -36.64 -26.3 -0.34 1.98 18 | 4 -59.32 -57.36 -42.52 -2.4 -2.3 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_1c6d2db848d605b343bf3a4a5a39d3dc.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: great hall,steward,trade route,bridge,militia,moneylender,quarry,talisman,explorer,treasury@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 22.625 e3-d4-p8-gold@99|treasury@6|militia@3|silver@99 7 | Leader 1: 16.855 e3-d4-p8-gold@12|treasury@7|gold@99|treasury@6|militia@4|talisman@1|silver@99 8 | Leader 2: 16.06 e3-d4-p8-gold@99|treasury@6|militia@4|moneylender@1|silver@99 9 | Leader 3: -27.485 e2-d5-p8-gold@99|moneylender@1|explorer@1|treasury@3|silver@99 10 | Leader 4: -27.445 e3-d5-p8-gold@12|explorer@1|gold@99|treasury@6|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.92 6.02 6.92 38 39.56 15 | 1 -8.02 0.2 0.78 37 37.66 16 | 2 -7.18 -1.68 2.2 37.36 35.74 17 | 3 -39.84 -35.58 -35.94 -2.1 1.42 18 | 4 -38.68 -34.16 -35.66 -1.28 -0.1 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_1c8f738e205f0cb8c93756737665a7e2.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: village,workshop,baron,gardens,mining village,remodel,throne room,treasure map,rabble,nobles@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 18.15 e2-d3-p8-gold@2|nobles@8|gold@99|rabble@1|silver@2|rabble@1|silver@99 7 | Leader 1: 13.605 e1-d4-p8-rabble@1|gold@99|rabble@1|silver@5|gardens@8|treasure map@6|silver@99 8 | Leader 2: 6.475 e1-d4-p8-rabble@1|nobles@1|gold@99|rabble@1|silver@5|gardens@8|treasure map@1|silver@99 9 | Leader 3: -11.62 e4-d4-p8-gold@99|baron@3|gardens@8|silver@99 10 | Leader 4: -25.95 e3-d4-p8-gold@99|baron@3|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.8 4.92 9.08 25.06 33.54 15 | 1 -2.46 -1.82 7.18 23.44 26.26 16 | 2 -9.86 -7.06 0.48 17.98 24.84 17 | 3 -25.9 -21.2 -18.44 -1.22 19.06 18 | 4 -33.38 -24.66 -24.02 -21.74 0.24 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_228fd827b5a9c558f30331f5f03251c2.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,village,woodcutter,bridge,caravan,island,moneylender,remodel,trading post,tribute@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 0.48 e0-d4-p8-gold@99|trading post@1|caravan@3|island@1|tribute@6|island@1|silver@99 7 | Leader 1: 0.43 e1-d4-p8-gold@99|trading post@1|caravan@3|silver@1|caravan@4|bridge@1|silver@99 8 | Leader 2: 0.89 e0-d4-p8-gold@99|trading post@1|caravan@3|tribute@6|island@1|silver@99 9 | Leader 3: -0.66 e1-d4-p8-gold@99|trading post@1|caravan@3|tribute@4|island@1|silver@99 10 | Leader 4: -2.44 e2-d4-p8-gold@99|trading post@1|caravan@3|bridge@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.76 0.1 -1.2 0.28 2.74 15 | 1 1.26 2.74 -0.06 -0.88 1.4 16 | 2 0.28 -1.14 -0.38 3.34 1.08 17 | 3 -2.68 -0.94 -0.06 -0.04 1.04 18 | 4 -3 -2.32 -1.94 -2.5 -1.12 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_242aa5c738c063f38c06ed326a43061d.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,chancellor,smugglers,mining village,spy,council room,saboteur,tribute,goons,harem@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 22.26 e1-d2-p8-goons@2|harem@8|gold@99|mining village@1|chapel@1|silver@99 7 | Leader 1: 21.835 e2-d3-p8-goons@2|harem@7|gold@99|spy@1|chapel@1|silver@99 8 | Leader 2: 14.18 e1-d3-p8-goons@2|harem@8|gold@99|chapel@1|silver@99 9 | Leader 3: -28.23 e2-d3-p8-harem@8|gold@99|council room@1|silver@2|council room@1|silver@99 10 | Leader 4: -30.025 e2-d4-p8-gold@99|council room@2|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.18 3.24 7.16 45.1 33.54 15 | 1 -4.26 0.16 8.6 44.32 38.68 16 | 2 -7.84 -6.12 -1.02 38.96 31.72 17 | 3 -41.88 -45.7 -40.94 0.12 15.6 18 | 4 -34 -40.04 -31.08 -14.98 1.02 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_2649a7a66ab3195c27194073dc6300a4.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,pearl diver,ambassador,loan,watchtower,island,monument,worker's village,mountebank,venture@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 11.82 e1-d5-p8-mountebank@1|gold@99|monument@1|loan@1|venture@10|lighthouse@2|island@8|silver@99|lighthouse@10 7 | Leader 1: 11.875 e1-d4-p8-gold@1|mountebank@1|gold@99|monument@1|venture@10|lighthouse@2|island@8|silver@99|lighthouse@9 8 | Leader 2: 2.74 e3-d4-p8-mountebank@1|gold@99|monument@2|venture@10|lighthouse@4|silver@99|lighthouse@10 9 | Leader 3: -12.23 e1-d5-p8-gold@99|monument@1|venture@10|lighthouse@2|island@8|silver@99|lighthouse@10 10 | Leader 4: -15.255 e3-d4-p8-gold@99|venture@3|monument@2|venture@4|silver@99|pearl diver@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.46 -0.76 3.34 16.4 28.3 15 | 1 -0.84 -1.62 8.16 12.32 27.86 16 | 2 -2.08 -5.22 -2.16 -1.18 19.44 17 | 3 -14.76 -13.96 -3.42 0.2 -16.78 18 | 4 -29.38 -26.32 -19.54 14.22 -0.04 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_2826c39c0fae75ecb82ad0c31232cb23.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,chapel,lighthouse,pawn,pearl diver,chancellor,village,island,festival,venture@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 3.675 e1-d4-p8-gold@99|venture@7|island@7|silver@99|lighthouse@7 7 | Leader 1: 6.535 e0-d4-p8-gold@99|venture@10|island@5|venture@1|silver@99|pawn@1 8 | Leader 2: -1.92 e1-d4-p8-gold@99|venture@3|island@5|silver@99|pearl diver@2 9 | Leader 3: -4.015 e1-d4-p8-gold@99|venture@4|island@5|silver@99 10 | Leader 4: -4.815 e1-d4-p8-gold@99|venture@5|island@2|silver@99|cellar@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 3.28 -2.96 4.5 6.1 7.06 15 | 1 3.1 1.56 5.7 8.06 9.28 16 | 2 -5.46 -5.7 0.66 0.66 2.82 17 | 3 -8.14 -8.16 -0.22 3.18 0.46 18 | 4 -6.88 -8.96 -1.88 -1.54 0.16 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_28e65403299f8728fa0f915c8c37735c.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: workshop,gardens,mining village,bazaar,council room,counting house,ghost ship,mountebank,torturer,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 13.66 e1-d4-p8-mountebank@1|ghost ship@1|gold@99|ghost ship@1|silver@4|gardens@8|silver@99 7 | Leader 1: 13.1 e2-d4-p8-mountebank@1|ghost ship@1|gold@99|silver@4|workshop@1|gardens@8|silver@99 8 | Leader 2: 8.09 e1-d4-p8-mountebank@1|ghost ship@1|gold@99|ghost ship@1|silver@3|torturer@1|silver@1|gardens@8|silver@99 9 | Leader 3: -17.25 e0-d4-p8-torturer@1|gold@99|torturer@2|silver@4|gardens@8|bazaar@2|mining village@1|silver@99 10 | Leader 4: -17.005 e0-d4-p8-torturer@1|gold@99|torturer@2|silver@4|gardens@8|bazaar@2|counting house@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.12 -1 1.6 28.18 25.86 15 | 1 -1.64 -0.42 4.56 25.66 23.82 16 | 2 -3.12 -5.4 1.02 19.84 21.04 17 | 3 -25.82 -22.42 -20.02 -1.44 -0.74 18 | 4 -23.32 -23.32 -21.36 -0.02 0.34 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_2ac97a36217b06b429e3122d6dfc2264.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,pawn,shanty town,caravan,feast,ironworks,militia,mining village,navigator,smithy@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 0.37 e2-d3-p5-platinum@99|gold@99|smithy@1|caravan@8|mining village@1|silver@1|shanty town@3|silver@99|cellar@10 7 | Leader 1: 1.38 e2-d4-p5-platinum@99|gold@99|militia@1|caravan@7|silver@1|shanty town@6|silver@99|cellar@1 8 | Leader 2: -0.02 e1-d4-p5-platinum@99|gold@99|militia@1|caravan@9|smithy@1|silver@1|shanty town@6|silver@99|cellar@10 9 | Leader 3: -0.935 e1-d3-p5-platinum@99|gold@99|militia@1|caravan@9|smithy@1|silver@1|shanty town@6|silver@99|cellar@10 10 | Leader 4: -1.76 e1-d3-p5-platinum@99|gold@99|smithy@1|caravan@8|mining village@1|silver@1|shanty town@3|silver@99|cellar@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.3 1.6 -0.8 0 0.68 15 | 1 1.18 -1.78 1.08 1.24 2.02 16 | 2 2.88 -0.52 -0.12 -1 -1.44 17 | 3 -0.88 0.16 -2.24 0.7 -0.78 18 | 4 -3.02 -0.5 0.3 -3.82 0.22 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_2b3e6660ab0116f2622f8b2dab54864d.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chancellor,lookout,swindler,wishing well,baron,bridge,worker's village,explorer,merchant ship,mountebank@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 23.63 e3-d5-p8-gold@12|mountebank@1|gold@99|merchant ship@6|silver@5|merchant ship@1|silver@1|bridge@1|silver@99 7 | Leader 1: 22.725 e3-d5-p8-gold@12|mountebank@1|gold@99|merchant ship@6|silver@5|merchant ship@1|explorer@1|bridge@1|silver@99 8 | Leader 2: 20.375 e4-d5-p8-gold@12|mountebank@2|gold@99|merchant ship@4|silver@5|worker's village@1|silver@99 9 | Leader 3: -33.89 e3-d6-p8-gold@12|explorer@1|gold@99|merchant ship@6|silver@5|merchant ship@1|swindler@1|baron@1|silver@99 10 | Leader 4: -33.645 e3-d5-p8-gold@10|explorer@1|gold@99|merchant ship@10|silver@6|wishing well@4|merchant ship@7|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.02 0.44 2.66 45.7 45.72 15 | 1 0.36 1.34 0.42 45.36 44.76 16 | 2 -3.82 -1.4 -0.48 42.5 44.22 17 | 3 -44.4 -45.6 -43.9 0.28 -1.66 18 | 4 -46.5 -45.5 -43.16 0.58 -1.34 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_2be2fe827609d41fc1d8674a8cdd6b84.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: courtyard,loan,workshop,baron,bishop,monument,smithy,mint,mountebank,venture@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 19.645 e2-d5-p8-mountebank@1|gold@99|venture@9|monument@2|silver@99|courtyard@1 7 | Leader 1: 16.345 e3-d4-p8-mountebank@1|gold@99|venture@9|monument@2|silver@99|courtyard@1 8 | Leader 2: 9.675 e1-d5-p8-mountebank@1|gold@99|venture@10|monument@2|silver@2|smithy@1|silver@99|courtyard@9 9 | Leader 3: -21.48 e2-d5-p8-gold@99|venture@10|monument@2|mint@1|monument@1|silver@99|courtyard@3 10 | Leader 4: -22.77 e3-d5-p8-gold@99|venture@10|monument@2|mint@1|monument@1|silver@99|courtyard@3 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.96 1.76 7.5 32.84 36.48 15 | 1 -2.24 1.82 6.74 29.52 31.36 16 | 2 -6.86 -7.18 2.62 25.44 27.3 17 | 3 -31.88 -32.04 -24.3 -0.42 2.3 18 | 4 -33.86 -30.56 -24.66 -2 -0.7 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_2e2b1268eba3de26a13a2dd0ecf23f9b.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: warehouse,watchtower,militia,treasure map,bazaar,explorer,mint,mountebank,harem,expand@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 28.285 e2-d4-p8-mountebank@1|gold@99|militia@1|silver@1|bazaar@8|warehouse@1|watchtower@1|silver@99 7 | Leader 1: 34.435 e2-d4-p8-mountebank@1|harem@8|gold@99|militia@1|silver@1|bazaar@8|warehouse@1|watchtower@1|silver@99 8 | Leader 2: 21.73 e3-d5-p8-mountebank@1|harem@6|gold@99|militia@1|bazaar@2|militia@1|mountebank@1|bazaar@6|silver@99 9 | Leader 3: -41.59 e3-d5-p8-gold@99|explorer@1|watchtower@1|bazaar@2|silver@99 10 | Leader 4: -42.235 e3-d5-p8-gold@99|warehouse@1|explorer@1|watchtower@1|bazaar@2|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.74 -7.36 9.82 53.14 57.54 15 | 1 7.38 -1.84 3.86 62.16 64.34 16 | 2 -9.98 -6.32 0.08 48.46 54.76 17 | 3 -51.62 -62.3 -45.1 3.54 -7.34 18 | 4 -58.72 -65.04 -53.7 8.52 1 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_2e6697d2943aab229dfca1ddb0e37481.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: baron,coppersmith,moneylender,salvager,bazaar,counting house,duke,market,tribute,bank@25Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 2.15 e2-d3-p4-platinum@99|bank@1|gold@99|salvager@1|market@6|duke@1|moneylender@1|silver@99 7 | Leader 1: 1.325 e1-d3-p4-platinum@99|bank@4|gold@99|salvager@1|market@6|coppersmith@1|counting house@6|silver@99 8 | Leader 2: 2.145 e1-d3-p4-platinum@99|bank@1|gold@99|salvager@1|bazaar@1|market@7|moneylender@3|silver@99 9 | Leader 3: -0.035 e2-d3-p4-platinum@99|gold@99|salvager@1|bazaar@1|market@7|moneylender@3|silver@99 10 | Leader 4: -3.125 e1-d3-p4-platinum@99|bank@4|gold@99|salvager@1|market@6|coppersmith@1|moneylender@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.84 2.6 0.62 1.7 3.68 15 | 1 1.9 2.36 0.78 2.5 0.12 16 | 2 0.7 1.48 3.86 2.98 3.42 17 | 3 -1.08 -0.86 -0.64 -0.42 2.44 18 | 4 -4.14 -3.46 -3.88 -1.02 0.48 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_2f211899b768b8421516c40d0efb2753.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,village,bishop,coppersmith,scout,counting house,mine,saboteur,treasury,bank@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 17.705 e1-d4-p8-bank@1|gold@99|treasury@5|counting house@2|treasury@1|bishop@1|silver@99 7 | Leader 1: 15.54 e1-d4-p8-gold@99|treasury@10|bishop@1|silver@99 8 | Leader 2: 6.52 e2-d3-p8-bank@1|gold@99|bishop@1|treasury@2|mine@1|treasury@8|silver@99 9 | Leader 3: -16.445 e1-d4-p8-bank@2|gold@99|treasury@10|coppersmith@1|mine@1|silver@99 10 | Leader 4: -23.415 e1-d4-p8-bank@2|gold@99|treasury@10|counting house@2|coppersmith@1|silver@99|chapel@2 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.38 -1.58 9.4 28.52 34.48 15 | 1 2.9 0.08 9.82 21.66 27.78 16 | 2 -7.96 -9.56 0.06 20.62 22.98 17 | 3 -28.34 -24.92 -22.5 0.94 9.98 18 | 4 -31.16 -27.9 -24.06 -10.54 3.42 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_30e5ddc261c673e12450db2a559a0757.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,lighthouse,swindler,gardens,bazaar,rabble,treasury,adventurer,goons,expand@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 28.765 e0-d2-p2-platinum@99|goons@1|bazaar@3|rabble@2|gold@99|treasury@1|chapel@1|bazaar@9|silver@99|lighthouse@8 7 | Leader 1: 16.245 e1-d2-p2-platinum@99|goons@1|bazaar@2|rabble@2|gold@99|treasury@2|chapel@1|bazaar@10|silver@99|lighthouse@8 8 | Leader 2: 8.035 e1-d2-p2-platinum@99|bazaar@2|rabble@1|goons@2|gold@99|bazaar@1|chapel@1|silver@1|bazaar@1|silver@99 9 | Leader 3: -26.69 e3-d2-p4-platinum@99|gold@1|adventurer@1|gold@99|bazaar@4|chapel@1|rabble@2|silver@99 10 | Leader 4: -26.745 e3-d3-p4-platinum@99|treasury@1|adventurer@1|gold@99|bazaar@3|chapel@1|rabble@9|silver@99|lighthouse@4 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.94 13.36 22.06 36.54 43.1 15 | 1 -13.26 -1.42 9.56 35.34 33.34 16 | 2 -22.66 -9.64 1.02 30.24 34.2 17 | 3 -38.1 -36.12 -31.04 -1.52 -1.5 18 | 4 -41.02 -34.26 -34.62 2.92 0.6 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_342a18af96075fd9c9e1d4bdae6174f2.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,ambassador,conspirator,quarry,bazaar,market,torturer,tribute,witch,peddler@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: -1.28 e2-d5-p8-market@6|bazaar@2|gold@99|witch@10|quarry@1|ambassador@2|peddler@10|silver@99|peddler@1 7 | Leader 1: 1.235 e3-d5-p8-market@6|gold@99|peddler@10|quarry@1|ambassador@2|torturer@10|silver@99|peddler@10 8 | Leader 2: 2.945 e2-d4-p8-market@10|bazaar@2|gold@99|torturer@10|quarry@1|ambassador@2|peddler@10|silver@99|peddler@1 9 | Leader 3: -1.27 e2-d5-p8-market@10|bazaar@2|gold@99|torturer@1|quarry@1|ambassador@2|peddler@10|silver@99|moat@1 10 | Leader 4: -1.855 e4-d5-p8-market@6|bazaar@1|gold@99|peddler@10|quarry@1|peddler@1|ambassador@2|peddler@10|silver@99|peddler@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.48 -1.98 -4 -1.28 2.14 15 | 1 1.08 0.18 0.08 1.04 2.74 16 | 2 2.1 1.4 0.64 5.16 3.12 17 | 3 -1.16 0.62 -3.8 1.24 -0.74 18 | 4 -0.76 -2.9 -3.32 -0.44 -0.46 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_349356ec05da058e75a74cf7716f04b5.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,woodcutter,ironworks,council room,explorer,festival,merchant ship,saboteur,trading post,wharf@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 17.21 e2-d4-p8-wharf@1|gold@99|wharf@2|silver@99 7 | Leader 1: 16.025 e2-d4-p8-gold@1|wharf@1|gold@99|wharf@1|merchant ship@1|festival@2|silver@99 8 | Leader 2: 14.275 e2-d4-p8-wharf@1|gold@99|wharf@2|silver@99|moat@1 9 | Leader 3: -23.145 e2-d5-p8-gold@99|merchant ship@2|explorer@1|festival@1|silver@99|moat@10 10 | Leader 4: -22.825 e2-d5-p8-gold@2|merchant ship@1|gold@99|merchant ship@4|explorer@1|festival@1|explorer@1|silver@99|moat@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.74 3.22 2.28 32.68 30.66 15 | 1 0.68 -0.64 1.32 31.36 30.74 16 | 2 -2.68 -0.68 2.16 31.16 29.3 17 | 3 -30.82 -32.2 -27.1 -1.26 -2.46 18 | 4 -29.22 -32.06 -30.82 0.8 0.18 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_35a0618273acd4dd3be66cca9dc75058.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,shanty town,gardens,ironworks,saboteur,torturer,trading post,venture,goons,bank@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 40.88 e1-d4-p8-torturer@6|gold@99|shanty town@9|torturer@2|silver@99 7 | Leader 1: 38.34 e0-d3-p8-torturer@6|bank@1|gold@99|shanty town@9|torturer@1|silver@99 8 | Leader 2: 40.08 e1-d4-p8-torturer@6|gold@99|shanty town@9|venture@4|silver@99 9 | Leader 3: -59.375 e3-d4-p8-goons@1|gold@99|venture@10|pawn@1|silver@99|pawn@10 10 | Leader 4: -61.04 e3-d4-p8-goons@1|trading post@1|gold@99|venture@10|pawn@1|silver@99|pawn@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.78 3.84 0.46 77.46 81.76 15 | 1 -5.96 0.02 -1.3 77.18 83.44 16 | 2 -0.54 2.5 1.6 77.26 81.1 17 | 3 -76.74 -80.02 -77.32 1.18 -3.42 18 | 4 -81.44 -84.14 -83.76 5.18 -1.5 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_37b6d429eebc8b71d2235f90fe6563af.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,chancellor,fishing village,trade route,warehouse,bureaucrat,feast,ironworks,trading post,hoard@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 1.9 e4-d6-p8-hoard@1|gold@99|chancellor@1|silver@1|warehouse@1|silver@99 7 | Leader 1: 2.67 e4-d6-p8-hoard@1|gold@99|ironworks@1|warehouse@1|silver@99 8 | Leader 2: -1.365 e3-d5-p8-gold@99|ironworks@1|warehouse@1|silver@99 9 | Leader 3: -1.505 e4-d6-p8-hoard@1|gold@99|bureaucrat@1|warehouse@1|silver@99 10 | Leader 4: -1.765 e3-d6-p8-gold@99|bureaucrat@1|warehouse@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.24 0.62 3.24 1.24 2.5 15 | 1 1.56 1.12 0.9 4.86 3.36 16 | 2 -4.56 -2.1 2.98 -1.58 2.78 17 | 3 -1.64 -3.34 -1.68 1.14 0.64 18 | 4 -2.42 -1.04 -2.42 -1.18 1.14 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_3836b8b05685127256325fa37cd115c4.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pearl diver,great hall,feast,ironworks,salvager,smithy,city,counting house,merchant ship,peddler@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 5.185 e2-d4-p8-gold@99|merchant ship@1|smithy@1|silver@99 7 | Leader 1: 0.155 e2-d4-p8-gold@99|merchant ship@2|smithy@1|counting house@1|silver@99|peddler@7 8 | Leader 2: -0.715 e1-d4-p8-gold@7|peddler@10|gold@99|merchant ship@2|smithy@1|city@10|silver@99 9 | Leader 3: -2.945 e1-d5-p8-gold@99|merchant ship@2|smithy@1|silver@99|pearl diver@1 10 | Leader 4: -2.57 e2-d4-p8-gold@99|peddler@2|smithy@1|silver@99|peddler@2 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -3.5 5.22 3.56 4.56 7.4 15 | 1 -0.5 -1.3 0.3 1.5 -0.68 16 | 2 -2.94 -1.82 -0.84 0.96 0.94 17 | 3 -6.38 -3.56 -0.72 1.28 -1.12 18 | 4 -3.96 -3.9 -2.58 0.16 -0.54 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_39320f9489577b50adf66bcb993fa94b.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: great hall,shanty town,bridge,caravan,coppersmith,navigator,treasure map,bazaar,festival,hoard@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 3.785 e4-d6-p8-hoard@2|gold@99|bazaar@1|caravan@10|shanty town@1|silver@99 7 | Leader 1: -0.78 e2-d6-p8-hoard@2|gold@99|caravan@10|bazaar@1|shanty town@1|silver@99 8 | Leader 2: -1.695 e3-d6-p8-hoard@2|gold@99|caravan@10|coppersmith@5|shanty town@1|silver@99 9 | Leader 3: 0.39 e5-d6-p8-hoard@3|gold@99|festival@1|caravan@10|festival@1|shanty town@10|silver@99 10 | Leader 4: -2.26 e4-d6-p8-hoard@2|festival@1|gold@99|bazaar@1|caravan@10|shanty town@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.08 3.2 6.66 0.6 4.68 15 | 1 -3.28 -1.28 0.04 -1.84 1.96 16 | 2 -4.34 -2.26 -0.44 -2.04 1.86 17 | 3 -1.24 -1.54 0.16 1.4 4.18 18 | 4 -4.2 -1.6 -0.64 -2.6 0.48 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_39348854119f0207c3eca73c269c3f58.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chancellor,fishing village,lookout,shanty town,steward,warehouse,cutpurse,quarry,ghost ship,royal seal@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 46.78 e1-d4-p8-ghost ship@3|gold@99|fishing village@1|steward@1|fishing village@5|shanty town@1|silver@99 7 | Leader 1: 42.995 e1-d4-p8-ghost ship@3|gold@99|fishing village@1|royal seal@2|steward@1|fishing village@5|shanty town@1|silver@99 8 | Leader 2: 40.145 e1-d3-p8-ghost ship@3|gold@99|fishing village@1|steward@1|fishing village@6|ghost ship@1|silver@99 9 | Leader 3: -63.285 e2-d4-p8-gold@99|cutpurse@1|warehouse@1|royal seal@10|cutpurse@1|silver@99 10 | Leader 4: -65.615 e2-d5-p8-gold@99|cutpurse@1|warehouse@1|royal seal@4|shanty town@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.8 4.58 8.52 88.6 85.42 15 | 1 -2.92 -2.58 5.76 85.84 83.3 16 | 2 -6.36 -3.26 -2.16 86.9 83.3 17 | 3 -87.66 -87.74 -87.06 1.28 9.32 18 | 4 -84.68 -84.04 -83.82 -9.92 0.94 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_39978ea7b1e1070923723d7a9e534759.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,lookout,woodcutter,bureaucrat,worker's village,ghost ship,minion,mountebank,royal seal,goons@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 39.1 e4-d4-p8-goons@1|minion@8|gold@99|minion@2|lighthouse@6|worker's village@1|silver@99|lighthouse@10 7 | Leader 1: 35.69 e3-d4-p8-goons@1|minion@10|gold@99|silver@1|royal seal@2|lighthouse@5|ghost ship@1|silver@99|lighthouse@9 8 | Leader 2: 34.74 e2-d3-p8-goons@1|minion@10|gold@99|lookout@1|royal seal@2|lighthouse@5|ghost ship@1|silver@99|lighthouse@8 9 | Leader 3: -51.615 e5-d6-p8-gold@99|woodcutter@1|mountebank@1|lighthouse@10|silver@99 10 | Leader 4: -55.83 e4-d6-p8-gold@99|mountebank@1|bureaucrat@1|silver@1|lighthouse@10|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.48 1.92 5.46 73.96 75.06 15 | 1 -2.58 0.28 3.26 69.2 72.88 16 | 2 -2.1 -3.18 0.44 70.24 74 17 | 3 -71.9 -68.9 -70.2 -0.86 4.54 18 | 4 -75.1 -71.86 -74.68 -1.68 2.76 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_39bbb3616735e85419a9521040d5d6ac.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: steward,woodcutter,bishop,coppersmith,mining village,remodel,talisman,treasure map,tribute,goons@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 15.165 e2-d3-p4-platinum@99|goons@2|gold@99|steward@1|mining village@7|silver@99 7 | Leader 1: 14.685 e2-d3-p4-platinum@99|goons@3|gold@99|mining village@9|steward@1|tribute@1|silver@99 8 | Leader 2: 9.08 e1-d3-p3-platinum@99|goons@3|gold@99|mining village@10|tribute@4|talisman@1|steward@1|silver@99 9 | Leader 3: -15.92 e1-d2-p3-platinum@99|gold@3|tribute@1|gold@99|mining village@10|talisman@1|remodel@1|steward@1|silver@99 10 | Leader 4: -23.21 e2-d3-p3-platinum@99|gold@99|mining village@1|mining village@8|steward@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.72 -5.34 2.78 29.02 34.2 15 | 1 6.1 -2.92 10.08 23.02 19.54 16 | 2 -1.48 -8.76 -0.78 23.76 22.8 17 | 3 -31.3 -24.28 -22.18 -1.84 14.08 18 | 4 -36.8 -21.9 -19.82 -14.32 1.52 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_39d0b443952a557a8f86378f79f7c3a2.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: courtyard,pearl diver,woodcutter,island,militia,moneylender,duke,treasury,upgrade,adventurer@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 5.41 e1-d4-p5-platinum@99|treasury@2|gold@99|treasury@4|militia@4|treasury@1|silver@99|courtyard@1 7 | Leader 1: -0.5 e2-d3-p5-platinum@99|treasury@3|gold@99|treasury@8|militia@3|island@8|silver@99 8 | Leader 2: -0.07 e1-d5-p5-platinum@99|treasury@2|gold@99|treasury@4|upgrade@1|militia@3|island@8|silver@99|pearl diver@1 9 | Leader 3: -1.855 e1-d2-p3-platinum@99|gold@1|treasury@2|adventurer@1|gold@99|treasury@3|moneylender@1|island@5|silver@99 10 | Leader 4: -3.585 e1-d2-p4-platinum@99|gold@1|treasury@2|adventurer@1|gold@99|treasury@3|moneylender@1|island@5|silver@99|courtyard@2 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.44 7.48 6.48 4.06 3.62 15 | 1 -8.88 -1.48 -3.02 5.4 4.5 16 | 2 -5.96 0.84 -0.02 3 1.84 17 | 3 -4.8 -2.8 -2.72 0.68 2.9 18 | 4 -8 -5.18 -5.04 3.88 0.4 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_3e95ea044740bd0ec79f6e6b1fe9f8fe.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,pearl diver,watchtower,conspirator,moneylender,quarry,market,tactician,upgrade,wharf@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 21.14 e3-d4-p8-upgrade@1|wharf@1|gold@99|wharf@2|silver@99|pawn@1 7 | Leader 1: 15.835 e2-d5-p8-upgrade@1|wharf@1|gold@99|wharf@2|pawn@1|silver@99|pearl diver@1 8 | Leader 2: 14.41 e2-d4-p8-gold@99|wharf@2|silver@2|pawn@1|silver@99|pawn@1 9 | Leader 3: -24.36 e2-d4-p8-upgrade@1|gold@99|market@1|moneylender@1|market@1|wharf@1|silver@99|pawn@3 10 | Leader 4: -28.6 e2-d4-p8-upgrade@1|gold@99|market@1|watchtower@1|market@1|silver@99|pawn@3 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.1 2.34 6.26 36.3 39.66 15 | 1 -5.28 -0.72 3.36 32.58 32.68 16 | 2 -6.18 -1.54 0.14 30.64 34.72 17 | 3 -38.94 -33.82 -28.12 1.44 3.44 18 | 4 -40.5 -34.18 -34.76 -4.96 -2.62 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_4121a1ac2a0571454b61ebeaae2f54b6.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: workshop,island,moneylender,monument,remodel,sea hag,mine,wharf,witch,hoard@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 27.965 e4-d6-p8-hoard@1|witch@1|gold@99|witch@1|silver@1|wharf@2|silver@99 7 | Leader 1: 23.69 e4-d5-p8-gold@2|witch@1|gold@99|witch@1|wharf@1|silver@99 8 | Leader 2: 18.085 e4-d6-p8-witch@1|hoard@1|gold@99|witch@1|monument@1|wharf@1|silver@99 9 | Leader 3: -33.36 e6-d7-p8-gold@99|sea hag@1|monument@2|silver@99 10 | Leader 4: -36.52 e6-d7-p8-hoard@1|gold@99|sea hag@1|monument@2|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1 5.58 8.86 48.52 48.9 15 | 1 -3.6 1.74 4.7 48.3 45.36 16 | 2 -9.48 -3.5 -0.44 43.6 41.72 17 | 3 -48.12 -48.9 -40.54 -0.42 4.12 18 | 4 -47.2 -47.34 -45 -6.54 -1 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_41caaa8ec1335b086ede1c304d574153.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: ambassador,fishing village,loan,village,feast,gardens,laboratory,mine,mint,royal seal@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 5.045 e2-d4-p8-gold@99|laboratory@2|ambassador@1|laboratory@2|silver@99 7 | Leader 1: 3.37 e2-d4-p8-gold@99|laboratory@2|ambassador@1|royal seal@1|laboratory@2|silver@99 8 | Leader 2: -3.295 e3-d4-p8-gold@99|laboratory@2|ambassador@1|mine@1|royal seal@1|laboratory@2|silver@99 9 | Leader 3: -2.85 e2-d4-p8-gold@99|laboratory@2|ambassador@1|mint@1|laboratory@1|silver@99 10 | Leader 4: -3.27 e3-d4-p8-gold@99|laboratory@4|silver@1|ambassador@1|fishing village@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.04 2.26 2.96 7.04 7.92 15 | 1 -1.08 -2.92 4.32 4.76 5.48 16 | 2 -6.58 -6.7 1.4 0 0.1 17 | 3 -7.04 -5.16 0.3 0.9 0.5 18 | 4 -5.92 -6.32 0.5 -1.34 0.22 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_45c4c49710ebc3b37b072b1798e5af63.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,loan,caravan,worker's village,minion,upgrade,witch,adventurer,grand market,peddler@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 12.6 e2-d3-p8-witch@1|minion@8|gold@99|peddler@5|lighthouse@10|upgrade@1|peddler@3|silver@99|peddler@1 7 | Leader 1: 16.58 e2-d3-p8-minion@8|gold@99|peddler@5|lighthouse@10|peddler@1|silver@99 8 | Leader 2: 14.895 e2-d3-p8-minion@8|gold@99|peddler@5|lighthouse@10|loan@10|silver@99 9 | Leader 3: -12.09 e2-d4-p8-witch@1|upgrade@1|gold@99|upgrade@1|caravan@10|minion@1|silver@99|lighthouse@7 10 | Leader 4: -33.315 e2-d3-p8-adventurer@1|gold@99|upgrade@1|caravan@10|minion@1|loan@1|witch@1|silver@99|lighthouse@3 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.8 -2.88 -1.24 24.1 30.42 15 | 1 2.68 0.2 0.6 24.74 38.3 16 | 2 1.04 -1.9 -1.14 24.88 35.56 17 | 3 -26.64 -24.72 -24.44 -4.02 27.44 18 | 4 -33.28 -37.28 -37.28 -25.42 -1.14 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_4a57f19b1aafdccbd619aba0d448f6d0.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,pearl diver,shanty town,watchtower,bridge,conspirator,cutpurse,throne room,hoard,expand@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 1.62 e4-d6-p8-hoard@2|gold@99|silver@4|shanty town@1|moat@1|silver@99|pearl diver@2 7 | Leader 1: -1.105 e4-d6-p8-hoard@2|gold@99|silver@4|shanty town@1|cutpurse@1|moat@1|silver@99|pearl diver@2 8 | Leader 2: 1.035 e4-d6-p8-hoard@2|gold@99|silver@4|shanty town@1|silver@1|watchtower@1|silver@99|moat@3 9 | Leader 3: 0.18 e4-d6-p8-hoard@2|gold@99|silver@6|cutpurse@1|moat@10|cutpurse@2|silver@99 10 | Leader 4: -0.99 e4-d6-p8-hoard@2|gold@99|silver@4|shanty town@1|moat@1|bridge@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.2 1.18 -0.94 3.98 2.26 15 | 1 -3.38 -1.4 -0.64 0.56 -0.96 16 | 2 1.32 1.7 -0.74 0.36 0.76 17 | 3 -1.7 2.14 0.48 -1.04 -0.2 18 | 4 -0.92 -0.58 -2.78 0.32 -0.46 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_4da48b248a516429bf161fc33e63194b.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,ambassador,great hall,trade route,workshop,gardens,ironworks,navigator,bazaar,counting house@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 6.87 e3-d5-p8-gold@99|bazaar@10|ironworks@1|silver@99|pawn@10 7 | Leader 1: -1.345 e3-d6-p8-gold@99|bazaar@6|ironworks@1|silver@99|pawn@10 8 | Leader 2: 0.555 e2-d5-p8-gold@99|navigator@1|bazaar@9|navigator@1|counting house@4|silver@99|pawn@3 9 | Leader 3: -2.265 e2-d4-p8-gold@99|bazaar@10|trade route@1|great hall@1|counting house@8|silver@99|pawn@3 10 | Leader 4: -3.095 e2-d5-p8-gold@99|bazaar@5|navigator@1|ironworks@1|silver@99|pawn@3 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 2.84 4.2 5.6 5.06 12.62 15 | 1 -4.94 1.06 0.48 -2.9 1.98 16 | 2 -6.48 3 -0.8 4.76 0.94 17 | 3 -6.02 2.7 -7.76 -0.06 2.02 18 | 4 -8.72 -1.08 -2.16 -0.42 0.94 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_51d2d430df7ec3f4bd54a75763e9561d.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,great hall,loan,lookout,smugglers,wishing well,monument,festival,mountebank,wharf@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 22.315 e2-d3-p4-platinum@99|gold@1|mountebank@1|gold@99|wishing well@1|chapel@1|wharf@1|wishing well@1|festival@1|silver@99 7 | Leader 1: 16.215 e2-d3-p3-platinum@99|gold@1|mountebank@1|gold@99|wishing well@1|chapel@1|mountebank@1|wishing well@1|silver@99 8 | Leader 2: 22.09 e2-d3-p3-platinum@99|gold@1|mountebank@1|gold@99|wishing well@1|chapel@1|wharf@1|wishing well@1|silver@99 9 | Leader 3: 2.77 e1-d2-p3-platinum@99|wharf@1|gold@99|wharf@1|chapel@1|festival@8|mountebank@1|wishing well@1|silver@99 10 | Leader 4: -62.995 e3-d3-p3-platinum@99|gold@99|wishing well@1|chapel@1|festival@1|wishing well@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.66 9.34 3.66 10.7 65.56 15 | 1 -9.34 0.72 -5.62 13.34 66.48 16 | 2 -2.36 5.46 0.02 15.04 70.22 17 | 3 -14.36 -11.9 -13 -2.2 50.34 18 | 4 -66.08 -65.56 -69.88 -50.46 -0.54 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_51e331603f6da58e95ccf196d201057b.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,ambassador,fishing village,loan,watchtower,cutpurse,worker's village,explorer,library,goons@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 22.195 e2-d2-p8-library@1|goons@5|gold@99|library@1|loan@1|ambassador@1|fishing village@10|silver@99|pawn@3 7 | Leader 1: 18.765 e2-d2-p8-library@1|goons@5|gold@99|library@1|loan@1|ambassador@1|fishing village@9|silver@99 8 | Leader 2: 11.19 e2-d3-p8-library@1|goons@7|gold@99|library@2|fishing village@1|ambassador@1|fishing village@10|silver@99|pawn@3 9 | Leader 3: -27.7 e3-d3-p8-library@2|gold@99|explorer@2|ambassador@1|fishing village@10|silver@99|pawn@10 10 | Leader 4: -25.66 e2-d3-p8-library@2|gold@99|explorer@2|ambassador@1|fishing village@10|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.5 3.26 11.74 36.3 37.48 15 | 1 -2.34 0.42 7.98 35.04 34.38 16 | 2 -10.56 -8.88 0.98 34.02 30.18 17 | 3 -37.56 -36.86 -33.54 0.54 -2.84 18 | 4 -35.56 -35.28 -31.94 0.14 -0.14 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_5211bebfd317fb6d71b63fa36b4c47c6.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: courtyard,lighthouse,bishop,cutpurse,moneylender,bazaar,explorer,festival,nobles,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 7.54 e2-d2-p8-bazaar@2|nobles@4|gold@99|cutpurse@1|bazaar@10|bishop@1|bazaar@1|silver@99|lighthouse@1 7 | Leader 1: 4.33 e2-d2-p8-bazaar@2|nobles@4|gold@99|bazaar@10|cutpurse@1|bishop@1|explorer@1|bazaar@1|silver@99|courtyard@1 8 | Leader 2: 2.16 e2-d2-p8-bazaar@2|nobles@8|gold@99|festival@1|bazaar@5|cutpurse@2|bishop@1|silver@99|lighthouse@1 9 | Leader 3: -2.435 e2-d2-p8-bazaar@2|nobles@8|gold@99|festival@1|bazaar@5|cutpurse@2|silver@99|lighthouse@1 10 | Leader 4: -9.525 e2-d2-p8-bazaar@2|nobles@5|gold@99|festival@1|bazaar@5|cutpurse@2|silver@99|courtyard@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.58 2.62 4.2 9.2 14.14 15 | 1 -1.18 1.52 2.62 8.14 7.74 16 | 2 -5.04 -1.02 -1.96 5.82 8.88 17 | 3 -7.9 -3.88 -2.72 0.56 4.76 18 | 4 -14.58 -7.8 -8.44 -7.28 -0.06 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_539ca186c46d4648d9aa1783d1753f17.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: loan,lookout,gardens,ironworks,militia,explorer,laboratory,witch,expand,king's court@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 43.43 e0-d3-p4-platinum@99|witch@1|king's court@1|laboratory@6|gold@99|militia@1|witch@1|explorer@1|lookout@1|laboratory@3|silver@99 7 | Leader 1: 38.3 e0-d3-p4-platinum@99|witch@1|king's court@1|laboratory@6|gold@99|militia@1|silver@1|explorer@1|lookout@1|laboratory@3|silver@99 8 | Leader 2: 39.47 e1-d3-p3-king's court@1|platinum@99|witch@1|laboratory@5|gold@99|militia@1|laboratory@1|lookout@1|loan@1|silver@99 9 | Leader 3: -61.055 e1-d2-p3-platinum@99|laboratory@10|king's court@1|gold@99|lookout@1|laboratory@9|explorer@1|silver@99 10 | Leader 4: -61.93 e2-d2-p3-platinum@99|laboratory@10|explorer@1|gold@99|lookout@1|laboratory@2|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 2.12 5.68 -0.32 83.84 84.52 15 | 1 -6.26 1.1 -4.86 79.92 84.4 16 | 2 -1.66 1 -1.2 78.4 80.14 17 | 3 -83.24 -81.36 -77.9 -1 -1.72 18 | 4 -85.1 -83.18 -80.44 1 -0.28 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_56881bf74779d80961a6f367bd9cdb83.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: trade route,wishing well,moneylender,smithy,city,duke,laboratory,tactician,harem,nobles@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 4.38 e1-d2-p8-harem@8|nobles@5|gold@99|laboratory@4|trade route@1|city@1|silver@99 7 | Leader 1: 4.315 e1-d2-p8-harem@8|nobles@5|gold@99|trade route@1|laboratory@6|wishing well@1|silver@99 8 | Leader 2: -1.11 e1-d2-p8-harem@8|nobles@5|gold@99|trade route@1|laboratory@6|smithy@1|silver@99 9 | Leader 3: -2.135 e0-d2-p8-harem@8|nobles@4|gold@99|laboratory@2|city@2|trade route@1|silver@1|city@10|silver@99 10 | Leader 4: -5.13 e3-d3-p8-harem@8|laboratory@5|gold@99|duke@1|city@1|trade route@1|city@4|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.04 -0.22 3.68 6.76 7.3 15 | 1 0.62 1.46 2.34 5 9.3 16 | 2 -4.2 -4.62 -2.54 -0.36 4.74 17 | 3 -6.28 -4.26 -0.12 -2.72 2.12 18 | 4 -7.38 -8.54 -2.64 -1.96 1.2 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_5a0c0ab9f02a30997d56fae424c6fbc5.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: shanty town,bishop,mining village,smithy,worker's village,saboteur,torturer,tribute,wharf,bank@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 35.87 e1-d2-p8-torturer@5|bank@1|gold@99|shanty town@10|worker's village@10|shanty town@1|torturer@1|silver@99 7 | Leader 1: 36.8 e1-d2-p8-torturer@5|wharf@1|gold@99|shanty town@10|worker's village@10|shanty town@1|torturer@1|silver@99 8 | Leader 2: 39.215 e1-d3-p8-torturer@5|bank@4|gold@99|shanty town@6|wharf@1|worker's village@3|shanty town@2|silver@99 9 | Leader 3: -43.75 e3-d4-p8-bank@10|gold@99|smithy@1|wharf@2|silver@99 10 | Leader 4: -66.105 e4-d4-p8-bank@10|gold@99|smithy@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.46 -0.2 1.46 65.62 76.6 15 | 1 0.38 0.3 2.34 69.5 74.98 16 | 2 -0.42 -2.1 1.56 76.04 83.34 17 | 3 -63.92 -68.28 -74.88 1.54 32.08 18 | 4 -73.82 -76.74 -82.88 -30.98 -2.56 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_5cbfddfc5fc8f79cce9eb3d302099cb4.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,great hall,loan,smugglers,bishop,gardens,salvager,tactician,torturer,adventurer@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 29.34 e2-d4-p8-torturer@1|gold@99|torturer@1|tactician@1|silver@99|cellar@2 7 | Leader 1: 26.15 e1-d5-p8-torturer@1|gold@99|tactician@1|bishop@1|silver@99|cellar@2 8 | Leader 2: 29.475 e1-d4-p8-torturer@1|gold@99|torturer@1|tactician@1|silver@99|cellar@2 9 | Leader 3: -36.855 e1-d4-p8-gold@99|bishop@1|silver@99|cellar@2 10 | Leader 4: -47.845 e3-d6-p8-gold@99|silver@1|smugglers@1|silver@9|gardens@8|silver@99|cellar@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 2.54 5.78 2.9 62.18 46.5 15 | 1 -4.82 -2.38 -6.36 54.08 61.7 16 | 2 0.1 5.9 -0.1 64.38 47.52 17 | 3 -63.6 -57.02 -64.18 -1.76 37.38 18 | 4 -45.62 -62.28 -47.82 -35.66 -1.8 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_5cf5ec2d987b3a2e51f041670e9f7b8f.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: loan,warehouse,monument,quarry,smithy,city,duke,market,treasury,adventurer@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 6.385 e1-d4-p8-gold@6|treasury@10|gold@99|monument@2|warehouse@2|treasury@2|silver@99 7 | Leader 1: -0.37 e1-d4-p8-treasury@1|gold@99|monument@2|market@1|warehouse@2|market@10|silver@99 8 | Leader 2: -1.715 e1-d4-p8-treasury@1|gold@99|monument@2|treasury@1|city@1|warehouse@2|market@10|silver@99 9 | Leader 3: -2.21 e2-d4-p8-gold@6|treasury@10|gold@99|monument@2|warehouse@2|duke@1|loan@1|silver@99 10 | Leader 4: -3.065 e1-d4-p8-treasury@1|gold@99|monument@2|market@1|city@1|warehouse@2|market@10|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.74 6.1 4.6 9.04 5.8 15 | 1 -5.42 -0.04 0.74 1.18 2.02 16 | 2 -5.92 -2.02 2.06 0.9 0.18 17 | 3 -6.76 -2.08 -2.2 1.16 2.2 18 | 4 -9.18 -2.16 -1.54 0.62 -1.58 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_6010c220c20de37dbdbbd717e8c04054.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,swindler,treasure map,bazaar,ghost ship,mountebank,venture,witch,harem,peddler@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 0.115 e3-d4-p6-platinum@99|witch@1|gold@99|witch@1|venture@1|moat@1|bazaar@3|ghost ship@1|silver@99|moat@1 7 | Leader 1: 2.66 e4-d5-p6-platinum@99|witch@1|gold@99|witch@1|moat@1|venture@2|ghost ship@7|silver@99|moat@1 8 | Leader 2: -0.375 e3-d4-p6-platinum@99|mountebank@1|gold@99|silver@2|moat@1|venture@8|moat@1|silver@99|peddler@2 9 | Leader 3: 1.09 e5-d5-p6-platinum@99|witch@1|gold@99|witch@1|moat@1|venture@2|ghost ship@7|silver@99|moat@1 10 | Leader 4: -6.06 e3-d5-p6-platinum@99|mountebank@1|gold@99|ghost ship@1|venture@8|moat@1|silver@99|moat@9 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.28 -0.78 -1.54 -1.56 4.34 15 | 1 3.26 0.56 -2.48 2.44 7.42 16 | 2 1.26 -2.52 0.32 -0.2 -0.04 17 | 3 2.18 -4.44 -0.12 -2 6.74 18 | 4 -6.22 -10.2 -0.56 -7.26 3.42 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_608da0027c72f69d9b2cd5f9cba17081.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,ambassador,great hall,baron,mining village,worker's village,explorer,market,merchant ship,venture@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 1 e3-d4-p8-gold@10|merchant ship@1|gold@99|venture@8|baron@3|market@1|mining village@1|silver@99 7 | Leader 1: -0.14 e3-d4-p8-gold@10|venture@1|gold@99|venture@8|baron@3|market@1|merchant ship@1|silver@99|moat@1 8 | Leader 2: 1.46 e3-d4-p8-gold@99|venture@8|baron@3|market@1|merchant ship@2|silver@99 9 | Leader 3: -1.34 e3-d4-p8-gold@99|venture@8|baron@2|market@1|mining village@1|silver@99 10 | Leader 4: 0.375 e3-d4-p8-gold@10|merchant ship@1|gold@99|venture@8|baron@1|market@1|baron@2|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.66 2.9 -1.28 3.04 -0.66 15 | 1 -0.44 1.6 0.5 0.4 -1.02 16 | 2 1.74 -0.14 0.28 1.7 2.54 17 | 3 -1.36 -0.26 -2.6 0.08 -1.14 18 | 4 0.5 1.04 -0.56 0.52 -0.66 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_6202453a0461d74868306e7c700e41ad.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: courtyard,warehouse,feast,counting house,library,mine,mountebank,royal seal,grand market,expand@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 30.345 e3-d5-p8-mountebank@1|gold@99|warehouse@1|mountebank@1|royal seal@2|silver@99|courtyard@7 7 | Leader 1: 27.85 e3-d5-p8-mountebank@1|gold@99|mountebank@1|warehouse@1|royal seal@10|silver@99 8 | Leader 2: 27.5 e4-d5-p8-mountebank@1|gold@99|warehouse@1|mountebank@1|royal seal@1|library@1|royal seal@1|silver@99|courtyard@7 9 | Leader 3: -42.495 e2-d4-p8-gold@99|library@2|warehouse@1|royal seal@7|mine@1|silver@99|courtyard@1 10 | Leader 4: -43.73 e1-d4-p8-gold@99|library@2|warehouse@1|royal seal@1|counting house@1|silver@99|courtyard@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.3 0.3 0.12 60 60.96 15 | 1 -2.24 -2.04 -2.68 57.84 58.48 16 | 2 0.4 0.62 0.22 54.3 54.68 17 | 3 -59 -57.9 -55.42 -1.64 2.34 18 | 4 -59.18 -57.96 -54.46 -3.32 1.08 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_6628b9d22394adc02441e833b11e2da3.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,ambassador,shanty town,steward,trade route,bureaucrat,militia,moneylender,bazaar,harem@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 24.45 e1-d4-p8-gold@2|harem@8|gold@99|bazaar@4|militia@10|silver@99|pawn@10 7 | Leader 1: 20.325 e1-d3-p8-gold@2|harem@8|gold@99|bazaar@4|militia@3|ambassador@1|silver@99|pawn@10 8 | Leader 2: 9.905 e1-d3-p8-gold@99|bazaar@4|militia@3|ambassador@1|silver@99|pawn@10 9 | Leader 3: -25.865 e2-d4-p8-gold@1|harem@7|gold@99|bureaucrat@1|bazaar@10|silver@5|shanty town@1|silver@99|pawn@2 10 | Leader 4: -30.035 e2-d4-p8-gold@1|harem@7|gold@99|bureaucrat@1|bazaar@10|silver@4|shanty town@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.26 4.96 11.2 40.1 41.54 15 | 1 -4.58 0.12 8.12 37.82 39.94 16 | 2 -12.36 -9.88 0.44 28.98 32.88 17 | 3 -40.88 -37.94 -27.44 1.22 2.8 18 | 4 -43.2 -42.58 -31.7 -2.66 2.62 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_677326dc3e2faf5000300aa839630259.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: ambassador,lookout,baron,bridge,conspirator,coppersmith,militia,ghost ship,merchant ship,saboteur@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 24.22 e2-d4-p8-ghost ship@1|gold@99|ambassador@1|ghost ship@8|merchant ship@10|silver@99 7 | Leader 1: 14.02 e3-d5-p8-ghost ship@1|gold@99|ghost ship@8|merchant ship@6|militia@1|silver@99 8 | Leader 2: 11.705 e2-d5-p8-ghost ship@1|gold@99|ghost ship@8|merchant ship@6|militia@1|silver@99 9 | Leader 3: -15.085 e3-d5-p8-gold@99|merchant ship@3|militia@1|silver@99 10 | Leader 4: -33.84 e3-d5-p8-gold@99|merchant ship@3|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 2.46 11.62 14.02 26.36 44.88 15 | 1 -13.16 -0.56 6.26 25.38 37.6 16 | 2 -15.16 -4.84 1.02 27.72 39.1 17 | 3 -22.44 -24.86 -25.94 -1.9 12.9 18 | 4 -46.26 -37.24 -37.66 -14.2 0.48 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_67e9a59df81af91f8b580f1d5a75d465.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,pearl diver,fishing village,steward,mining village,quarry,remodel,treasure map,festival,tribute@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 5.08 e1-d3-p8-gold@1|festival@2|gold@99|steward@2|fishing village@2|silver@99|lighthouse@5 7 | Leader 1: 2.8 e2-d4-p8-gold@1|festival@3|gold@99|steward@2|quarry@1|fishing village@3|mining village@5|silver@99|lighthouse@5 8 | Leader 2: -1.785 e1-d3-p8-festival@1|gold@99|steward@2|fishing village@1|tribute@1|silver@99|lighthouse@5 9 | Leader 3: -1.81 e2-d4-p8-gold@99|festival@1|steward@2|fishing village@3|mining village@8|silver@99|lighthouse@5 10 | Leader 4: -5.085 e3-d5-p8-festival@1|gold@99|steward@2|quarry@1|fishing village@3|tribute@1|silver@99|lighthouse@5 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.46 -1.3 6.6 5.7 9.32 15 | 1 -1.86 0.48 3.22 2.88 6.96 16 | 2 -5.7 -4.6 0.18 0.7 2.46 17 | 3 -5.04 -4.72 0.86 0.22 1.66 18 | 4 -8.08 -6 -3.44 -2.82 -1.32 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_67fe23bd45b7f4dc91a0c1ad4974c828.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,shanty town,village,woodcutter,sea hag,talisman,harem,nobles,expand,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 33.08 e1-d1-p8-nobles@6|harem@8|gold@99|chapel@1|sea hag@1|village@2|silver@99 7 | Leader 1: 28.735 e0-d2-p8-nobles@6|gold@99|chapel@1|sea hag@1|village@2|silver@99 8 | Leader 2: 6.505 e2-d3-p8-harem@7|gold@99|chapel@1|sea hag@1|village@1|silver@99 9 | Leader 3: -29.515 e1-d1-p8-harem@7|nobles@5|gold@99|chapel@1|silver@99|chapel@1 10 | Leader 4: -40.25 e1-d2-p8-harem@8|gold@99|chapel@1|silver@99|chapel@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.78 0.34 19.12 56.28 56.58 15 | 1 -5 0.4 18.04 50.74 51.16 16 | 2 -20.64 -16.2 -1.12 25.62 37.24 17 | 3 -55.9 -52.52 -21.76 -0.22 12.12 18 | 4 -58.36 -51.94 -37.76 -12.94 -0.86 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_6b1c811fac2c2f50267c3b3ab67f6607.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,chapel,lighthouse,great hall,conspirator,cutpurse,gardens,explorer,adventurer,bank@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 5.035 e3-d5-p8-bank@3|gold@99|explorer@1|cutpurse@1|silver@99|lighthouse@1 7 | Leader 1: 1.54 e2-d5-p8-bank@5|gold@99|explorer@1|cutpurse@1|silver@99|cellar@10 8 | Leader 2: 0.025 e4-d5-p8-bank@4|gold@99|explorer@1|cutpurse@1|silver@99 9 | Leader 3: 1.32 e3-d5-p8-gold@99|explorer@1|cutpurse@1|silver@99|lighthouse@1 10 | Leader 4: -5.45 e3-d5-p8-gold@99|explorer@1|cutpurse@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.4 1.86 0.56 6.48 11.24 15 | 1 -3.6 0.02 3.16 1.26 5.34 16 | 2 -4.42 -0.48 -1.46 -0.6 5.6 17 | 3 -4.18 2.16 1.16 0.5 6.14 18 | 4 -10 -2.5 -4.12 -5.18 -1.34 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_6c41ceb0fbd95de17028fb74c492453b.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,fishing village,swindler,village,ironworks,navigator,worker's village,bazaar,duke,peddler@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 11.305 e2-d4-p8-gold@9|peddler@10|gold@99|swindler@1|bazaar@5|swindler@1|fishing village@1|silver@99|lighthouse@1 7 | Leader 1: 12.555 e2-d5-p8-gold@12|peddler@10|gold@99|swindler@1|bazaar@10|swindler@1|silver@99|lighthouse@1 8 | Leader 2: 5.77 e2-d6-p8-gold@12|peddler@1|gold@99|ironworks@1|bazaar@10|swindler@1|fishing village@1|silver@99|lighthouse@9 9 | Leader 3: -14.01 e3-d5-p8-gold@99|ironworks@1|peddler@2|lighthouse@1|bazaar@9|silver@99|lighthouse@2 10 | Leader 4: -17.145 e2-d5-p8-gold@99|ironworks@1|peddler@2|bazaar@10|peddler@1|silver@99|lighthouse@2 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.74 1.4 2.38 16.78 24.66 15 | 1 -1.48 -1 2.08 21.66 27.96 16 | 2 -4.7 -1.74 -1.24 13.28 16.24 17 | 3 -18.62 -19.98 -13.6 1.96 -3.84 18 | 4 -27.36 -26.58 -18.2 3.56 0.54 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_6d65e8d7f61966c0f6649fb5a21e3865.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,pearl diver,ambassador,loan,warehouse,workshop,island,throne room,tribute,peddler@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 4.115 e1-d2-p3-platinum@99|gold@6|gold@99|peddler@10|ambassador@1|loan@1|pearl diver@8|silver@99 7 | Leader 1: 4.025 e0-d2-p3-platinum@99|peddler@1|gold@99|peddler@10|chapel@1|pearl diver@3|peddler@1|silver@99|pearl diver@10 8 | Leader 2: -1.145 e1-d2-p4-platinum@99|gold@99|peddler@10|chapel@1|pearl diver@3|warehouse@1|silver@99|pearl diver@10 9 | Leader 3: -2.455 e0-d2-p2-platinum@99|gold@99|peddler@10|chapel@1|pearl diver@3|loan@1|silver@99|pearl diver@10 10 | Leader 4: -8.44 e0-d1-p2-platinum@99|gold@99|peddler@10|ambassador@1|pearl diver@3|island@2|silver@99|pearl diver@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.42 -22.6 -14.96 -10.8 64.82 15 | 1 20.86 0.26 1.5 4.32 -10.58 16 | 2 15.44 -5.84 -1.42 -1 -13.18 17 | 3 12.18 -4.04 1.1 -0.64 -19.06 18 | 4 -69.14 7.2 14.42 13.76 1.5 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_73c3f98e7a581a7ee43022f632eaf683.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,moneylender,remodel,sea hag,talisman,counting house,merchant ship,minion,venture,harem@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 12.07 e2-d4-p8-gold@1|venture@5|gold@99|venture@4|counting house@1|chapel@1|sea hag@1|merchant ship@1|silver@99 7 | Leader 1: 5.04 e3-d3-p8-harem@1|venture@5|gold@99|minion@1|merchant ship@1|chapel@1|sea hag@1|counting house@1|silver@99 8 | Leader 2: -1.65 e1-d3-p8-venture@4|gold@99|sea hag@1|chapel@1|merchant ship@1|silver@99 9 | Leader 3: -4.7 e1-d4-p8-gold@1|venture@7|gold@99|minion@4|silver@1|chapel@1|silver@99 10 | Leader 4: -10.175 e1-d3-p8-harem@1|venture@7|gold@99|counting house@1|chapel@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.52 6.2 12.52 11.4 18.16 15 | 1 -6.1 1.02 3.08 6.9 16.28 16 | 2 -9.72 -8.24 0.7 3.18 8.18 17 | 3 -10.24 -6.76 -4.58 1.5 2.78 18 | 4 -15.22 -14.72 -9.02 -1.74 -0.24 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_74c1acfaf08d5b0e49f16f3a501566d9.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: bridge,bureaucrat,caravan,conspirator,moneylender,talisman,counting house,mine,trading post,hoard@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 7.245 e2-d6-p8-trading post@1|hoard@1|gold@99|caravan@6|bridge@5|silver@99 7 | Leader 1: 1.605 e2-d6-p8-trading post@1|hoard@1|gold@99|caravan@4|conspirator@1|caravan@3|silver@99 8 | Leader 2: -0.385 e2-d6-p8-trading post@1|hoard@1|gold@99|caravan@4|bureaucrat@1|caravan@1|silver@99 9 | Leader 3: -3.71 e2-d5-p8-trading post@1|gold@99|caravan@6|counting house@8|silver@99 10 | Leader 4: -3.75 e2-d6-p8-trading post@1|hoard@1|gold@99|caravan@4|moneylender@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.2 3.52 7.48 11 6.98 15 | 1 -5.12 0.92 1.54 5.4 4.6 16 | 2 -5.98 -4.06 0.4 3.02 5.48 17 | 3 -9.94 -2.38 -0.72 -3.44 -1.8 18 | 4 -7.78 -4.52 -4.58 1.88 -1.28 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_77ae51d30f0af6cee6916f7455045c39.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,moat,fishing village,trade route,militia,smithy,duke,merchant ship,tactician,grand market@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 2.29 e2-d5-p8-gold@99|merchant ship@10|militia@1|tactician@2|fishing village@3|smithy@1|silver@99|lighthouse@1 7 | Leader 1: 4.19 e2-d5-p8-gold@1|merchant ship@3|gold@99|militia@1|duke@8|fishing village@3|smithy@2|silver@99|lighthouse@1 8 | Leader 2: 0.68 e2-d4-p8-gold@99|merchant ship@10|smithy@1|fishing village@3|smithy@4|silver@99|lighthouse@3 9 | Leader 3: -3.38 e2-d5-p8-gold@99|merchant ship@10|militia@1|tactician@2|fishing village@3|moat@1|silver@99|moat@3 10 | Leader 4: -5.45 e2-d4-p8-gold@99|smithy@1|merchant ship@10|fishing village@3|moat@1|merchant ship@9|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.94 -2.1 0.34 5.02 5.9 15 | 1 0.62 1.98 1.78 7.78 6.58 16 | 2 -3.08 -4.62 0.32 4.96 5.46 17 | 3 -5.86 -6.1 -4.1 0.12 2.54 18 | 4 -9.86 -7.34 -6.02 1.42 -0.94 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_78aaec0a10ae1a4a95b24bbe31622d9e.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: great hall,wishing well,bishop,salvager,talisman,explorer,rabble,royal seal,trading post,expand@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 26.01 e0-d2-p8-gold@99|bishop@1|royal seal@1|wishing well@10|explorer@1|silver@99 7 | Leader 1: 27.93 e0-d1-p8-gold@99|bishop@1|wishing well@9|silver@99 8 | Leader 2: -15.07 e2-d4-p8-gold@1|rabble@1|gold@99|silver@1|rabble@1|silver@12|trading post@1|silver@99 9 | Leader 3: -19.14 e2-d4-p8-gold@2|rabble@1|gold@99|royal seal@1|rabble@2|silver@99 10 | Leader 4: -21.375 e2-d4-p8-gold@1|rabble@1|gold@99|silver@1|rabble@1|explorer@1|trading post@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.8 23.88 25.44 25.16 29.56 15 | 1 -21.24 -4.24 40.78 45.6 46.58 16 | 2 -24.12 -42.6 -0.54 3.32 3.12 17 | 3 -28.82 -45.1 -2.78 1.36 0.14 18 | 4 -28.8 -48.54 -5.96 -2.2 1.6 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_791cca0409134c86f6419039eb0895e0.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,pearl diver,lookout,shanty town,watchtower,bureaucrat,merchant ship,mint,mountebank,venture@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 16.755 e2-d2-p4-platinum@99|mountebank@1|gold@99|venture@3|lookout@1|shanty town@3|watchtower@2|silver@99|moat@1 7 | Leader 1: 16.215 e2-d2-p4-platinum@99|mountebank@1|gold@99|venture@4|lookout@1|shanty town@3|watchtower@2|silver@99 8 | Leader 2: 15.78 e2-d2-p4-platinum@99|mountebank@1|gold@99|venture@4|lookout@1|shanty town@3|watchtower@2|silver@99|pearl diver@1 9 | Leader 3: -23.445 e3-d3-p4-platinum@99|venture@7|gold@99|shanty town@1|lookout@1|shanty town@1|watchtower@1|silver@99 10 | Leader 4: -24.525 e3-d3-p4-platinum@99|gold@99|venture@4|shanty town@1|lookout@1|shanty town@1|watchtower@1|silver@99|moat@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.1 5.42 0.7 33.22 27.68 15 | 1 -2.64 1.2 0.32 37.66 29.52 16 | 2 -3.26 -1.08 1.06 36.12 31.34 17 | 3 -32.6 -32.72 -35.26 0.76 6.8 18 | 4 -27.4 -30.56 -31.72 -8.42 -0.4 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_7a13c357a1edb4e28a6273d474b07a3f.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,lookout,coppersmith,moneylender,scout,worker's village,festival,torturer,adventurer,expand@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 39.92 e0-d2-p2-platinum@99|torturer@3|festival@2|gold@99|silver@1|worker's village@4|chapel@1|coppersmith@1|silver@99 7 | Leader 1: 40.01 e0-d2-p2-platinum@99|torturer@3|festival@2|gold@99|silver@1|worker's village@4|chapel@1|torturer@1|silver@99 8 | Leader 2: 34.275 e2-d2-p3-platinum@99|torturer@3|gold@99|worker's village@2|chapel@1|worker's village@1|silver@99 9 | Leader 3: -55.55 e2-d3-p4-platinum@99|gold@99|chapel@1|silver@99 10 | Leader 4: -58.715 e3-d4-p5-platinum@99|adventurer@1|gold@99|chapel@1|silver@6|festival@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.4 -1.5 5.38 72.84 82.96 15 | 1 1.12 -0.38 3.58 72.42 82.92 16 | 2 -5.58 -6.24 -0.44 65.46 83.46 17 | 3 -70.62 -68.9 -67.18 -1.7 -15.5 18 | 4 -82.96 -82.28 -84.06 14.44 0.74 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_7b2f9700c060c0a7150ba4c7636ea9b4.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,courtyard,lookout,watchtower,navigator,worker's village,duke,festival,royal seal,grand market@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 7.42 e2-d4-p8-gold@12|royal seal@9|gold@99|silver@1|courtyard@1|festival@2|courtyard@1|silver@99|courtyard@3 7 | Leader 1: 2.26 e2-d4-p8-gold@99|courtyard@2|royal seal@1|festival@2|silver@99|courtyard@8 8 | Leader 2: -2.325 e2-d4-p8-gold@99|silver@1|courtyard@1|festival@2|courtyard@1|festival@1|silver@99|courtyard@3 9 | Leader 3: -3.885 e2-d4-p8-gold@12|royal seal@3|gold@99|silver@1|courtyard@2|worker's village@1|silver@99|courtyard@3 10 | Leader 4: -3.125 e2-d4-p8-gold@99|silver@1|courtyard@2|silver@99|courtyard@4 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.78 3.52 7.5 9.8 8.86 15 | 1 -1.94 -0.34 2.02 5.16 3.8 16 | 2 -6.74 -4.62 -0.72 1.42 0.64 17 | 3 -6.98 -6.86 -0.56 2.34 -1.14 18 | 4 -7.32 -4.54 -2.54 1.9 -0.52 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_7d389ce5472dfafc4bf4f8f8333ee227.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: ambassador,navigator,quarry,merchant ship,minion,mint,trading post,tribute,hoard,expand@25Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 13.19 e2-d3-p6-platinum@99|gold@99|ambassador@2|minion@1|silver@1|merchant ship@3|silver@99 7 | Leader 1: 7.015 e2-d3-p6-platinum@99|gold@99|ambassador@2|silver@1|merchant ship@3|silver@99 8 | Leader 2: -0.815 e2-d4-p6-platinum@99|hoard@1|gold@99|ambassador@2|silver@1|merchant ship@3|silver@99 9 | Leader 3: -5.575 e2-d3-p6-platinum@99|gold@99|ambassador@2|minion@1|navigator@1|merchant ship@3|silver@99 10 | Leader 4: -12.04 e3-d4-p6-platinum@99|gold@99|ambassador@1|minion@2|tribute@1|merchant ship@3|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.14 2.76 13.5 17.42 19.08 15 | 1 -5.76 -1.4 6.04 13.24 14.54 16 | 2 -12.06 -8.36 -0.88 4.18 12.98 17 | 3 -14.76 -10.08 -2.26 -0.3 4.8 18 | 4 -19.26 -14.66 -10.58 -3.66 1.58 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_80f3b0f8750afc592249ca33093522ba.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,ambassador,lookout,steward,trade route,caravan,gardens,mining village,merchant ship,harem@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 8.18 e2-d3-p8-harem@8|gold@99|merchant ship@3|caravan@8|trade route@1|silver@99 7 | Leader 1: 2.47 e2-d2-p8-harem@8|merchant ship@5|gold@99|caravan@1|merchant ship@10|caravan@3|ambassador@1|silver@99 8 | Leader 2: -0.96 e1-d2-p8-harem@8|gold@99|caravan@5|trade route@1|silver@99 9 | Leader 3: -3.09 e2-d4-p8-gold@1|harem@8|gold@99|merchant ship@7|silver@99 10 | Leader 4: -5.975 e3-d3-p8-harem@8|gold@99|merchant ship@10|caravan@3|merchant ship@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.04 13.08 6.38 7.6 5.66 15 | 1 -9.14 -0.3 -2.24 7.7 13.56 16 | 2 -7.56 2.6 1.34 0.38 0.74 17 | 3 -6.02 -5.78 0.5 -0.82 -1.06 18 | 4 -9.7 -14.12 2.48 -2.56 -0.12 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_8428b1eb1857d43395bc2c0c587f1a19.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: warehouse,wishing well,mining village,quarry,mint,mountebank,grand market,harem,hoard,expand@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 39.6 e3-d6-p8-hoard@1|harem@8|gold@99|warehouse@1|mountebank@3|silver@99 7 | Leader 1: 40.845 e3-d6-p8-hoard@1|harem@8|gold@99|mountebank@3|warehouse@1|silver@1|wishing well@1|silver@99 8 | Leader 2: 40.105 e3-d6-p8-hoard@1|harem@7|gold@99|mountebank@3|warehouse@1|silver@6|mining village@1|silver@99 9 | Leader 3: -59.905 e3-d5-p8-hoard@1|harem@8|gold@99|warehouse@1|silver@7|wishing well@1|silver@99 10 | Leader 4: -61.085 e3-d4-p8-hoard@1|harem@8|gold@99|warehouse@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.34 -0.12 -2.08 79.8 80.8 15 | 1 0.5 -0.28 -0.24 81.18 81.94 16 | 2 0.06 1.04 2.08 79.62 79.7 17 | 3 -80.56 -81.84 -80.84 0.74 3.62 18 | 4 -80.6 -81.98 -81.24 -0.52 0.96 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_84690612b07f7e21a9a408077fdde641.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chancellor,smugglers,trade route,warehouse,bureaucrat,coppersmith,ironworks,monument,throne room,upgrade@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 10.93 e2-d4-p8-gold@99|monument@1|silver@1|monument@1|warehouse@1|silver@99 7 | Leader 1: 4.49 e2-d5-p8-gold@99|monument@1|upgrade@1|silver@1|monument@1|warehouse@1|silver@99 8 | Leader 2: -4.365 e2-d4-p8-gold@12|upgrade@1|gold@99|monument@3|silver@99 9 | Leader 3: -6.02 e2-d5-p8-gold@99|monument@1|silver@1|coppersmith@1|warehouse@1|silver@99 10 | Leader 4: -4.76 e2-d5-p8-gold@99|monument@2|silver@4|monument@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.54 4.78 11.28 13.44 14.22 15 | 1 -5.28 -0.8 7.16 6.08 10 16 | 2 -14.36 -4.12 -0.68 0.96 0.06 17 | 3 -15.2 -6.64 -0.62 0.76 -1.62 18 | 4 -14.18 -4.96 0.18 -0.08 -0.6 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_850222e06caf08613708924dbe67fcdd.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: swindler,baron,bureaucrat,conspirator,cutpurse,navigator,quarry,remodel,laboratory,merchant ship@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 28.88 e2-d4-p5-platinum@99|gold@3|laboratory@10|gold@99|merchant ship@1|swindler@2|silver@99 7 | Leader 1: 22.495 e2-d5-p5-platinum@99|gold@4|laboratory@10|gold@99|silver@1|swindler@2|silver@99 8 | Leader 2: 17.98 e4-d4-p5-platinum@99|gold@1|laboratory@10|gold@99|silver@1|swindler@2|silver@3|baron@2|silver@99 9 | Leader 3: -30.22 e2-d2-p4-platinum@99|gold@1|laboratory@10|gold@99|merchant ship@3|cutpurse@1|merchant ship@1|silver@99 10 | Leader 4: -40.41 e2-d2-p4-platinum@99|gold@1|laboratory@10|gold@99|merchant ship@3|cutpurse@1|navigator@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.02 3.3 13.74 46.6 51.88 15 | 1 -2.78 -1 9.38 38.02 45.36 16 | 2 -12.42 -9.12 2.06 44.28 49.18 17 | 3 -45.08 -38.78 -46.22 -1.62 9.2 18 | 4 -52.3 -46.66 -50.68 -12 1.3 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_871ba54ac7f8b7c1fd5ea4bcdc33d723.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,ambassador,trade route,coppersmith,gardens,mining village,duke,saboteur,wharf,witch@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 25.885 e1-d3-p8-witch@1|gold@99|wharf@2|ambassador@1|mining village@1|silver@99 7 | Leader 1: 26.905 e1-d3-p8-witch@1|gold@99|wharf@3|ambassador@1|mining village@10|witch@1|silver@99|pawn@10 8 | Leader 2: 23.8 e2-d3-p8-witch@1|gold@99|silver@1|wharf@2|ambassador@1|silver@99 9 | Leader 3: -41.15 e1-d4-p8-gold@99|coppersmith@2|silver@99|pawn@4 10 | Leader 4: -37.16 e1-d4-p8-gold@99|coppersmith@2|gardens@8|witch@1|silver@99|pawn@4 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.86 -4.48 2.84 59.52 45.66 15 | 1 2.82 -3.12 3.36 59.92 41.52 16 | 2 -3.54 -6.46 2.66 59.2 46 17 | 3 -60.44 -59.4 -60.22 4.14 15.46 18 | 4 -46.06 -39.58 -47.52 -15.48 2.06 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_87cb2b8aa96f18818b1e9dc0480a3662.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,fishing village,steward,trade route,watchtower,city,duke,festival,mint,trading post@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 6.92 e1-d2-p3-platinum@99|festival@10|gold@99|mint@1|steward@1|fishing village@3|watchtower@3|silver@99|pawn@9 7 | Leader 1: 3.725 e2-d3-p6-platinum@99|festival@2|mint@1|gold@99|watchtower@1|steward@1|fishing village@3|watchtower@3|silver@99|pawn@7 8 | Leader 2: -3.965 e1-d2-p4-platinum@99|festival@3|gold@99|duke@1|steward@1|fishing village@3|watchtower@3|silver@99|pawn@3 9 | Leader 3: -0.75 e1-d3-p4-platinum@99|festival@2|gold@99|watchtower@1|steward@1|fishing village@3|watchtower@1|silver@99 10 | Leader 4: -4.825 e1-d3-p4-platinum@99|festival@2|mint@1|gold@99|watchtower@1|steward@1|fishing village@3|watchtower@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.86 3.02 7.7 6.86 10.1 15 | 1 -4.96 0.9 6.54 7.22 6.1 16 | 2 -8.24 -7.08 -2.08 -1.76 1.22 17 | 3 -5.42 -1.76 1.32 1.34 2.86 18 | 4 -9.24 -7.4 1.36 -4.02 -1.12 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_88480f3f21f6adaddf13862a09303071.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,loan,baron,bridge,navigator,worker's village,council room,ghost ship,library,tribute@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 1.8 e1-d3-p4-platinum@99|ghost ship@1|gold@99|ghost ship@5|loan@1|worker's village@1|silver@99|lighthouse@2 7 | Leader 1: -0.89 e1-d5-p5-platinum@99|ghost ship@1|gold@99|loan@1|ghost ship@6|worker's village@1|library@3|silver@99 8 | Leader 2: 0.13 e1-d4-p4-platinum@99|ghost ship@2|gold@99|ghost ship@5|loan@1|ghost ship@1|council room@3|silver@99|lighthouse@2 9 | Leader 3: 2.675 e3-d3-p5-platinum@99|gold@99|library@3|lighthouse@1|council room@1|silver@99|lighthouse@1 10 | Leader 4: -5.75 e3-d3-p5-platinum@99|council room@1|gold@99|library@4|tribute@1|ghost ship@1|silver@99|lighthouse@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.26 -1.72 -0.66 -6.44 16.02 15 | 1 -2.26 0.56 -1.58 -9.62 9.9 16 | 2 -0.34 0.26 0.9 -12.02 12.62 17 | 3 8.24 9.18 13.08 -0.96 -19.8 18 | 4 -16.3 -13.1 -11.02 17.42 2.26 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_899226bda89cd8767360691017c4d359.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,great hall,island,salvager,council room,mine,tactician,venture,harem,peddler@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 7.38 e0-d3-p8-harem@8|peddler@1|gold@99|venture@1|council room@1|venture@2|island@7|silver@99|moat@1 7 | Leader 1: 4.255 e0-d3-p8-harem@8|peddler@1|gold@99|venture@1|council room@1|venture@2|island@7|silver@99|peddler@1 8 | Leader 2: -2.165 e0-d3-p8-harem@8|gold@99|peddler@10|venture@3|peddler@2|island@7|silver@99|moat@1 9 | Leader 3: -3.77 e1-d3-p8-gold@4|harem@1|gold@99|council room@1|venture@5|island@8|silver@99|peddler@1 10 | Leader 4: -6.165 e1-d3-p8-gold@4|harem@1|gold@99|council room@1|venture@5|island@8|silver@99|moat@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 2.08 2.76 6 7.48 13.28 15 | 1 -2.16 0.84 4.02 5.24 9.92 16 | 2 -9.06 -4.88 -1.04 2.32 2.96 17 | 3 -7.04 -8.92 -3.1 -0.3 3.98 18 | 4 -10.04 -9.04 -1.68 -3.9 2.28 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_8a2fb25e55b87e0e26b9bea2f2732264.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: courtyard,chancellor,great hall,coppersmith,militia,monument,salvager,library,upgrade,harem@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 5.58 e1-d4-p8-upgrade@1|harem@8|gold@99|monument@2|library@1|silver@9|great hall@1|silver@99 7 | Leader 1: 5.51 e1-d3-p8-gold@1|harem@8|gold@99|monument@1|upgrade@1|monument@1|library@2|silver@99|courtyard@2 8 | Leader 2: -0.96 e1-d4-p8-gold@1|harem@8|gold@99|monument@2|library@1|silver@9|militia@1|silver@99 9 | Leader 3: -2.125 e1-d3-p8-gold@1|harem@8|gold@99|militia@1|upgrade@1|monument@1|library@2|silver@99|courtyard@2 10 | Leader 4: -7.405 e2-d4-p8-harem@7|gold@99|upgrade@1|militia@1|library@1|militia@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.14 2.9 12.48 2.66 4.28 15 | 1 -0.78 -1.4 14.08 4.3 4.44 16 | 2 -13.78 -14.12 0.84 4.28 19.78 17 | 3 -0.74 -5.38 -6.1 -2.8 3.72 18 | 4 -5.26 -6.08 -16.88 -1.4 0.82 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_8cebfde2b343a0d26d5db0b18ce2156c.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,steward,gardens,island,scout,worker's village,explorer,royal seal,torturer,hoard@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 29.94 e4-d4-p8-torturer@1|hoard@1|gold@99|torturer@3|island@1|worker's village@3|silver@99 7 | Leader 1: 27.01 e2-d5-p8-torturer@1|hoard@2|gold@99|steward@1|torturer@2|worker's village@1|island@1|silver@99 8 | Leader 2: 21.915 e2-d5-p8-hoard@1|torturer@1|gold@99|torturer@6|island@1|silver@99|pawn@10 9 | Leader 3: -40.16 e3-d6-p8-hoard@10|royal seal@1|gold@99|island@5|silver@1|pawn@1|torturer@4|silver@99 10 | Leader 4: -40.225 e3-d6-p8-hoard@3|royal seal@1|gold@99|island@3|silver@1|pawn@1|gardens@5|silver@99|pawn@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0 3.06 5.68 54.7 56.32 15 | 1 0.58 0.06 2.56 53.54 51.36 16 | 2 -7.98 -4.12 -1.44 51.6 48.16 17 | 3 -56.3 -55.44 -52.64 0.44 3.74 18 | 4 -55.2 -52.6 -51.16 -1.94 -1 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_8eb3adcc61268b4ad5193afcf938724b.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: fishing village,lookout,watchtower,workshop,bridge,island,tactician,adventurer,harem,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 8.845 e3-d4-p8-king's court@2|gold@99|tactician@1|bridge@10|fishing village@2|silver@99 7 | Leader 1: 9.55 e2-d4-p8-king's court@2|harem@1|gold@99|tactician@1|bridge@4|fishing village@1|silver@99 8 | Leader 2: 6.36 e3-d4-p8-king's court@2|gold@99|tactician@1|bridge@3|silver@99 9 | Leader 3: -9.4 e2-d3-p8-gold@1|harem@8|gold@99|island@8|bridge@1|silver@99 10 | Leader 4: -16.645 e3-d4-p8-king's court@3|gold@99|bridge@10|fishing village@2|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.62 0.94 -1.22 14.38 21.28 15 | 1 -1.28 -1.46 2.86 16.84 19.78 16 | 2 -1.8 -1.28 -0.96 10.86 17.66 17 | 3 -16.72 -15.22 -14.88 -3.28 9.22 18 | 4 -20.22 -17.92 -20.82 -7.62 0.08 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_93b018391000b4863d2dcc59001fbb09.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,great hall,loan,warehouse,scout,smithy,festival,mine,king's court,peddler@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 8.835 e2-d4-p8-festival@3|king's court@4|gold@99|smithy@1|peddler@10|festival@5|loan@1|warehouse@2|silver@99|lighthouse@6 7 | Leader 1: 7.3 e3-d4-p8-festival@3|king's court@2|gold@99|smithy@1|peddler@10|festival@5|loan@1|warehouse@2|silver@99 8 | Leader 2: 5.595 e2-d4-p8-festival@4|king's court@1|gold@99|smithy@1|peddler@10|loan@1|warehouse@3|silver@99 9 | Leader 3: 3.745 e2-d4-p8-festival@4|gold@99|smithy@1|peddler@10|festival@5|loan@1|warehouse@2|silver@99|lighthouse@6 10 | Leader 4: -26.45 e3-d3-p8-festival@3|king's court@1|gold@99|smithy@1|peddler@10|festival@1|mine@1|warehouse@2|silver@99|peddler@3 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.18 2.02 3.24 2.82 27.26 15 | 1 -2.28 0.36 3.22 2.06 26.2 16 | 2 -2.9 0.06 -0.28 0.76 24.46 17 | 3 -4.06 -3.04 -0.6 0.54 22.68 18 | 4 -28.92 -26.38 -24.92 -25.58 2.84 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_95c603105c267c343f7bf7482db1280d.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,fishing village,island,remodel,scout,worker's village,tactician,witch,grand market,harem@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 50.625 e3-d5-p8-witch@3|gold@99|tactician@1|fishing village@10|remodel@1|silver@99|cellar@10 7 | Leader 1: 50.06 e2-d5-p8-witch@3|gold@99|tactician@1|fishing village@10|island@2|scout@10|silver@99|cellar@10 8 | Leader 2: 44.77 e3-d5-p8-witch@3|gold@99|tactician@1|fishing village@10|silver@1|fishing village@1|silver@99|cellar@1 9 | Leader 3: -71 e2-d4-p8-gold@99|island@2|silver@99 10 | Leader 4: -75.635 e2-d4-p8-grand market@1|gold@99|island@7|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 3.58 0.8 6.32 97.04 98.34 15 | 1 0.54 -1.04 4.1 97.34 98.26 16 | 2 -9.16 -6.54 -0.28 96.86 97.92 17 | 3 -97.34 -96.48 -97.02 0.42 6.84 18 | 4 -97.96 -97.54 -98.1 -8.94 -0.7 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_968cad48ed023256c18a44dede8dbfdb.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: caravan,remodel,spy,talisman,treasure map,bazaar,counting house,festival,treasury,venture@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: -0.035 e2-d3-p8-gold@11|treasury@1|gold@99|bazaar@2|remodel@1|caravan@5|festival@1|silver@99 7 | Leader 1: 2.39 e3-d3-p8-gold@11|treasury@1|gold@99|remodel@1|venture@4|silver@1|venture@7|caravan@5|silver@99 8 | Leader 2: 1.15 e3-d3-p8-gold@99|remodel@1|venture@10|silver@1|caravan@5|venture@3|silver@99 9 | Leader 3: 0.285 e3-d4-p8-gold@99|venture@7|silver@1|bazaar@5|caravan@6|silver@99 10 | Leader 4: -1.355 e2-d2-p8-gold@11|treasury@10|gold@99|bazaar@1|remodel@1|caravan@6|festival@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.58 -2.2 0.56 1.44 0.06 15 | 1 2.22 -1.08 1.6 4.78 0.96 16 | 2 1.14 1.02 -0.14 1.18 1.26 17 | 3 2.84 -0.56 0.06 -1.8 -1.2 18 | 4 -1.7 -3.22 -2.26 1.76 0.9 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_993fe64ec1b888bcd3536b1eb4d8e31b.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: steward,swindler,conspirator,quarry,throne room,bazaar,duke,ghost ship,royal seal,hoard@25Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 37.86 e4-d4-p4-platinum@99|bazaar@2|ghost ship@1|bazaar@10|gold@99|bazaar@10|steward@2|conspirator@1|bazaar@10|swindler@1|silver@99 7 | Leader 1: 27.03 e3-d4-p4-platinum@99|bazaar@2|ghost ship@1|bazaar@1|gold@99|bazaar@10|steward@2|ghost ship@1|bazaar@10|swindler@1|silver@99 8 | Leader 2: 20.045 e3-d4-p3-platinum@99|bazaar@2|ghost ship@1|bazaar@10|gold@99|bazaar@10|steward@2|throne room@1|bazaar@10|swindler@1|silver@99 9 | Leader 3: -36.825 e4-d4-p4-platinum@99|bazaar@2|gold@99|bazaar@10|steward@2|conspirator@2|royal seal@10|silver@99 10 | Leader 4: -45.815 e4-d4-p5-platinum@99|hoard@1|bazaar@1|gold@99|bazaar@10|steward@2|conspirator@10|bazaar@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.26 12.92 12.92 57.74 67.86 15 | 1 -12.8 -3.1 3.32 58.42 59.18 16 | 2 -9.34 0.96 2.04 39.76 48.8 17 | 3 -60.88 -56.9 -38.4 0.64 8.88 18 | 4 -67.2 -57.68 -48 -10.38 -0.32 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_9ad42b0b592d30067497cba8d2e521ea.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: great hall,bureaucrat,cutpurse,feast,gardens,island,talisman,council room,mine,vault@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 0.62 e2-d4-p4-platinum@99|gold@1|council room@1|gold@99|island@4|silver@99 7 | Leader 1: 1.09 e1-d4-p5-platinum@99|gold@1|mine@1|gold@99|council room@1|vault@1|island@6|silver@99 8 | Leader 2: 0.615 e0-d2-p5-platinum@99|gold@3|council room@1|gold@99|vault@1|island@2|silver@99 9 | Leader 3: 0.69 e2-d4-p5-platinum@99|gold@1|mine@1|gold@99|council room@3|island@6|silver@99 10 | Leader 4: -4.485 e2-d4-p5-platinum@99|gold@1|mine@1|gold@99|vault@1|island@6|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.18 -0.14 0.18 2.02 0.42 15 | 1 -0.64 0.24 -1.24 0.48 5.76 16 | 2 -0.78 0.14 2.26 0.2 2.9 17 | 3 -2.84 -0.42 -3.18 -2.06 9.2 18 | 4 -2.44 -5.36 -2.18 -7.96 0.92 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_9cb0cc4d07bea98d87616ef5041e510c.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chancellor,great hall,warehouse,library,merchant ship,trading post,vault,venture,adventurer,grand market@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 3.915 e3-d5-p8-vault@1|gold@99|venture@1|silver@1|venture@10|merchant ship@6|trading post@1|silver@99 7 | Leader 1: 0.62 e3-d5-p8-vault@1|gold@99|venture@1|silver@1|library@1|silver@99 8 | Leader 2: -1.515 e3-d5-p8-gold@99|warehouse@1|silver@1|merchant ship@10|venture@1|vault@3|silver@99 9 | Leader 3: 1.43 e3-d5-p8-vault@1|gold@99|venture@1|silver@1|merchant ship@10|trading post@1|silver@99 10 | Leader 4: -2.21 e4-d5-p8-gold@99|vault@2|silver@1|venture@1|vault@3|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.44 3.3 3.18 3.72 5.46 15 | 1 -3.22 -1.94 1.34 2.02 2.34 16 | 2 -5.14 1.66 -0.8 -4.42 1.84 17 | 3 -0.52 1.94 1.12 -2.38 3.18 18 | 4 -4.8 0.14 -0.2 -3.98 0.82 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_9ce1ce675bad0a4560547139027a9a62.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: loan,smugglers,bridge,scout,spy,city,explorer,merchant ship,nobles,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 5.395 e2-d4-p8-gold@2|nobles@8|gold@99|explorer@1|merchant ship@3|silver@99 7 | Leader 1: 5.925 e2-d4-p8-gold@2|nobles@8|gold@99|merchant ship@4|silver@99 8 | Leader 2: 1.21 e2-d4-p8-gold@2|nobles@8|gold@99|explorer@1|merchant ship@1|city@1|silver@99 9 | Leader 3: -2.81 e3-d4-p8-gold@1|nobles@8|gold@99|silver@2|explorer@1|silver@99 10 | Leader 4: -7.475 e2-d4-p8-gold@2|nobles@8|gold@99|silver@1|smugglers@1|merchant ship@3|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.88 1.24 5.16 6.08 9.1 15 | 1 3.02 -2.2 6.46 6.16 8.06 16 | 2 -4.06 -3.86 -1.9 4.26 8.5 17 | 3 -6.58 -6.4 -1.78 1.3 3.52 18 | 4 -11.38 -8.92 -5.92 -3.68 -0.6 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_9e824a89a1d60e8107221046964f7b64.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: loan,shanty town,woodcutter,bishop,gardens,navigator,merchant ship,adventurer,grand market,bank@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 7.47 e2-d5-p8-bank@3|gold@99|merchant ship@1|bishop@1|merchant ship@1|silver@99 7 | Leader 1: 7.685 e4-d4-p8-gold@99|merchant ship@1|bishop@1|merchant ship@1|silver@99 8 | Leader 2: 1.66 e3-d4-p8-grand market@1|bank@1|gold@99|merchant ship@1|bishop@1|merchant ship@1|silver@99 9 | Leader 3: -8.26 e3-d4-p8-bank@1|merchant ship@1|gold@99|merchant ship@1|silver@1|merchant ship@2|silver@99 10 | Leader 4: -9.96 e2-d5-p8-bank@3|gold@99|merchant ship@1|shanty town@1|merchant ship@4|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.06 -0.9 -1.6 16.8 15.58 15 | 1 -0.34 -0.86 2.58 12.44 16.06 16 | 2 -0.42 1.9 4.72 2.42 2.74 17 | 3 -16.76 -14.64 -1 1.38 -0.64 18 | 4 -19.38 -16.02 -3.08 -1.36 1.96 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_9ee9e9f96bef83e589fbc765861a08fe.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,pearl diver,warehouse,workshop,baron,militia,monument,explorer,mine,torturer@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 33.595 e2-d5-p6-platinum@99|torturer@1|gold@4|torturer@1|gold@99|torturer@2|militia@1|silver@99|pearl diver@1 7 | Leader 1: 33.37 e2-d5-p6-platinum@99|torturer@1|gold@99|torturer@2|militia@1|torturer@1|silver@99|cellar@1 8 | Leader 2: 32.95 e2-d4-p6-platinum@99|torturer@1|gold@2|torturer@1|gold@99|torturer@2|militia@1|silver@99|cellar@1 9 | Leader 3: -48.805 e3-d5-p7-platinum@99|gold@99|mine@2|warehouse@1|silver@99 10 | Leader 4: -50.78 e2-d6-p6-platinum@99|gold@99|mine@2|warehouse@1|silver@99|cellar@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.96 2.66 -0.34 65.48 66.58 15 | 1 -1.24 -0.24 -0.74 67.2 68.26 16 | 2 -0.64 -2.14 -0.44 66.4 68.18 17 | 3 -65.96 -63.74 -67.56 3.54 2.04 18 | 4 -66.68 -67.06 -68.06 -1.32 2.84 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_a65b3ab729a236d21ce54af493858cd9.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,great hall,lookout,warehouse,bishop,scout,sea hag,mine,grand market,peddler@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 4.635 e2-d2-p2-platinum@99|grand market@3|gold@99|lookout@1|warehouse@1|sea hag@1|lookout@1|peddler@10|silver@99 7 | Leader 1: 11.645 e1-d2-p4-platinum@99|grand market@5|gold@99|great hall@1|peddler@1|chapel@1|peddler@4|silver@99|peddler@2 8 | Leader 2: -3.44 e2-d2-p2-platinum@99|grand market@3|gold@99|lookout@1|warehouse@1|sea hag@1|lookout@1|peddler@10|silver@99|chapel@1 9 | Leader 3: -11.175 e2-d3-p2-platinum@99|grand market@3|mine@1|gold@99|lookout@1|warehouse@1|sea hag@1|lookout@1|peddler@10|silver@99 10 | Leader 4: -2.855 e1-d2-p4-platinum@99|grand market@5|peddler@1|gold@99|great hall@1|peddler@1|mine@1|chapel@1|peddler@4|silver@99|peddler@2 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.6 -6.14 4.98 8.28 11.42 15 | 1 6.94 -0.1 16.8 22.16 0.68 16 | 2 -4.36 -15.76 0.62 3.4 2.96 17 | 3 -7.5 -25.2 -7.06 0.42 -4.94 18 | 4 -12.76 1.38 -2.18 2.14 0.38 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_a6b0794dfa6ef26fcbd6a0746b31fc56.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,lighthouse,fishing village,wishing well,woodcutter,bridge,ironworks,monument,treasure map,festival@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: -0.51 e3-d5-p8-gold@99|monument@4|fishing village@3|festival@10|monument@3|ironworks@8|silver@99|lighthouse@2 7 | Leader 1: 0.75 e3-d5-p8-gold@99|monument@4|fishing village@3|festival@1|monument@3|wishing well@1|silver@99|lighthouse@10 8 | Leader 2: -2.465 e2-d5-p8-gold@99|monument@4|fishing village@3|monument@3|silver@99|lighthouse@1 9 | Leader 3: 0.3 e3-d5-p8-gold@99|monument@4|fishing village@3|festival@10|monument@3|cellar@1|silver@99|lighthouse@2 10 | Leader 4: 0.81 e2-d5-p8-gold@99|monument@4|fishing village@3|festival@1|monument@3|fishing village@9|silver@99|lighthouse@2 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.42 -1.64 0.58 -0.52 -0.46 15 | 1 -1.28 -1.58 2.84 -1.62 3.06 16 | 2 -4 -3.22 -0.46 0.08 -2.72 17 | 3 -0.86 1.74 1.16 -0.06 -0.84 18 | 4 1.66 -0.94 2.1 0.42 2.14 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_a88fdc864a701bb2ab421c9b689c8db5.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: ambassador,caravan,cutpurse,quarry,remodel,throne room,mine,torturer,vault,expand@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 17.27 e3-d4-p8-torturer@1|gold@99|silver@2|torturer@2|silver@99 7 | Leader 1: 15.07 e2-d4-p8-torturer@1|gold@99|silver@2|torturer@1|vault@1|silver@99 8 | Leader 2: 15.2 e2-d4-p8-torturer@1|gold@99|silver@2|torturer@1|caravan@1|silver@99 9 | Leader 3: -23.325 e2-d5-p8-gold@99|vault@1|cutpurse@1|caravan@2|silver@99 10 | Leader 4: -26.855 e3-d5-p8-gold@99|vault@1|cutpurse@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.06 3.74 1.7 26.6 37.04 15 | 1 -1.4 0.76 -1.48 28.28 34.88 16 | 2 -1.38 2.16 -0.32 28.18 31.84 17 | 3 -31.72 -33.86 -29.68 -0.94 1.96 18 | 4 -34.4 -34.68 -34.68 -3.66 0.3 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_a9e7f5d007a96ad85ea5254c59fc2e06.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,pearl diver,workshop,conspirator,smithy,throne room,festival,royal seal,hoard,expand@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 3.065 e4-d5-p6-platinum@99|hoard@2|gold@10|royal seal@1|gold@99|festival@5|chapel@1|smithy@1|silver@99 7 | Leader 1: 1.795 e5-d5-p6-platinum@99|hoard@2|gold@10|royal seal@1|gold@99|festival@3|chapel@1|smithy@1|silver@99 8 | Leader 2: -0.14 e1-d4-p5-platinum@99|hoard@1|gold@99|festival@1|chapel@1|smithy@1|silver@99 9 | Leader 3: -1.19 e4-d4-p6-platinum@99|hoard@2|gold@12|royal seal@1|gold@99|festival@1|chapel@1|smithy@1|silver@99|pearl diver@1 10 | Leader 4: -3.91 e1-d4-p5-platinum@99|hoard@1|gold@99|festival@1|chapel@1|smithy@1|silver@99|pearl diver@9 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.36 1.48 2.38 0.82 7.58 15 | 1 -2.08 0.1 2.74 2.38 4.14 16 | 2 -1.76 -2.18 -1.08 -0.4 3.78 17 | 3 -0.98 -3.2 -0.68 0.3 0.1 18 | 4 -6.9 -7.02 -0.1 -1.62 0.52 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_ab0f5b081a911cd81d0e269ca2cfd3db.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pearl diver,chancellor,watchtower,wishing well,coppersmith,monument,spy,talisman,minion,hoard@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 27.605 e1-d4-p8-minion@8|gold@99|monument@2|spy@10|wishing well@10|silver@99|pearl diver@10 7 | Leader 1: 23.12 e1-d3-p8-minion@10|gold@99|monument@2|spy@10|monument@1|wishing well@3|silver@99 8 | Leader 2: 21.68 e1-d4-p8-minion@8|gold@99|monument@2|spy@10|coppersmith@1|silver@99|pearl diver@10 9 | Leader 3: -35.205 e3-d6-p8-hoard@1|gold@99|monument@2|silver@99 10 | Leader 4: -34.765 e3-d6-p8-hoard@1|gold@99|monument@2|silver@99|pearl diver@4 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.44 4.62 5.54 48.2 52.06 15 | 1 -3.2 -2.24 1.36 47.14 47.18 16 | 2 -4.14 -1.42 -0.8 46.44 45.84 17 | 3 -48.84 -44.98 -47.22 -0.74 0.22 18 | 4 -48.9 -48.14 -43.46 1.44 -0.72 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_abed00754367adecae74b9baab8e5416.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: great hall,bureaucrat,moneylender,throne room,treasure map,explorer,laboratory,rabble,goons,expand@25Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 14.96 e2-d2-p2-platinum@99|goons@1|laboratory@10|gold@99|moneylender@1|laboratory@1|throne room@2|rabble@3|silver@99 7 | Leader 1: 14.09 e1-d2-p3-platinum@99|goons@1|laboratory@10|gold@99|moneylender@1|throne room@1|laboratory@8|silver@99 8 | Leader 2: 10.285 e2-d3-p4-platinum@99|goons@1|laboratory@10|gold@99|moneylender@1|laboratory@1|throne room@1|laboratory@6|explorer@1|silver@99 9 | Leader 3: -18.195 e0-d1-p2-platinum@99|laboratory@9|gold@99|moneylender@1|silver@1|great hall@1|silver@99 10 | Leader 4: -21.055 e0-d2-p2-platinum@99|laboratory@8|gold@99|moneylender@1|silver@2|rabble@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.84 1.44 3.82 29.78 24.8 15 | 1 -3.7 2.08 3.3 31.1 25.66 16 | 2 -4.56 -2.42 1.88 25.86 22.26 17 | 3 -29.68 -27.66 -23.8 -1.1 8.36 18 | 4 -27.62 -26.56 -21.5 -8.54 -1.06 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_ace721b95858f155285269cea89b42e0.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pearl diver,quarry,duke,mint,upgrade,goons,grand market,harem,expand,peddler@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 40.11 e4-d7-p8-goons@3|gold@99|quarry@1|peddler@10|pearl diver@5|duke@2|pearl diver@1|silver@99 7 | Leader 1: 31.89 e4-d6-p8-goons@4|gold@99|quarry@1|peddler@10|pearl diver@5|silver@99|pearl diver@5 8 | Leader 2: 29.845 e4-d6-p8-goons@3|gold@99|quarry@1|peddler@10|pearl diver@9|upgrade@1|pearl diver@1|silver@99 9 | Leader 3: -44.855 e2-d4-p8-grand market@10|harem@3|gold@99|upgrade@1|peddler@2|mint@10|silver@99|peddler@5 10 | Leader 4: -57.385 e3-d5-p8-gold@99|peddler@7|upgrade@1|mint@2|silver@99|pearl diver@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.54 19.86 19.28 57.72 63.58 15 | 1 -19.76 -0.62 4.72 65.02 77.58 16 | 2 -20.5 -6.16 0.4 65.72 80.32 17 | 3 -55.1 -65.58 -66 -1.08 7.26 18 | 4 -62.16 -79.04 -81 -7.34 1.48 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_ad05dfd40a938e3134cd722069e2fc1b.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,trade route,feast,ironworks,moneylender,scout,talisman,explorer,tactician,nobles@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 1.57 e1-d3-p5-platinum@99|gold@1|nobles@3|gold@99|trade route@1|silver@99|lighthouse@1 7 | Leader 1: 2.55 e1-d2-p4-platinum@99|nobles@6|gold@99|silver@1|trade route@1|tactician@1|silver@99 8 | Leader 2: 0.41 e0-d3-p5-platinum@99|gold@1|nobles@3|gold@99|silver@1|trade route@1|silver@99 9 | Leader 3: -0.555 e0-d2-p5-platinum@99|nobles@2|gold@99|tactician@1|trade route@1|silver@99|lighthouse@10 10 | Leader 4: -2.525 e1-d2-p4-platinum@99|nobles@3|gold@99|tactician@1|explorer@1|trade route@1|tactician@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.26 -3.26 4.36 2.54 2.64 15 | 1 2.28 0.3 3.54 2.36 2.02 16 | 2 -0.18 -2.64 1.32 -0.04 4.5 17 | 3 0.78 -1.46 -2.72 -2.04 1.18 18 | 4 -3.32 -3.76 -2.28 -0.74 -1.3 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_ad2b164ac58a83d61b2d31e50bcc7f91.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chancellor,lookout,bishop,bureaucrat,merchant ship,minion,tactician,wharf,grand market,hoard@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 35.575 e3-d4-p5-platinum@99|wharf@2|hoard@1|wharf@1|gold@99|lookout@1|minion@2|silver@99 7 | Leader 1: 35.46 e3-d5-p5-platinum@99|wharf@2|hoard@1|wharf@1|gold@99|lookout@1|minion@1|silver@99 8 | Leader 2: 34.57 e3-d4-p5-platinum@99|wharf@2|hoard@1|wharf@1|gold@99|lookout@1|merchant ship@1|minion@1|merchant ship@10|silver@99 9 | Leader 3: -50.885 e2-d3-p5-platinum@99|grand market@2|merchant ship@1|gold@99|lookout@1|minion@4|tactician@8|minion@2|silver@99 10 | Leader 4: -54.18 e4-d4-p5-platinum@99|merchant ship@1|gold@99|lookout@1|merchant ship@4|tactician@1|wharf@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.3 0.68 0.72 69.64 71.26 15 | 1 -2.64 -1.5 2.96 71.48 70.04 16 | 2 -0.1 -2.74 1.72 70.9 70.22 17 | 3 -72.78 -70.08 -67 -1.98 6.32 18 | 4 -71.76 -70.4 -70.1 -4.46 1.66 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_ae93293d714b9ed05dbae822633c8c4c.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: great hall,steward,caravan,ironworks,mining village,bazaar,city,ghost ship,goons,harem@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 7.965 e1-d2-p8-goons@2|bazaar@10|gold@99|caravan@3|steward@1|bazaar@1|caravan@1|silver@99 7 | Leader 1: 1.885 e1-d3-p8-ghost ship@1|bazaar@9|gold@99|caravan@2|steward@1|ironworks@1|caravan@8|silver@99 8 | Leader 2: 8.635 e2-d3-p8-ghost ship@1|bazaar@9|gold@99|caravan@2|steward@1|silver@1|caravan@1|silver@99 9 | Leader 3: -5.25 e2-d2-p8-goons@2|bazaar@10|gold@99|caravan@2|steward@1|mining village@1|silver@99 10 | Leader 4: -11.68 e2-d3-p8-ghost ship@1|bazaar@10|gold@99|ghost ship@2|caravan@2|steward@1|mining village@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.08 8.5 1.1 5.9 16.36 15 | 1 -4.12 -0.16 -4.46 5.16 10.96 16 | 2 -0.9 5.12 -0.22 11.5 18.82 17 | 3 -9.24 -4.14 -9.78 -1.54 2.16 18 | 4 -17.12 -11.62 -14.88 -3.1 -0.64 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_b49dbab8cb415f75290bd67964d06db1.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: loan,lookout,mining village,quarry,throne room,council room,counting house,upgrade,venture,hoard@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 4.995 e4-d5-p8-hoard@1|council room@1|gold@99|venture@5|silver@99 7 | Leader 1: 1.865 e3-d5-p8-hoard@1|council room@1|gold@99|venture@2|silver@4|mining village@3|quarry@1|silver@99 8 | Leader 2: -0.565 e3-d5-p8-hoard@1|council room@1|gold@99|venture@2|silver@4|quarry@1|mining village@3|silver@99 9 | Leader 3: -2.6 e4-d5-p8-hoard@1|council room@1|gold@99|council room@1|venture@7|silver@99 10 | Leader 4: -5.18 e4-d5-p8-hoard@2|council room@1|gold@99|council room@1|venture@5|silver@1|mining village@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 2.34 -0.04 6.5 5.84 7.68 15 | 1 -2.98 -1.64 3.76 2.92 3.76 16 | 2 -4.2 -3.92 -0.26 0.06 5.8 17 | 3 -6.24 -3.98 -1.72 0.5 1.54 18 | 4 -6.14 -6.72 -2.58 -5.28 3.78 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_b5189be68ef567273ec165e395e0f1b4.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: bishop,gardens,salvager,spy,council room,laboratory,rabble,venture,witch,goons@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 26.015 e4-d4-p8-witch@2|gold@99|venture@3|rabble@4|silver@99 7 | Leader 1: 18.68 e2-d3-p8-witch@2|gold@99|venture@2|laboratory@6|silver@99 8 | Leader 2: 11.35 e2-d3-p8-witch@2|gold@99|venture@1|rabble@4|laboratory@1|silver@99 9 | Leader 3: -27.595 e2-d2-p8-goons@1|laboratory@5|gold@99|venture@2|witch@1|council room@3|bishop@1|silver@99 10 | Leader 4: -29.91 e1-d3-p8-goons@1|laboratory@8|gold@99|laboratory@9|council room@10|bishop@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -3.76 6.62 14.2 40.88 42.36 15 | 1 -6.76 2.04 4.88 37.04 39.56 16 | 2 -15.92 -6.68 1.56 32.6 35.4 17 | 3 -38.3 -40.56 -32.84 1.82 1.32 18 | 4 -39.34 -42.3 -36.7 -1.3 -0.56 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_b9fc9e633f7cc0111210a99232c66c8b.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: trade route,ironworks,mining village,moneylender,quarry,remodel,council room,merchant ship,rabble,grand market@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 8.355 e2-d4-p8-gold@1|rabble@1|gold@99|rabble@1|silver@99 7 | Leader 1: 7.575 e2-d5-p8-gold@99|rabble@2|ironworks@1|silver@99 8 | Leader 2: 6.1 e2-d5-p8-gold@99|rabble@2|ironworks@1|merchant ship@1|silver@99 9 | Leader 3: -9.815 e3-d5-p8-gold@99|ironworks@1|merchant ship@3|silver@99 10 | Leader 4: -11.905 e3-d5-p8-gold@99|merchant ship@3|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1 2.58 2.08 12.06 16.7 15 | 1 -0.3 2.5 3 11.2 16.4 16 | 2 -3.68 -0.34 1.42 12 16.42 17 | 3 -13.04 -12.86 -13.58 -0.68 0.22 18 | 4 -16.24 -17.1 -14.78 0.5 0.48 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_ba1412a9d38d6a098753ea558fa9f555.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,pawn,trade route,caravan,duke,library,mine,minion,saboteur,venture@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 2.605 e2-d3-p4-platinum@99|gold@1|mine@1|gold@99|venture@10|saboteur@1|caravan@4|chapel@1|silver@99 7 | Leader 1: 4.735 e0-d3-p5-platinum@99|gold@1|mine@1|gold@99|venture@10|caravan@4|chapel@1|silver@99|pawn@9 8 | Leader 2: -0.7 e4-d4-p5-platinum@99|mine@1|gold@99|caravan@3|venture@3|chapel@1|silver@99|pawn@9 9 | Leader 3: 0.09 e2-d4-p5-platinum@99|mine@1|gold@99|caravan@3|venture@3|chapel@1|minion@8|silver@99 10 | Leader 4: -6.93 e2-d3-p4-platinum@99|gold@1|mine@1|gold@99|minion@1|venture@10|caravan@3|chapel@1|silver@99|pawn@9 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.2 -0.84 3.38 -0.34 8.22 15 | 1 0.16 1.94 4.14 5.7 8.94 16 | 2 -0.96 -3.46 1.76 1.16 0.46 17 | 3 -0.08 -5.06 -0.44 -0.88 5.94 18 | 4 -8.96 -10.26 -4.7 -3.8 -0.04 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_bb05d2dad6b910a06ebce27f1ba47327.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: loan,steward,watchtower,smithy,council room,explorer,laboratory,tactician,grand market,king's court@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 14.6 e1-d3-p4-platinum@99|grand market@2|laboratory@4|gold@99|steward@1|silver@99 7 | Leader 1: 13.795 e1-d2-p3-platinum@99|grand market@2|king's court@8|laboratory@10|gold@99|steward@1|council room@2|tactician@1|silver@99 8 | Leader 2: -3.4 e2-d2-p3-platinum@99|grand market@1|king's court@1|laboratory@5|gold@99|steward@1|loan@1|silver@99 9 | Leader 3: -2.255 e2-d2-p2-platinum@99|grand market@3|king's court@1|laboratory@5|gold@99|tactician@10|steward@1|loan@1|silver@99 10 | Leader 4: -20.625 e1-d3-p3-platinum@99|laboratory@4|gold@99|steward@1|council room@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.12 4.56 15.36 13.26 25.22 15 | 1 -2.24 -1.46 16.6 15.42 25.4 16 | 2 -14.38 -14.24 -0.52 -0.86 15.88 17 | 3 -16.06 -13.9 2 -0.48 18.94 18 | 4 -26.46 -26.32 -15.46 -14.26 0.5 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_bbc2b70c0e2dc47ced28c174080f7271.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,ambassador,lookout,bureaucrat,coppersmith,militia,bazaar,rabble,tribute,venture@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 8.52 e3-d5-p8-gold@99|venture@7|militia@2|silver@99|pawn@10 7 | Leader 1: 4.34 e4-d4-p8-gold@99|rabble@1|militia@1|venture@10|silver@99 8 | Leader 2: -0.08 e3-d5-p8-gold@99|venture@10|militia@3|coppersmith@1|rabble@1|silver@99|pawn@10 9 | Leader 3: -7.335 e2-d4-p8-rabble@1|gold@99|venture@10|silver@5|tribute@10|bazaar@1|coppersmith@1|silver@99|pawn@1 10 | Leader 4: -6.445 e2-d4-p8-rabble@1|gold@99|venture@10|silver@12|bazaar@1|coppersmith@1|silver@99|pawn@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.06 2.42 8.02 11.78 11.86 15 | 1 -3.2 0.42 3.14 7.64 9.78 16 | 2 -7.04 -3.88 -0.74 5.54 5.06 17 | 3 -13.46 -8.32 -7.94 0.8 0.38 18 | 4 -10.2 -8.8 -6.08 -0.7 -2.6 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_bc88c261d7626d5a23015ecee794645f.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pearl diver,wishing well,coppersmith,sea hag,spy,counting house,mountebank,venture,witch,nobles@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 24.565 e5-d6-p8-witch@1|gold@99|venture@10|sea hag@1|mountebank@2|silver@99|pearl diver@1 7 | Leader 1: 23.295 e5-d6-p8-witch@1|gold@99|venture@1|sea hag@1|venture@10|silver@99 8 | Leader 2: 19.905 e4-d5-p8-witch@1|nobles@1|gold@99|venture@10|sea hag@1|venture@1|silver@99 9 | Leader 3: -33.45 e5-d5-p8-mountebank@1|nobles@1|gold@99|mountebank@1|venture@10|mountebank@1|counting house@10|silver@99|pearl diver@1 10 | Leader 4: -32.89 e5-d5-p8-mountebank@1|gold@99|mountebank@1|venture@10|silver@1|counting house@10|silver@99|pearl diver@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.42 1.44 3.78 48.44 44.6 15 | 1 -1.2 0.16 2.82 46.74 44.82 16 | 2 -4.1 0.98 -0.88 42.18 40.56 17 | 3 -46.14 -47.38 -41.4 -0.5 1.12 18 | 4 -45.28 -44.66 -41.86 0.24 -2.54 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_bf6c3b57878a9f8f41c66dd2858c36a4.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: loan,shanty town,feast,quarry,smithy,merchant ship,mountebank,saboteur,venture,goons@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 17.885 e3-d5-p8-mountebank@1|goons@1|gold@99|mountebank@1|venture@10|silver@99 7 | Leader 1: 18.09 e3-d5-p8-mountebank@1|goons@1|gold@99|shanty town@1|venture@10|silver@99 8 | Leader 2: 12.29 e3-d5-p8-mountebank@1|goons@1|gold@99|smithy@1|venture@6|mountebank@1|silver@99 9 | Leader 3: -22.46 e2-d4-p8-gold@99|venture@10|smithy@1|venture@1|silver@99 10 | Leader 4: -26.74 e2-d4-p8-gold@99|venture@10|smithy@2|merchant ship@1|feast@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.46 0.86 2.24 32.6 35.84 15 | 1 0.36 1.92 3.04 31.36 37.6 16 | 2 -1.46 -4.5 1.38 27.98 27.14 17 | 3 -32.86 -35.6 -27.26 2.28 5.88 18 | 4 -33.7 -38.08 -29.7 -5.48 -0.04 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_c1961b9e8f0217797d14676769e8ca0d.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: swindler,workshop,conspirator,duke,ghost ship,mine,saboteur,torturer,grand market,expand@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 8.445 e1-d5-p8-gold@99|ghost ship@1|swindler@1|ghost ship@2|duke@8|silver@99 7 | Leader 1: 8.11 e1-d5-p8-gold@99|torturer@1|swindler@1|ghost ship@2|duke@8|silver@99 8 | Leader 2: 6.43 e1-d5-p8-gold@99|swindler@1|torturer@2|duke@8|silver@99 9 | Leader 3: -9.48 e2-d4-p8-torturer@1|gold@99|torturer@2|silver@99 10 | Leader 4: -15.015 e1-d4-p8-ghost ship@1|gold@99|ghost ship@4|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.18 1.46 1.88 14.28 16.16 15 | 1 -1.88 -0.62 0.6 14.9 18.82 16 | 2 -4.3 -0.38 -1.56 15.48 14.92 17 | 3 -14.4 -14.7 -16.6 -2.96 7.78 18 | 4 -20.38 -17.14 -19.26 -3.28 0 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_c4566c8451727796a499c52348c37d29.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,bureaucrat,conspirator,mining village,remodel,market,trading post,hoard,bank,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 2.365 e3-d5-p8-bank@10|gold@99|market@5|bureaucrat@1|silver@99|cellar@1 7 | Leader 1: 1.345 e3-d5-p8-bank@10|gold@99|market@7|bureaucrat@1|silver@99 8 | Leader 2: -2.15 e4-d6-p8-bank@10|hoard@1|gold@99|market@10|bureaucrat@1|silver@99 9 | Leader 3: -0.07 e3-d5-p8-bank@10|king's court@1|gold@99|market@8|bureaucrat@1|mining village@1|silver@99|cellar@1 10 | Leader 4: 0.39 e3-d6-p8-bank@10|hoard@1|gold@99|market@8|bureaucrat@1|silver@99|cellar@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.84 -0.22 3.96 2.88 2.84 15 | 1 0.12 2.74 0.86 2.3 2.1 16 | 2 -1.94 -2.5 -0.56 -1.46 -2.7 17 | 3 -2.04 -1.22 0.8 -1.72 2.18 18 | 4 -0.42 -0.16 3.3 -1.16 2.18 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_c4e6c2b12c8d9ed0885f59320854d569.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,steward,cutpurse,council room,explorer,mint,tactician,wharf,adventurer,bank@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 15.555 e2-d4-p8-wharf@1|bank@4|gold@99|wharf@4|explorer@8|silver@99|lighthouse@3 7 | Leader 1: 13.065 e2-d4-p8-bank@4|gold@99|cutpurse@1|wharf@2|silver@99|lighthouse@9 8 | Leader 2: 9.71 e2-d4-p8-bank@3|gold@99|cutpurse@1|wharf@2|tactician@1|silver@99|lighthouse@10 9 | Leader 3: -13.66 e3-d4-p8-bank@3|gold@99|council room@1|tactician@1|cutpurse@1|silver@99|lighthouse@10 10 | Leader 4: -24.43 e2-d4-p8-bank@3|gold@99|council room@1|tactician@1|silver@99|lighthouse@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.42 2.88 5.16 23.16 31.02 15 | 1 -1.6 -0.54 2.72 20.9 30.24 16 | 2 -5.5 -1.88 -2.02 19.52 26.7 17 | 3 -21.36 -21.62 -18.74 0.28 7.08 18 | 4 -31.72 -32.52 -26.88 -6.6 0.58 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_cd8b998c08e9b787ddf8d2e670b63104.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: steward,swindler,warehouse,workshop,monument,treasure map,city,market,merchant ship,trading post@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 3.9 e2-d4-p8-gold@99|monument@1|market@8|warehouse@1|monument@1|silver@99 7 | Leader 1: 0.685 e2-d4-p8-gold@99|swindler@1|market@4|warehouse@1|monument@1|silver@99 8 | Leader 2: 0.315 e2-d4-p8-gold@99|swindler@1|market@3|warehouse@1|merchant ship@1|monument@1|silver@99 9 | Leader 3: -3.955 e3-d4-p8-gold@99|monument@1|market@2|warehouse@1|monument@1|merchant ship@1|silver@99 10 | Leader 4: -3.925 e2-d4-p8-gold@99|swindler@1|market@3|warehouse@1|city@1|monument@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.84 2.46 2.76 6.56 3.82 15 | 1 -2.9 -1.86 0.9 3.2 1.54 16 | 2 -2.44 -0.5 -1.14 -0.08 4.28 17 | 3 -7.78 -4.8 -3.16 -1.5 -0.08 18 | 4 -5.78 -3.64 -4.18 -2.1 0.56 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_d1bf92e9df2cda251ca692ab7769cebd.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,pearl diver,ambassador,steward,watchtower,remodel,vault,harem,hoard,peddler@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 5.855 e2-d5-p8-hoard@1|harem@8|gold@99|silver@1|vault@10|silver@99 7 | Leader 1: 1.555 e3-d5-p8-hoard@1|harem@8|gold@99|silver@1|vault@6|silver@3|cellar@1|silver@99|cellar@6 8 | Leader 2: -0.32 e2-d5-p8-hoard@1|harem@8|gold@99|vault@10|silver@3|watchtower@1|silver@99 9 | Leader 3: -3.19 e2-d5-p8-hoard@1|harem@6|gold@99|silver@2|vault@1|peddler@7|silver@3|remodel@1|silver@99 10 | Leader 4: -0.905 e2-d5-p8-hoard@1|harem@8|gold@99|silver@1|vault@2|silver@3|steward@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.1 4.86 4.56 7.56 6.44 15 | 1 -2.7 0.26 2.7 5.56 0.66 16 | 2 -2.08 -1.94 -0.58 2.66 0.08 17 | 3 -7.18 -3.48 -3.42 1.28 1.32 18 | 4 -2.88 -2.62 -0.7 2.58 1.28 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_d23e1ca29199f03ef3e6d60253a704c6.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: loan,feast,throne room,treasure map,ghost ship,laboratory,mine,vault,adventurer,bank@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 26.93 e2-d4-p8-ghost ship@1|bank@3|gold@99|ghost ship@3|laboratory@2|silver@99 7 | Leader 1: 25.245 e2-d4-p8-ghost ship@1|bank@1|gold@99|ghost ship@4|silver@99 8 | Leader 2: 22.815 e2-d4-p8-ghost ship@1|bank@3|gold@99|ghost ship@4|laboratory@3|loan@1|silver@99 9 | Leader 3: -36.78 e3-d5-p8-gold@99|vault@2|laboratory@3|silver@99 10 | Leader 4: -37.475 e3-d5-p8-bank@1|gold@99|vault@2|laboratory@3|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.14 1.52 -1.32 54.18 53.34 15 | 1 0.3 -0.36 -6.46 52.16 54.98 16 | 2 4.84 3.86 0.32 39.74 42.82 17 | 3 -55.28 -49.42 -40.14 -0.42 -2.28 18 | 4 -55.46 -53.2 -44.04 2.8 3.74 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_d4843e373cba33e314e71ba4544b87c2.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,courtyard,chancellor,trade route,mining village,bazaar,explorer,library,trading post,expand@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 0.595 e2-d5-p8-gold@99|explorer@1|courtyard@1|bazaar@4|silver@99|courtyard@6 7 | Leader 1: 2.565 e2-d5-p8-gold@99|explorer@1|library@1|bazaar@6|silver@99|courtyard@6 8 | Leader 2: -0.275 e2-d5-p8-gold@99|explorer@1|library@1|bazaar@4|courtyard@1|silver@99|courtyard@6 9 | Leader 3: -0.82 e2-d5-p8-explorer@1|gold@99|library@2|silver@99|courtyard@1 10 | Leader 4: 0.44 e3-d5-p8-gold@99|explorer@1|library@1|courtyard@1|bazaar@4|silver@99|courtyard@6 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.18 0.42 -0.42 0.98 1.4 15 | 1 1.7 0.3 2.14 3.26 3.16 16 | 2 -0.48 -1.52 -1.22 1.84 -0.94 17 | 3 -1.18 -1.68 -1.64 -0.26 1.22 18 | 4 0.12 0 0.12 1.52 0.22 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_d6385c3eecd29224190e4d043216e923.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,pawn,bureaucrat,militia,moneylender,navigator,salvager,market,vault,expand@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 9.91 e3-d4-p8-gold@99|market@10|militia@1|silver@1|militia@1|silver@99|pawn@1 7 | Leader 1: 9.085 e3-d5-p8-gold@99|militia@1|market@10|militia@1|silver@99 8 | Leader 2: 7.52 e3-d4-p8-gold@99|militia@1|market@8|militia@1|silver@99|moat@1 9 | Leader 3: -10.825 e2-d5-p8-gold@99|vault@1|silver@3|market@10|moat@1|silver@99 10 | Leader 4: -16.465 e2-d5-p8-gold@99|vault@3|silver@3|market@10|moat@1|vault@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.8 -1.58 -0.4 17.36 24.26 15 | 1 1.42 1.22 1.98 12.62 20.32 16 | 2 -1.32 -1.28 1.28 11.14 21.54 17 | 3 -18.78 -10.78 -15.8 0.78 2.06 18 | 4 -24.18 -19.42 -21.2 -1.06 -1.06 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_d7f8b4a34d13eb87f71785dbc917d0f5.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,ambassador,smugglers,cutpurse,island,smithy,throne room,laboratory,minion,bank@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 2.36 e2-d4-p8-laboratory@5|bank@1|gold@99|ambassador@1|cutpurse@1|silver@1|laboratory@1|silver@99|cellar@1 7 | Leader 1: 0.555 e2-d3-p8-laboratory@5|minion@1|gold@99|ambassador@1|cutpurse@1|laboratory@1|silver@99|cellar@1 8 | Leader 2: 2.42 e1-d4-p8-gold@2|laboratory@8|gold@99|ambassador@1|cutpurse@1|island@1|silver@99|cellar@1 9 | Leader 3: -1.275 e1-d4-p8-gold@99|laboratory@10|cutpurse@1|island@8|silver@99|cellar@1 10 | Leader 4: -2.45 e2-d4-p8-laboratory@8|gold@99|ambassador@1|cutpurse@1|laboratory@1|silver@99|cellar@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.96 6 -2.96 4.64 1.76 15 | 1 -1.58 3.1 -2.36 5.1 1.06 16 | 2 3.6 5.7 -1.4 -6.28 6.66 17 | 3 -3.28 -7.86 7.04 0.34 -1 18 | 4 -4.06 -0.2 -4.48 -1.06 -0.2 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_dabe25ed7ce4008bcf6a3ddd026b1ab3.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,loan,bureaucrat,gardens,ironworks,moneylender,treasure map,city,library,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 1.225 e3-d5-p8-gold@99|library@2|bureaucrat@1|silver@99|moat@8 7 | Leader 1: 0.565 e3-d5-p8-gold@99|library@2|bureaucrat@1|silver@99 8 | Leader 2: 1.445 e3-d5-p8-gold@99|library@2|bureaucrat@1|city@1|silver@99|moat@6 9 | Leader 3: -2.3 e3-d5-p8-gold@99|library@2|city@1|bureaucrat@1|silver@99 10 | Leader 4: -1.135 e2-d4-p8-gold@99|library@3|silver@99|moat@9 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.94 1.54 -0.66 2.26 1.76 15 | 1 0.12 -0.12 -1 2.66 0.48 16 | 2 -0.96 2.34 1.38 0.84 3.56 17 | 3 -3.96 -2.56 -3.1 2.02 0.42 18 | 4 -2.32 -2.74 -0.28 0.8 1.06 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_db33eb575bda32a5f80cfdb2f43993da.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: fishing village,swindler,feast,militia,mining village,spy,talisman,merchant ship,minion,goons@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 33.01 e5-d5-p8-goons@3|minion@3|gold@99|minion@4|swindler@2|fishing village@5|merchant ship@2|silver@99 7 | Leader 1: 32.875 e5-d5-p8-goons@3|gold@99|minion@6|swindler@2|fishing village@5|militia@2|silver@99 8 | Leader 2: 30.495 e5-d5-p8-goons@3|minion@3|gold@99|merchant ship@1|minion@4|swindler@2|fishing village@5|merchant ship@2|silver@99 9 | Leader 3: -47.255 e2-d5-p8-gold@99|militia@1|fishing village@1|merchant ship@3|silver@99 10 | Leader 4: -48.52 e2-d5-p8-gold@99|militia@1|merchant ship@3|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.02 1.18 3.34 64.64 62.88 15 | 1 -1.8 -0.82 2.44 66.92 63.94 16 | 2 -3.06 -1.34 1.02 64 62.38 17 | 3 -64.88 -65.56 -64.4 -1.68 5.82 18 | 4 -64.66 -64.7 -61.1 -3.62 0.06 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_dbdd32d407baf1872c8b48fc47a0ab22.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chapel,steward,village,bureaucrat,gardens,ironworks,moneylender,mine,mint,hoard@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 16.95 e5-d7-p8-hoard@2|gold@99|bureaucrat@2|ironworks@1|gardens@8|silver@99 7 | Leader 1: 3.925 e5-d7-p8-hoard@1|gold@99|bureaucrat@2|ironworks@1|gardens@8|moneylender@1|silver@99 8 | Leader 2: -4.02 e4-d7-p8-gold@99|bureaucrat@2|ironworks@1|gardens@8|silver@99 9 | Leader 3: -4.295 e5-d7-p8-hoard@2|gold@99|bureaucrat@2|gardens@8|silver@99 10 | Leader 4: -11.685 e4-d6-p8-gold@99|bureaucrat@2|ironworks@1|gardens@8|moneylender@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.08 10.6 16.98 16.1 24.12 15 | 1 -7.8 0.7 4.84 7.36 11.3 16 | 2 -15.82 -6.98 -0.22 3.16 3.56 17 | 3 -13.98 -7.22 -1.44 0.12 5.46 18 | 4 -24.2 -12.32 -4.54 -5.68 -0.18 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_dd2fac1af4108f08a1201302973d7d69.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lookout,woodcutter,bureaucrat,ironworks,duke,royal seal,saboteur,vault,hoard,peddler@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 3.505 e3-d6-p8-hoard@1|vault@1|gold@99|vault@1|silver@1|royal seal@1|duke@1|silver@99 7 | Leader 1: 3.035 e3-d6-p8-hoard@1|vault@1|gold@99|silver@1|vault@1|duke@4|silver@99|peddler@1 8 | Leader 2: 0.08 e3-d6-p8-hoard@1|vault@1|gold@99|peddler@2|royal seal@1|duke@4|silver@99|peddler@1 9 | Leader 3: -1.38 e3-d6-p8-hoard@1|vault@1|gold@99|silver@3|vault@1|peddler@1|silver@99|peddler@1 10 | Leader 4: -5.835 e2-d7-p8-hoard@1|vault@1|gold@99|bureaucrat@1|duke@4|saboteur@1|silver@99|peddler@10 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.66 0.9 0.82 4.7 7.6 15 | 1 0.46 -0.96 1.24 3.36 7.08 16 | 2 -0.76 -2.36 0.3 0.22 3.22 17 | 3 -2.9 -3.14 -3.02 1.32 3.54 18 | 4 -9.2 -4.72 -5.34 -4.08 1.92 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_debe98d6db80ab76ad1fc8341efe123f.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: watchtower,wishing well,feast,navigator,quarry,salvager,bazaar,library,market,trading post@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 4.31 e1-d3-p3-platinum@99|trading post@1|market@10|gold@99|wishing well@10|library@1|feast@4|wishing well@1|silver@99 7 | Leader 1: 3.37 e1-d3-p3-platinum@99|trading post@1|market@10|library@1|gold@99|wishing well@9|trading post@7|silver@99 8 | Leader 2: -1.71 e1-d3-p3-platinum@99|trading post@1|market@10|library@1|gold@99|wishing well@10|trading post@1|quarry@1|silver@99 9 | Leader 3: -0.695 e1-d2-p4-platinum@99|trading post@1|bazaar@1|market@10|gold@99|wishing well@10|feast@1|library@1|silver@99 10 | Leader 4: -4.1 e1-d2-p4-platinum@99|trading post@1|bazaar@1|market@10|gold@99|wishing well@10|library@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.68 0.42 6.26 4.7 5.86 15 | 1 -0.64 -0.7 4.08 4.2 5.84 16 | 2 -2.86 -1.38 -0.78 -1.98 -0.62 17 | 3 -3.46 -0.28 -1.26 -0.12 2.22 18 | 4 -6.9 -4.96 -2.12 -2.42 0.5 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_e00efc706e9bd1b8fa88db0fde04a09c.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,moat,shanty town,smugglers,bishop,gardens,monument,spy,treasury,grand market@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: -0.695 e1-d4-p8-gold@99|treasury@10|monument@3|spy@1|gardens@5|silver@99|lighthouse@1 7 | Leader 1: -1.02 e0-d3-p8-treasury@1|gold@99|treasury@10|bishop@1|monument@1|spy@6|gardens@7|silver@99|lighthouse@1 8 | Leader 2: -0.825 e1-d4-p8-gold@99|treasury@10|monument@3|silver@99|lighthouse@6 9 | Leader 3: 1.675 e0-d4-p8-gold@99|treasury@10|monument@3|treasury@2|gardens@5|silver@99|lighthouse@10 10 | Leader 4: 0.035 e1-d4-p8-gold@99|treasury@10|monument@3|treasury@1|gardens@5|silver@99|lighthouse@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.14 0.66 1.46 -1.94 -2.96 15 | 1 -2.62 -1.4 -1.7 -1.28 1.52 16 | 2 -1.16 3.68 0.98 -4.2 -1.62 17 | 3 -0.4 -0.36 5.9 -0.88 1.56 18 | 4 -1.22 0.32 2.28 -1.24 0.7 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_e06df4a53d2fc90c61c22dd4553646da.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: moat,baron,coppersmith,island,smithy,duke,festival,mountebank,tactician,harem@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 11.75 e2-d5-p5-platinum@99|mountebank@1|gold@99|mountebank@1|festival@10|smithy@1|silver@99 7 | Leader 1: 13.95 e2-d5-p5-platinum@99|mountebank@1|gold@99|mountebank@1|festival@10|smithy@1|silver@99|moat@1 8 | Leader 2: 9.035 e3-d4-p5-platinum@99|gold@1|mountebank@1|gold@99|mountebank@1|smithy@1|silver@99|moat@1 9 | Leader 3: -16.58 e1-d3-p6-platinum@99|tactician@1|gold@99|coppersmith@3|tactician@1|silver@99|moat@1 10 | Leader 4: -16.26 e2-d3-p5-platinum@99|tactician@1|gold@99|coppersmith@3|tactician@1|island@1|coppersmith@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.62 -2.52 3.84 20.94 24.74 15 | 1 2.9 0.46 6.72 21.96 24.22 16 | 2 -3.96 -7.96 -0.4 21.3 26.76 17 | 3 -22.62 -19.94 -20.64 -1.26 -3.12 18 | 4 -22.82 -23.68 -25.08 6.54 -0.5 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_e0a93f9215e04d68b22faf871746315c.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: loan,village,woodcutter,gardens,monument,throne room,council room,library,saboteur,bank@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 2.315 e2-d4-p8-bank@6|gold@99|monument@2|silver@5|gardens@8|throne room@1|silver@99 7 | Leader 1: 1.31 e3-d3-p8-bank@5|gold@99|monument@1|silver@1|council room@1|silver@99 8 | Leader 2: 1.485 e1-d4-p8-bank@3|council room@1|gold@99|monument@1|silver@5|gardens@8|saboteur@1|silver@99 9 | Leader 3: -2.935 e3-d4-p8-bank@3|gold@99|monument@2|silver@6|gardens@8|silver@99 10 | Leader 4: -5.85 e2-d4-p8-gold@99|monument@2|silver@5|gardens@8|throne room@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.96 2.56 0.74 1.72 4.24 15 | 1 0.76 0.3 -1.04 0.08 5.44 16 | 2 0.14 -4.36 0.18 2.98 7.18 17 | 3 -4.7 -1.72 -4.72 -0.04 -0.6 18 | 4 -5.2 -7.92 -8.22 -2.06 0.02 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_e48566f8548597adea149ca6cabca0dc.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,conspirator,scout,smithy,throne room,library,royal seal,upgrade,adventurer,bank@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 7.155 e2-d4-p8-bank@6|gold@99|royal seal@5|smithy@1|silver@99|pawn@1 7 | Leader 1: 4.925 e2-d4-p8-bank@3|gold@99|smithy@1|silver@1|royal seal@1|library@1|silver@99 8 | Leader 2: -3.385 e2-d4-p8-bank@10|gold@99|smithy@1|silver@3|library@3|silver@99 9 | Leader 3: -4.705 e2-d4-p8-bank@5|gold@99|smithy@1|silver@99|pawn@9 10 | Leader 4: -3.91 e1-d5-p8-bank@2|gold@99|royal seal@2|smithy@2|silver@99|pawn@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.54 1.9 8.44 10.12 8.16 15 | 1 -1.12 -1.46 5.3 9.16 6.36 16 | 2 -8.98 -7.6 1.88 2.42 0.62 17 | 3 -11.44 -8.7 -0.16 0.2 1.48 18 | 4 -7.92 -8.66 1.08 -0.14 -1.8 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_e8ced89c21fead2d43790f9421b717a3.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: courtyard,loan,workshop,caravan,ironworks,city,ghost ship,market,merchant ship,trading post@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 17.125 e2-d4-p8-ghost ship@1|gold@99|ghost ship@1|caravan@9|city@1|silver@99|courtyard@1 7 | Leader 1: 17.08 e2-d4-p8-trading post@1|ghost ship@1|gold@99|market@3|caravan@10|market@2|city@1|silver@99 8 | Leader 2: 11.685 e2-d4-p8-trading post@1|ghost ship@1|gold@99|ghost ship@1|caravan@9|ghost ship@1|silver@99|courtyard@3 9 | Leader 3: -18.165 e2-d5-p8-trading post@1|gold@99|market@5|caravan@10|ghost ship@1|silver@99|courtyard@9 10 | Leader 4: -25.855 e2-d5-p8-trading post@1|gold@99|market@3|caravan@10|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.2 2.74 6.36 26.78 32.62 15 | 1 0.5 -1.32 2.14 29.1 36.58 16 | 2 -4.16 -2.7 -0.68 23.82 29.78 17 | 3 -23.6 -28.44 -24.36 0.08 3.74 18 | 4 -31.9 -32.9 -31.44 -7.18 0.68 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_e9bcc67f29d3dfe22eb484b98b28cc01.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: bridge,conspirator,mining village,smithy,spy,city,minion,torturer,bank,peddler@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 30.41 e2-d4-p8-bank@10|torturer@1|gold@99|minion@1|torturer@1|minion@7|city@1|silver@99|peddler@1 7 | Leader 1: 25.54 e2-d4-p8-gold@99|torturer@1|minion@6|torturer@1|silver@99|peddler@1 8 | Leader 2: 25.23 e2-d3-p8-bank@10|torturer@1|gold@99|minion@1|torturer@1|peddler@2|minion@7|silver@99|peddler@1 9 | Leader 3: -40.1 e2-d4-p8-bank@3|gold@99|smithy@1|silver@4|smithy@1|mining village@1|silver@99|peddler@1 10 | Leader 4: -42.635 e3-d4-p8-bank@1|gold@99|peddler@8|smithy@1|silver@4|smithy@1|silver@99|peddler@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.76 4.36 4.68 55.9 56.7 15 | 1 -4.2 -1.46 -1 53.22 54.14 16 | 2 -2.8 -1.4 1.68 51.36 53.76 17 | 3 -56.32 -53.22 -53.76 0.3 2.9 18 | 4 -57.68 -53.68 -54.52 -4.66 -1.36 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_eacfc95747bf8c132d6bbe833a3760cd.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,pearl diver,quarry,sea hag,explorer,market,mine,torturer,hoard,peddler@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 46.79 e3-d6-p6-platinum@99|gold@99|peddler@10|sea hag@2|market@2|torturer@10|silver@99|cellar@10 7 | Leader 1: 40.105 e3-d5-p6-platinum@99|gold@99|peddler@4|mine@1|sea hag@1|market@2|torturer@10|silver@99|cellar@10 8 | Leader 2: 40.345 e3-d5-p7-platinum@99|gold@99|peddler@3|mine@1|torturer@9|market@1|sea hag@1|silver@99|cellar@7 9 | Leader 3: -64.505 e4-d5-p7-platinum@99|mine@1|gold@99|market@10|silver@99|cellar@1 10 | Leader 4: -63.3 e4-d4-p6-platinum@99|mine@1|gold@99|peddler@4|market@10|silver@99|cellar@3 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 2.6 3.2 2.9 90.84 90.22 15 | 1 -4.3 0.7 -2.08 83.34 83.46 16 | 2 -4.14 0.36 0.94 82.1 83.06 17 | 3 -90.22 -84.48 -80.52 0.2 -2.8 18 | 4 -90.08 -83.48 -80.98 1.34 -2.04 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_ebe0b7d215a984edac9fb49dd9dde2ba.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: chancellor,swindler,village,woodcutter,caravan,coppersmith,talisman,throne room,rabble,upgrade@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 21.36 e2-d4-p8-upgrade@1|gold@99|caravan@10|swindler@1|talisman@1|swindler@1|silver@99 7 | Leader 1: 22.26 e2-d4-p8-upgrade@1|gold@99|caravan@10|swindler@1|coppersmith@1|swindler@1|silver@99 8 | Leader 2: 16.845 e2-d4-p8-upgrade@1|gold@99|rabble@1|caravan@10|rabble@1|swindler@1|silver@99 9 | Leader 3: -30.42 e2-d4-p8-upgrade@1|gold@99|rabble@1|caravan@10|rabble@1|silver@99 10 | Leader 4: -31.73 e2-d4-p8-upgrade@1|gold@99|caravan@10|chancellor@1|upgrade@10|throne room@9|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -0.78 -0.82 6.54 43.98 35.74 15 | 1 -1.58 1.2 8.94 43.08 38.6 16 | 2 -7.66 -3.32 0.2 40.46 37.9 17 | 3 -44.64 -43.98 -41.56 0.66 8.5 18 | 4 -40.4 -37.96 -39.38 -9.18 -3 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_ee6d5ab6beaecbaaa133739facc2ce0a.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,chancellor,swindler,baron,caravan,conspirator,cutpurse,gardens,spy,goons@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 35.205 e3-d4-p8-goons@2|gold@99|caravan@7|conspirator@1|spy@4|swindler@1|spy@1|silver@99|cellar@3 7 | Leader 1: 34.085 e3-d4-p8-goons@2|gold@99|caravan@10|swindler@1|spy@2|silver@99|cellar@4 8 | Leader 2: 33.885 e3-d5-p8-goons@2|gold@99|caravan@10|swindler@1|silver@99|cellar@6 9 | Leader 3: -51.69 e3-d4-p8-gold@99|cutpurse@1|caravan@8|silver@99|cellar@2 10 | Leader 4: -53.57 e2-d4-p8-gold@99|cutpurse@1|caravan@10|baron@10|silver@99|cellar@8 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.52 2.44 -0.82 70.88 68.32 15 | 1 -2 2.32 -0.48 67.32 71.5 16 | 2 -0.98 1.56 -1.64 66.56 68.4 17 | 3 -70.32 -70.08 -65.56 -3.62 -0.8 18 | 4 -72.34 -72.96 -68.48 -0.5 0.84 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_f12ac278c2cfc616f3c99dfae96eddaa.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,chancellor,woodcutter,bishop,coppersmith,throne room,treasure map,library,tactician,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 27.15 e2-d3-p8-tactician@1|king's court@1|gold@99|coppersmith@2|silver@1|throne room@1|silver@99 7 | Leader 1: 25.35 e1-d4-p8-tactician@1|gold@99|coppersmith@1|silver@1|coppersmith@1|throne room@1|silver@99 8 | Leader 2: 21.905 e2-d3-p8-tactician@1|king's court@1|gold@99|coppersmith@2|silver@1|throne room@8|silver@99|lighthouse@2 9 | Leader 3: -34.36 e1-d4-p8-gold@99|bishop@1|library@1|silver@99|lighthouse@1 10 | Leader 4: -39.05 e1-d4-p8-gold@99|bishop@1|library@1|lighthouse@1|silver@99|lighthouse@1 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -2.04 1.26 3.48 51.3 52.56 15 | 1 0.46 -0.56 2.08 47.48 51.38 16 | 2 -3.1 -3.74 1.44 44.5 49.96 17 | 3 -49.44 -47.58 -45.02 0.66 4.6 18 | 4 -54.2 -50.56 -47.64 -3.8 1.44 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_f1d9732dd9b289823617ad420b5a03d6.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: swindler,wishing well,conspirator,navigator,quarry,worker's village,mountebank,royal seal,upgrade,grand market@25Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 26.6 e4-d5-p8-gold@6|mountebank@1|gold@99|upgrade@2|wishing well@10|conspirator@2|silver@99 7 | Leader 1: 23.455 e4-d5-p8-gold@6|mountebank@1|gold@99|upgrade@2|mountebank@1|wishing well@10|worker's village@3|silver@99 8 | Leader 2: 20.105 e4-d6-p8-gold@6|mountebank@1|gold@99|upgrade@2|mountebank@1|wishing well@10|silver@99 9 | Leader 3: -36.385 e2-d4-p8-grand market@1|gold@99|upgrade@10|wishing well@1|swindler@1|wishing well@10|silver@99 10 | Leader 4: -33.38 e3-d5-p8-grand market@1|gold@99|upgrade@10|royal seal@1|swindler@1|wishing well@10|conspirator@3|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.38 0.42 6.78 51.7 47.5 15 | 1 -2.4 -1.06 0.84 49 46.38 16 | 2 -6.4 -1.14 1.84 44.26 43.7 17 | 3 -50.06 -50.72 -43.54 -0.5 -1.22 18 | 4 -46.08 -46.68 -43.74 2.98 -0.92 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_f74ec6b1cbf1a6cfcb8660e69c7acdab.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: lighthouse,fishing village,wishing well,cutpurse,salvager,spy,city,grand market,harem,king's court@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 2.105 e3-d4-p8-grand market@1|harem@8|gold@99|cutpurse@2|silver@99|lighthouse@3 7 | Leader 1: 0.105 e3-d4-p8-grand market@1|harem@8|gold@99|cutpurse@2|silver@7|wishing well@1|silver@99|lighthouse@5 8 | Leader 2: -0.305 e2-d4-p8-gold@1|harem@8|gold@99|cutpurse@2|city@1|lighthouse@9|silver@99|lighthouse@1 9 | Leader 3: 1.765 e3-d4-p8-gold@1|harem@8|gold@99|cutpurse@2|lighthouse@4|silver@99|lighthouse@1 10 | Leader 4: -2.15 e1-d4-p8-gold@1|harem@8|gold@99|cutpurse@2|lighthouse@1|silver@7|fishing village@3|silver@99|lighthouse@9 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.24 1.86 4.78 -0.46 2.24 15 | 1 -1.84 1.5 3.14 -3.86 2.98 16 | 2 -3.4 -3.38 0.54 7.12 -1.56 17 | 3 2.6 3.56 -3.04 -0.4 3.94 18 | 4 -4.8 -2.76 1.5 -2.54 -0.74 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_f7888c5d1d4059275d1e07cf471a6575.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: fishing village,shanty town,trade route,bishop,salvager,bazaar,duke,tactician,treasury,hoard@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 12.07 e0-d5-p8-hoard@2|gold@99|treasury@10|bishop@1|fishing village@2|shanty town@1|silver@99 7 | Leader 1: 6.6 e1-d5-p8-hoard@1|treasury@1|gold@99|treasury@1|bishop@1|treasury@2|bazaar@10|silver@99 8 | Leader 2: 4.855 e2-d5-p8-hoard@1|treasury@1|gold@99|treasury@1|bishop@1|silver@1|bazaar@10|silver@99 9 | Leader 3: -8.175 e2-d5-p8-hoard@1|gold@99|treasury@4|silver@1|shanty town@10|silver@99 10 | Leader 4: -16.705 e1-d5-p8-hoard@1|gold@99|shanty town@1|treasury@1|bazaar@1|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.82 6.3 8.16 13.38 20.44 15 | 1 -6.76 1.14 -0.58 13.46 20.28 16 | 2 -7.54 -0.02 0.54 9.24 17.74 17 | 3 -14.34 -10.5 -13.78 -0.52 5.92 18 | 4 -19.6 -21.08 -21 -5.14 0.4 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_f9a37389e50cee6d3a7e5ac6b09c51c4.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,chapel,pearl diver,warehouse,bureaucrat,caravan,cutpurse,bazaar,council room,minion@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 11.96 e2-d4-p8-gold@99|minion@10|cutpurse@1|warehouse@1|caravan@10|silver@99|pearl diver@3 7 | Leader 1: 7.835 e2-d4-p8-gold@99|minion@10|cutpurse@1|warehouse@1|caravan@10|silver@99 8 | Leader 2: 8.375 e2-d4-p8-gold@99|minion@10|cutpurse@1|warehouse@1|caravan@10|silver@99|cellar@2 9 | Leader 3: -14.57 e2-d4-p8-gold@99|cutpurse@1|caravan@10|warehouse@1|silver@99 10 | Leader 4: -13.1 e2-d4-p8-gold@99|cutpurse@1|warehouse@1|caravan@10|silver@99|pearl diver@3 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.64 0.92 3.56 21.24 22.12 15 | 1 -3.68 -1.16 -0.94 19.38 16.58 16 | 2 -2.44 -1.54 1.78 19.66 17.82 17 | 3 -21.16 -19.08 -16.68 -1.82 -1.36 18 | 4 -18.5 -17.98 -17.52 1.6 1.14 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_fab18a1b1eb1b4b3560be013b6407866.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: trade route,woodcutter,workshop,bridge,militia,mining village,quarry,festival,tactician,tribute@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 11.88 e2-d5-p8-gold@3|festival@1|gold@99|tactician@1|militia@2|tribute@3|silver@99 7 | Leader 1: 10.385 e2-d4-p8-gold@99|tactician@1|militia@1|festival@1|bridge@1|silver@99 8 | Leader 2: 8.85 e2-d5-p8-gold@99|tactician@1|militia@1|bridge@1|silver@99 9 | Leader 3: -14.84 e3-d4-p8-gold@99|tribute@2|festival@8|silver@99 10 | Leader 4: -16.345 e4-d4-p8-gold@99|tribute@10|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 0.74 -0.42 -2.32 24.3 25.96 15 | 1 1.98 0.32 -1.7 18.94 22.32 16 | 2 2.68 0.34 -0.06 14.38 18 17 | 3 -26.72 -19.46 -15.64 -0.58 2.46 18 | 4 -26.72 -22.24 -16.42 0 -1.24 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_fbea5a2cb411fda93aa949e789165a59.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: pawn,bridge,coppersmith,island,scout,talisman,worker's village,market,merchant ship,royal seal@34Split@Prosperity 4 | 5 | Leaders: 5 6 | Leader 0: 4.65 e1-d4-p5-platinum@99|gold@1|merchant ship@1|gold@99|market@3|island@8|silver@99|pawn@6 7 | Leader 1: 0.845 e3-d4-p5-platinum@99|gold@1|merchant ship@1|gold@99|market@3|island@1|market@9|coppersmith@1|silver@99|pawn@3 8 | Leader 2: 1.18 e2-d4-p5-platinum@99|gold@99|merchant ship@3|market@1|island@3|coppersmith@1|silver@99|pawn@1 9 | Leader 3: -3.62 e3-d4-p5-platinum@99|gold@2|merchant ship@1|gold@99|royal seal@1|merchant ship@1|island@8|merchant ship@1|silver@99|pawn@8 10 | Leader 4: -2.97 e2-d4-p4-platinum@99|gold@99|market@10|island@8|merchant ship@1|silver@99|pawn@6 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 1.1 1.92 4.78 6.46 5.44 15 | 1 -5.18 1.52 0.9 3.86 3.8 16 | 2 -2.64 0.44 0.74 2.7 4.22 17 | 3 -8.36 -1.6 -3.04 -0.16 -1.48 18 | 4 -5.18 -1.72 -2.2 -2.78 -2.58 19 | -------------------------------------------------------------------------------- /bin/data/kingdoms_g32_c1/auto_fed9585e10b2b6c19590a8fbb6c666a1.txt: -------------------------------------------------------------------------------- 1 | Leaderboard 2 | 3 | Kingdom cards: cellar,fishing village,trade route,watchtower,cutpurse,ironworks,smithy,spy,trading post,witch@34Split@NoProsperity 4 | 5 | Leaders: 5 6 | Leader 0: 28.535 e3-d4-p8-witch@2|gold@99|fishing village@1|trade route@1|watchtower@1|fishing village@10|trading post@1|silver@99 7 | Leader 1: 22.205 e2-d4-p8-trading post@1|witch@2|gold@99|fishing village@3|witch@1|watchtower@2|fishing village@10|silver@99|cellar@3 8 | Leader 2: 19.445 e3-d4-p8-witch@2|gold@99|fishing village@1|trade route@1|watchtower@1|trading post@1|fishing village@10|silver@99 9 | Leader 3: -33.285 e2-d4-p8-trading post@1|gold@99|smithy@2|fishing village@4|witch@1|cutpurse@3|silver@99 10 | Leader 4: -37.64 e2-d4-p8-trading post@1|gold@99|smithy@2|fishing village@10|witch@1|cellar@3|silver@99 11 | 12 | Tournament 13 | player 0 1 2 3 4 14 | 0 -1.46 5.28 1.4 52.34 55.12 15 | 1 -3.88 0.64 1.74 44.72 46.24 16 | 2 -4.06 -2.52 1.06 42.26 42.1 17 | 3 -51.66 -42.18 -43.54 -0.14 4.24 18 | 4 -54.86 -44 -44.58 -7.12 2.88 19 | -------------------------------------------------------------------------------- /bin/data/parameters.txt: -------------------------------------------------------------------------------- 1 | useCustomCards=true -------------------------------------------------------------------------------- /bin/data/prosperity.txt: -------------------------------------------------------------------------------- 1 | name cost pcost supply type actions cards buys money v tokens v points treasure 2 | loan 3 0 10 treasure 0 0 0 0 0 0 1 3 | trade route 3 0 10 action 0 0 1 0 0 0 0 4 | watchtower 3 0 10 action reaction 0 0 0 0 0 0 0 5 | bishop 4 0 10 action 0 0 0 1 1 0 0 6 | monument 4 0 10 action 0 0 0 2 1 0 0 7 | quarry 4 0 10 treasure 0 0 0 0 0 0 1 8 | talisman 4 0 10 treasure 0 0 0 0 0 0 1 9 | worker's village 4 0 10 action 2 1 1 0 0 0 0 10 | city 5 0 10 action 2 1 0 0 0 0 0 11 | contraband 5 0 10 treasure 0 0 1 0 0 0 3 12 | counting house 5 0 10 action 0 0 0 0 0 0 0 13 | mint 5 0 10 action 0 0 0 0 0 0 0 14 | mountebank 5 0 10 action attack 0 0 0 2 0 0 0 15 | rabble 5 0 10 action attack 0 3 0 0 0 0 0 16 | royal seal 5 0 10 treasure 0 0 0 0 0 0 2 17 | vault 5 0 10 action 0 2 0 0 0 0 0 18 | venture 5 0 10 treasure 0 0 0 0 0 0 1 19 | goons 6 0 10 action attack 0 0 1 2 0 0 0 20 | grand market 6 0 10 action 1 1 1 2 0 0 0 21 | hoard 6 0 10 treasure 0 0 0 0 0 0 2 22 | bank 7 0 10 treasure 0 0 0 0 0 0 0 23 | expand 7 0 10 action 0 0 0 0 0 0 0 24 | forge 7 0 10 action 0 0 0 0 0 0 0 25 | king's court 7 0 10 action 0 0 0 0 0 0 0 26 | peddler 8 0 10 action 1 1 0 1 0 0 0 27 | -------------------------------------------------------------------------------- /bin/data/prosperityBuyTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techmatt/Provincial/3e636570d7ef359b823cb0dab3c5f8c3f1cb36b2/bin/data/prosperityBuyTemplate.png -------------------------------------------------------------------------------- /bin/data/skipList.txt: -------------------------------------------------------------------------------- 1 | BASE 2 | thief 3 | 4 | INTRIGUE 5 | secret chamber 6 | masquerade 7 | 8 | SEASIDE 9 | embargo 10 | haven 11 | native village 12 | pirate ship 13 | outpost 14 | 15 | ALCHEMY 16 | transmute 17 | vineyard 18 | apothecary 19 | herbalist 20 | scrying pool 21 | university 22 | alchemist 23 | familiar 24 | philosopher's stone 25 | golem 26 | apprentice 27 | possession 28 | 29 | PROSPERITY 30 | contraband 31 | forge 32 | -------------------------------------------------------------------------------- /bin/data/strongCards.txt: -------------------------------------------------------------------------------- 1 | ghost ship 2 | wharf 3 | goons 4 | mountebank 5 | sea hag 6 | witch 7 | torturer 8 | rabble 9 | swindler 10 | militia 11 | minion 12 | tactician 13 | bishop 14 | knight 15 | haunted village 16 | pauper 17 | gambler 18 | hex 19 | palace 20 | promised land --------------------------------------------------------------------------------