├── .gitattributes ├── .github └── workflows │ └── pre-release.yml ├── .gitignore ├── Dockerfile ├── Minerva.sln ├── Minerva ├── .config │ └── dotnet-tools.json ├── .gitignore ├── Controllers │ ├── BadgeController.cs │ └── FigureController.cs ├── Minerva.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── README.md ├── docker-compose.yaml └── tools ├── badge_resource.json ├── badges.zip ├── figuredata-2013-helios.zip └── figuredata-shockwave.zip /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/workflows/pre-release.yml: -------------------------------------------------------------------------------- 1 | name: Create Pre-Release 2 | 3 | on: 4 | push: 5 | branches: 6 | - "master" 7 | 8 | jobs: 9 | pre-release: 10 | permissions: write-all 11 | 12 | name: "Pre Release" 13 | runs-on: "ubuntu-latest" 14 | 15 | steps: 16 | - name: Checkout repository 17 | uses: actions/checkout@v2 18 | with: 19 | submodules: recursive 20 | 21 | - name: Setup .NET 8 22 | uses: actions/setup-dotnet@v1 23 | with: 24 | dotnet-version: 8.0.x 25 | 26 | - id: sha-short 27 | name: Get short SHA 28 | run: echo "::set-output name=sha-short::$(git rev-parse --short HEAD)" 29 | 30 | # Publish Linux 64-bit executable 31 | - name: Build Linux 64-bit 32 | run: dotnet publish -c Release -r linux-x64 --output linux-x64 Minerva.sln --self-contained false 33 | 34 | - name: Unzip figuredata file 35 | uses: montudor/action-zip@v1 36 | with: 37 | args: unzip -qq ./tools/figuredata-shockwave.zip -d linux-x64 38 | 39 | - name: Unzip badges file 40 | uses: montudor/action-zip@v1 41 | with: 42 | args: unzip -qq ./tools/badges.zip -d linux-x64 43 | 44 | - name: File release preparation 45 | run: | 46 | sudo cp tools/badge_resource.json linux-x64 47 | 48 | - name: Compress release files 49 | uses: montudor/action-zip@v1 50 | with: 51 | args: zip -qq -r ./Minerva-linux-x64.zip linux-x64 52 | 53 | # Publish Windows 64-bit executable 54 | - name: Build Windows 64-bit 55 | run: dotnet publish -c Release -r win-x64 --output win-x64 Minerva.sln --self-contained false 56 | 57 | - name: Unzip figuredata file 58 | uses: montudor/action-zip@v1 59 | with: 60 | args: unzip -qq ./tools/figuredata-shockwave.zip -d win-x64 61 | 62 | - name: Unzip badges file 63 | uses: montudor/action-zip@v1 64 | with: 65 | args: unzip -qq ./tools/badges.zip -d win-x64 66 | 67 | - name: File release preparation 68 | run: | 69 | sudo cp tools/badge_resource.json win-x64 70 | 71 | - name: Compress release files 72 | uses: montudor/action-zip@v1 73 | with: 74 | args: zip -qq -r ./Minerva-win-x64.zip win-x64 75 | 76 | # Create latest tag 77 | - uses: "marvinpinto/action-automatic-releases@latest" 78 | with: 79 | repo_token: "${{ secrets.GITHUB_TOKEN }}" 80 | automatic_release_tag: "latest" 81 | prerelease: true 82 | title: "Development Build ${{ steps.sha-short.outputs.sha-short }}" 83 | files: | 84 | Minerva-linux-x64.zip 85 | Minerva-win-x64.zip -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Ww][Ii][Nn]32/ 27 | [Aa][Rr][Mm]/ 28 | [Aa][Rr][Mm]64/ 29 | bld/ 30 | [Bb]in/ 31 | [Oo]bj/ 32 | [Ll]og/ 33 | [Ll]ogs/ 34 | 35 | # Visual Studio 2015/2017 cache/options directory 36 | .vs/ 37 | # Uncomment if you have tasks that create the project's static files in wwwroot 38 | #wwwroot/ 39 | 40 | # Visual Studio 2017 auto generated files 41 | Generated\ Files/ 42 | 43 | # MSTest test Results 44 | [Tt]est[Rr]esult*/ 45 | [Bb]uild[Ll]og.* 46 | 47 | # NUnit 48 | *.VisualState.xml 49 | TestResult.xml 50 | nunit-*.xml 51 | 52 | # Build Results of an ATL Project 53 | [Dd]ebugPS/ 54 | [Rr]eleasePS/ 55 | dlldata.c 56 | 57 | # Benchmark Results 58 | BenchmarkDotNet.Artifacts/ 59 | 60 | # .NET Core 61 | project.lock.json 62 | project.fragment.lock.json 63 | artifacts/ 64 | 65 | # ASP.NET Scaffolding 66 | ScaffoldingReadMe.txt 67 | 68 | # StyleCop 69 | StyleCopReport.xml 70 | 71 | # Files built by Visual Studio 72 | *_i.c 73 | *_p.c 74 | *_h.h 75 | *.ilk 76 | *.meta 77 | *.obj 78 | *.iobj 79 | *.pch 80 | *.pdb 81 | *.ipdb 82 | *.pgc 83 | *.pgd 84 | *.rsp 85 | *.sbr 86 | *.tlb 87 | *.tli 88 | *.tlh 89 | *.tmp 90 | *.tmp_proj 91 | *_wpftmp.csproj 92 | *.log 93 | *.tlog 94 | *.vspscc 95 | *.vssscc 96 | .builds 97 | *.pidb 98 | *.svclog 99 | *.scc 100 | 101 | # Chutzpah Test files 102 | _Chutzpah* 103 | 104 | # Visual C++ cache files 105 | ipch/ 106 | *.aps 107 | *.ncb 108 | *.opendb 109 | *.opensdf 110 | *.sdf 111 | *.cachefile 112 | *.VC.db 113 | *.VC.VC.opendb 114 | 115 | # Visual Studio profiler 116 | *.psess 117 | *.vsp 118 | *.vspx 119 | *.sap 120 | 121 | # Visual Studio Trace Files 122 | *.e2e 123 | 124 | # TFS 2012 Local Workspace 125 | $tf/ 126 | 127 | # Guidance Automation Toolkit 128 | *.gpState 129 | 130 | # ReSharper is a .NET coding add-in 131 | _ReSharper*/ 132 | *.[Rr]e[Ss]harper 133 | *.DotSettings.user 134 | 135 | # TeamCity is a build add-in 136 | _TeamCity* 137 | 138 | # DotCover is a Code Coverage Tool 139 | *.dotCover 140 | 141 | # AxoCover is a Code Coverage Tool 142 | .axoCover/* 143 | !.axoCover/settings.json 144 | 145 | # Coverlet is a free, cross platform Code Coverage Tool 146 | coverage*.json 147 | coverage*.xml 148 | coverage*.info 149 | 150 | # Visual Studio code coverage results 151 | *.coverage 152 | *.coveragexml 153 | 154 | # NCrunch 155 | _NCrunch_* 156 | .*crunch*.local.xml 157 | nCrunchTemp_* 158 | 159 | # MightyMoose 160 | *.mm.* 161 | AutoTest.Net/ 162 | 163 | # Web workbench (sass) 164 | .sass-cache/ 165 | 166 | # Installshield output folder 167 | [Ee]xpress/ 168 | 169 | # DocProject is a documentation generator add-in 170 | DocProject/buildhelp/ 171 | DocProject/Help/*.HxT 172 | DocProject/Help/*.HxC 173 | DocProject/Help/*.hhc 174 | DocProject/Help/*.hhk 175 | DocProject/Help/*.hhp 176 | DocProject/Help/Html2 177 | DocProject/Help/html 178 | 179 | # Click-Once directory 180 | publish/ 181 | 182 | # Publish Web Output 183 | *.[Pp]ublish.xml 184 | *.azurePubxml 185 | # Note: Comment the next line if you want to checkin your web deploy settings, 186 | # but database connection strings (with potential passwords) will be unencrypted 187 | *.pubxml 188 | *.publishproj 189 | 190 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 191 | # checkin your Azure Web App publish settings, but sensitive information contained 192 | # in these scripts will be unencrypted 193 | PublishScripts/ 194 | 195 | # NuGet Packages 196 | *.nupkg 197 | # NuGet Symbol Packages 198 | *.snupkg 199 | # The packages folder can be ignored because of Package Restore 200 | **/[Pp]ackages/* 201 | # except build/, which is used as an MSBuild target. 202 | !**/[Pp]ackages/build/ 203 | # Uncomment if necessary however generally it will be regenerated when needed 204 | #!**/[Pp]ackages/repositories.config 205 | # NuGet v3's project.json files produces more ignorable files 206 | *.nuget.props 207 | *.nuget.targets 208 | 209 | # Microsoft Azure Build Output 210 | csx/ 211 | *.build.csdef 212 | 213 | # Microsoft Azure Emulator 214 | ecf/ 215 | rcf/ 216 | 217 | # Windows Store app package directories and files 218 | AppPackages/ 219 | BundleArtifacts/ 220 | Package.StoreAssociation.xml 221 | _pkginfo.txt 222 | *.appx 223 | *.appxbundle 224 | *.appxupload 225 | 226 | # Visual Studio cache files 227 | # files ending in .cache can be ignored 228 | *.[Cc]ache 229 | # but keep track of directories ending in .cache 230 | !?*.[Cc]ache/ 231 | 232 | # Others 233 | ClientBin/ 234 | ~$* 235 | *~ 236 | *.dbmdl 237 | *.dbproj.schemaview 238 | *.jfm 239 | *.pfx 240 | *.publishsettings 241 | orleans.codegen.cs 242 | 243 | # Including strong name files can present a security risk 244 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 245 | #*.snk 246 | 247 | # Since there are multiple workflows, uncomment next line to ignore bower_components 248 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 249 | #bower_components/ 250 | 251 | # RIA/Silverlight projects 252 | Generated_Code/ 253 | 254 | # Backup & report files from converting an old project file 255 | # to a newer Visual Studio version. Backup files are not needed, 256 | # because we have git ;-) 257 | _UpgradeReport_Files/ 258 | Backup*/ 259 | UpgradeLog*.XML 260 | UpgradeLog*.htm 261 | ServiceFabricBackup/ 262 | *.rptproj.bak 263 | 264 | # SQL Server files 265 | *.mdf 266 | *.ldf 267 | *.ndf 268 | 269 | # Business Intelligence projects 270 | *.rdl.data 271 | *.bim.layout 272 | *.bim_*.settings 273 | *.rptproj.rsuser 274 | *- [Bb]ackup.rdl 275 | *- [Bb]ackup ([0-9]).rdl 276 | *- [Bb]ackup ([0-9][0-9]).rdl 277 | 278 | # Microsoft Fakes 279 | FakesAssemblies/ 280 | 281 | # GhostDoc plugin setting file 282 | *.GhostDoc.xml 283 | 284 | # Node.js Tools for Visual Studio 285 | .ntvs_analysis.dat 286 | node_modules/ 287 | 288 | # Visual Studio 6 build log 289 | *.plg 290 | 291 | # Visual Studio 6 workspace options file 292 | *.opt 293 | 294 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 295 | *.vbw 296 | 297 | # Visual Studio 6 auto-generated project file (contains which files were open etc.) 298 | *.vbp 299 | 300 | # Visual Studio 6 workspace and project file (working project files containing files to include in project) 301 | *.dsw 302 | *.dsp 303 | 304 | # Visual Studio 6 technical files 305 | *.ncb 306 | *.aps 307 | 308 | # Visual Studio LightSwitch build output 309 | **/*.HTMLClient/GeneratedArtifacts 310 | **/*.DesktopClient/GeneratedArtifacts 311 | **/*.DesktopClient/ModelManifest.xml 312 | **/*.Server/GeneratedArtifacts 313 | **/*.Server/ModelManifest.xml 314 | _Pvt_Extensions 315 | 316 | # Paket dependency manager 317 | .paket/paket.exe 318 | paket-files/ 319 | 320 | # FAKE - F# Make 321 | .fake/ 322 | 323 | # CodeRush personal settings 324 | .cr/personal 325 | 326 | # Python Tools for Visual Studio (PTVS) 327 | __pycache__/ 328 | *.pyc 329 | 330 | # Cake - Uncomment if you are using it 331 | # tools/** 332 | # !tools/packages.config 333 | 334 | # Tabs Studio 335 | *.tss 336 | 337 | # Telerik's JustMock configuration file 338 | *.jmconfig 339 | 340 | # BizTalk build output 341 | *.btp.cs 342 | *.btm.cs 343 | *.odx.cs 344 | *.xsd.cs 345 | 346 | # OpenCover UI analysis results 347 | OpenCover/ 348 | 349 | # Azure Stream Analytics local run output 350 | ASALocalRun/ 351 | 352 | # MSBuild Binary and Structured Log 353 | *.binlog 354 | 355 | # NVidia Nsight GPU debugger configuration file 356 | *.nvuser 357 | 358 | # MFractors (Xamarin productivity tool) working folder 359 | .mfractor/ 360 | 361 | # Local History for Visual Studio 362 | .localhistory/ 363 | 364 | # Visual Studio History (VSHistory) files 365 | .vshistory/ 366 | 367 | # BeatPulse healthcheck temp database 368 | healthchecksdb 369 | 370 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 371 | MigrationBackup/ 372 | 373 | # Ionide (cross platform F# VS Code tools) working folder 374 | .ionide/ 375 | 376 | # Fody - auto-generated XML schema 377 | FodyWeavers.xsd 378 | 379 | # VS Code files for those working on multiple tools 380 | .vscode/* 381 | !.vscode/settings.json 382 | !.vscode/tasks.json 383 | !.vscode/launch.json 384 | !.vscode/extensions.json 385 | *.code-workspace 386 | 387 | # Local History for Visual Studio Code 388 | .history/ 389 | 390 | # Windows Installer files from build outputs 391 | *.cab 392 | *.msi 393 | *.msix 394 | *.msm 395 | *.msp 396 | 397 | # JetBrains Rider 398 | *.sln.iml 399 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/sdk:8.0 AS builder 2 | WORKDIR /sources 3 | COPY . . 4 | 5 | RUN apt update && apt install -y unzip 6 | RUN dotnet publish -c Release --output build Minerva.sln --self-contained false 7 | RUN unzip -qq ./tools/figuredata-shockwave.zip -d build 8 | RUN unzip -qq ./tools/badges.zip -d build 9 | 10 | FROM mcr.microsoft.com/dotnet/aspnet:8.0 11 | WORKDIR /minerva 12 | COPY --from=builder /sources/build . 13 | ENTRYPOINT ["/minerva/Minerva"] 14 | -------------------------------------------------------------------------------- /Minerva.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33122.133 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Minerva", "Minerva\Minerva.csproj", "{0ECF7BA5-A20C-4C69-ABD1-0B19CE39F854}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {0ECF7BA5-A20C-4C69-ABD1-0B19CE39F854}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {0ECF7BA5-A20C-4C69-ABD1-0B19CE39F854}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {0ECF7BA5-A20C-4C69-ABD1-0B19CE39F854}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {0ECF7BA5-A20C-4C69-ABD1-0B19CE39F854}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {E420C611-B0B6-421A-929D-3A9C93CBA668} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Minerva/.config/dotnet-tools.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "isRoot": true, 4 | "tools": { 5 | "dotnet-ef": { 6 | "version": "7.0.2", 7 | "commands": [ 8 | "dotnet-ef" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Minerva/.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Ww][Ii][Nn]32/ 27 | [Aa][Rr][Mm]/ 28 | [Aa][Rr][Mm]64/ 29 | bld/ 30 | [Bb]in/ 31 | [Oo]bj/ 32 | [Ll]og/ 33 | [Ll]ogs/ 34 | 35 | # Visual Studio 2015/2017 cache/options directory 36 | .vs/ 37 | # Uncomment if you have tasks that create the project's static files in wwwroot 38 | #wwwroot/ 39 | 40 | # Visual Studio 2017 auto generated files 41 | Generated\ Files/ 42 | 43 | # MSTest test Results 44 | [Tt]est[Rr]esult*/ 45 | [Bb]uild[Ll]og.* 46 | 47 | # NUnit 48 | *.VisualState.xml 49 | TestResult.xml 50 | nunit-*.xml 51 | 52 | # Build Results of an ATL Project 53 | [Dd]ebugPS/ 54 | [Rr]eleasePS/ 55 | dlldata.c 56 | 57 | # Benchmark Results 58 | BenchmarkDotNet.Artifacts/ 59 | 60 | # .NET Core 61 | project.lock.json 62 | project.fragment.lock.json 63 | artifacts/ 64 | 65 | # ASP.NET Scaffolding 66 | ScaffoldingReadMe.txt 67 | 68 | # StyleCop 69 | StyleCopReport.xml 70 | 71 | # Files built by Visual Studio 72 | *_i.c 73 | *_p.c 74 | *_h.h 75 | *.ilk 76 | *.meta 77 | *.obj 78 | *.iobj 79 | *.pch 80 | *.pdb 81 | *.ipdb 82 | *.pgc 83 | *.pgd 84 | *.rsp 85 | *.sbr 86 | *.tlb 87 | *.tli 88 | *.tlh 89 | *.tmp 90 | *.tmp_proj 91 | *_wpftmp.csproj 92 | *.log 93 | *.tlog 94 | *.vspscc 95 | *.vssscc 96 | .builds 97 | *.pidb 98 | *.svclog 99 | *.scc 100 | 101 | # Chutzpah Test files 102 | _Chutzpah* 103 | 104 | # Visual C++ cache files 105 | ipch/ 106 | *.aps 107 | *.ncb 108 | *.opendb 109 | *.opensdf 110 | *.sdf 111 | *.cachefile 112 | *.VC.db 113 | *.VC.VC.opendb 114 | 115 | # Visual Studio profiler 116 | *.psess 117 | *.vsp 118 | *.vspx 119 | *.sap 120 | 121 | # Visual Studio Trace Files 122 | *.e2e 123 | 124 | # TFS 2012 Local Workspace 125 | $tf/ 126 | 127 | # Guidance Automation Toolkit 128 | *.gpState 129 | 130 | # ReSharper is a .NET coding add-in 131 | _ReSharper*/ 132 | *.[Rr]e[Ss]harper 133 | *.DotSettings.user 134 | 135 | # TeamCity is a build add-in 136 | _TeamCity* 137 | 138 | # DotCover is a Code Coverage Tool 139 | *.dotCover 140 | 141 | # AxoCover is a Code Coverage Tool 142 | .axoCover/* 143 | !.axoCover/settings.json 144 | 145 | # Coverlet is a free, cross platform Code Coverage Tool 146 | coverage*.json 147 | coverage*.xml 148 | coverage*.info 149 | 150 | # Visual Studio code coverage results 151 | *.coverage 152 | *.coveragexml 153 | 154 | # NCrunch 155 | _NCrunch_* 156 | .*crunch*.local.xml 157 | nCrunchTemp_* 158 | 159 | # MightyMoose 160 | *.mm.* 161 | AutoTest.Net/ 162 | 163 | # Web workbench (sass) 164 | .sass-cache/ 165 | 166 | # Installshield output folder 167 | [Ee]xpress/ 168 | 169 | # DocProject is a documentation generator add-in 170 | DocProject/buildhelp/ 171 | DocProject/Help/*.HxT 172 | DocProject/Help/*.HxC 173 | DocProject/Help/*.hhc 174 | DocProject/Help/*.hhk 175 | DocProject/Help/*.hhp 176 | DocProject/Help/Html2 177 | DocProject/Help/html 178 | 179 | # Click-Once directory 180 | publish/ 181 | 182 | # Publish Web Output 183 | *.[Pp]ublish.xml 184 | *.azurePubxml 185 | # Note: Comment the next line if you want to checkin your web deploy settings, 186 | # but database connection strings (with potential passwords) will be unencrypted 187 | *.pubxml 188 | *.publishproj 189 | 190 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 191 | # checkin your Azure Web App publish settings, but sensitive information contained 192 | # in these scripts will be unencrypted 193 | PublishScripts/ 194 | 195 | # NuGet Packages 196 | *.nupkg 197 | # NuGet Symbol Packages 198 | *.snupkg 199 | # The packages folder can be ignored because of Package Restore 200 | **/[Pp]ackages/* 201 | # except build/, which is used as an MSBuild target. 202 | !**/[Pp]ackages/build/ 203 | # Uncomment if necessary however generally it will be regenerated when needed 204 | #!**/[Pp]ackages/repositories.config 205 | # NuGet v3's project.json files produces more ignorable files 206 | *.nuget.props 207 | *.nuget.targets 208 | 209 | # Microsoft Azure Build Output 210 | csx/ 211 | *.build.csdef 212 | 213 | # Microsoft Azure Emulator 214 | ecf/ 215 | rcf/ 216 | 217 | # Windows Store app package directories and files 218 | AppPackages/ 219 | BundleArtifacts/ 220 | Package.StoreAssociation.xml 221 | _pkginfo.txt 222 | *.appx 223 | *.appxbundle 224 | *.appxupload 225 | 226 | # Visual Studio cache files 227 | # files ending in .cache can be ignored 228 | *.[Cc]ache 229 | # but keep track of directories ending in .cache 230 | !?*.[Cc]ache/ 231 | 232 | # Others 233 | ClientBin/ 234 | ~$* 235 | *~ 236 | *.dbmdl 237 | *.dbproj.schemaview 238 | *.jfm 239 | *.pfx 240 | *.publishsettings 241 | orleans.codegen.cs 242 | 243 | # Including strong name files can present a security risk 244 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 245 | #*.snk 246 | 247 | # Since there are multiple workflows, uncomment next line to ignore bower_components 248 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 249 | #bower_components/ 250 | 251 | # RIA/Silverlight projects 252 | Generated_Code/ 253 | 254 | # Backup & report files from converting an old project file 255 | # to a newer Visual Studio version. Backup files are not needed, 256 | # because we have git ;-) 257 | _UpgradeReport_Files/ 258 | Backup*/ 259 | UpgradeLog*.XML 260 | UpgradeLog*.htm 261 | ServiceFabricBackup/ 262 | *.rptproj.bak 263 | 264 | # SQL Server files 265 | *.mdf 266 | *.ldf 267 | *.ndf 268 | 269 | # Business Intelligence projects 270 | *.rdl.data 271 | *.bim.layout 272 | *.bim_*.settings 273 | *.rptproj.rsuser 274 | *- [Bb]ackup.rdl 275 | *- [Bb]ackup ([0-9]).rdl 276 | *- [Bb]ackup ([0-9][0-9]).rdl 277 | 278 | # Microsoft Fakes 279 | FakesAssemblies/ 280 | 281 | # GhostDoc plugin setting file 282 | *.GhostDoc.xml 283 | 284 | # Node.js Tools for Visual Studio 285 | .ntvs_analysis.dat 286 | node_modules/ 287 | 288 | # Visual Studio 6 build log 289 | *.plg 290 | 291 | # Visual Studio 6 workspace options file 292 | *.opt 293 | 294 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 295 | *.vbw 296 | 297 | # Visual Studio 6 auto-generated project file (contains which files were open etc.) 298 | *.vbp 299 | 300 | # Visual Studio 6 workspace and project file (working project files containing files to include in project) 301 | *.dsw 302 | *.dsp 303 | 304 | # Visual Studio 6 technical files 305 | *.ncb 306 | *.aps 307 | 308 | # Visual Studio LightSwitch build output 309 | **/*.HTMLClient/GeneratedArtifacts 310 | **/*.DesktopClient/GeneratedArtifacts 311 | **/*.DesktopClient/ModelManifest.xml 312 | **/*.Server/GeneratedArtifacts 313 | **/*.Server/ModelManifest.xml 314 | _Pvt_Extensions 315 | 316 | # Paket dependency manager 317 | .paket/paket.exe 318 | paket-files/ 319 | 320 | # FAKE - F# Make 321 | .fake/ 322 | 323 | # CodeRush personal settings 324 | .cr/personal 325 | 326 | # Python Tools for Visual Studio (PTVS) 327 | __pycache__/ 328 | *.pyc 329 | 330 | # Cake - Uncomment if you are using it 331 | # tools/** 332 | # !tools/packages.config 333 | 334 | # Tabs Studio 335 | *.tss 336 | 337 | # Telerik's JustMock configuration file 338 | *.jmconfig 339 | 340 | # BizTalk build output 341 | *.btp.cs 342 | *.btm.cs 343 | *.odx.cs 344 | *.xsd.cs 345 | 346 | # OpenCover UI analysis results 347 | OpenCover/ 348 | 349 | # Azure Stream Analytics local run output 350 | ASALocalRun/ 351 | 352 | # MSBuild Binary and Structured Log 353 | *.binlog 354 | 355 | # NVidia Nsight GPU debugger configuration file 356 | *.nvuser 357 | 358 | # MFractors (Xamarin productivity tool) working folder 359 | .mfractor/ 360 | 361 | # Local History for Visual Studio 362 | .localhistory/ 363 | 364 | # Visual Studio History (VSHistory) files 365 | .vshistory/ 366 | 367 | # BeatPulse healthcheck temp database 368 | healthchecksdb 369 | 370 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 371 | MigrationBackup/ 372 | 373 | # Ionide (cross platform F# VS Code tools) working folder 374 | .ionide/ 375 | 376 | # Fody - auto-generated XML schema 377 | FodyWeavers.xsd 378 | 379 | # VS Code files for those working on multiple tools 380 | .vscode/* 381 | !.vscode/settings.json 382 | !.vscode/tasks.json 383 | !.vscode/launch.json 384 | !.vscode/extensions.json 385 | *.code-workspace 386 | 387 | # Local History for Visual Studio Code 388 | .history/ 389 | 390 | # Windows Installer files from build outputs 391 | *.cab 392 | *.msi 393 | *.msix 394 | *.msm 395 | *.msp 396 | 397 | # JetBrains Rider 398 | *.sln.iml 399 | 400 | figuredata/ 401 | badges/ -------------------------------------------------------------------------------- /Minerva/Controllers/BadgeController.cs: -------------------------------------------------------------------------------- 1 | using Badger; 2 | using Microsoft.AspNetCore.Mvc; 3 | 4 | namespace Minerva.Controllers 5 | { 6 | public class BadgeController : Controller 7 | { 8 | private readonly ILogger _logger; 9 | 10 | public BadgeController(ILogger logger) 11 | { 12 | _logger = logger; 13 | } 14 | 15 | [HttpGet("habbo-imaging/badge/{badgeCode}")] 16 | public IActionResult BadgeImager(string badgeCode) 17 | { 18 | if (badgeCode != null && badgeCode.Length > 0) 19 | { 20 | var badge = Badge.ParseBadgeData(new BadgeSettings 21 | { 22 | IsShockwaveBadge = Program.SHOCKWAVE_BADGE_RENDER 23 | }, badgeCode); 24 | 25 | //var avatar = new Avatar(figure, size, bodyDirection, headDirection, figuredataReader, action: action, gesture: gesture, headOnly: headOnly, frame: frame, carryDrink: carryDrink, cropImage: cropImage); 26 | 27 | if (badgeCode.EndsWith(".gif")) 28 | { 29 | var badgeData = badge.Render(gifEncoder: true); 30 | 31 | if (badgeData != null) 32 | return File(badgeData, "image/gif"); 33 | } 34 | else 35 | { 36 | var badgeData = badge.Render(gifEncoder: false); 37 | 38 | if (badgeData != null) 39 | return File(badgeData, "image/png"); 40 | } 41 | } 42 | 43 | return StatusCode(403); 44 | } 45 | 46 | [HttpGet("habbo-imaging/badge-fill/{badgeCode}")] 47 | public IActionResult BadgeFill(string badgeCode) 48 | { 49 | if (badgeCode != null && badgeCode.Length > 0) 50 | { 51 | /*var badge = GetFromServer.ParseBadgeData(badgeCode); 52 | 53 | badge.Parts.ForEach(x => 54 | { 55 | x.IsShockwaveBadge = Program.SHOCKWAVE_BADGE_RENDER; 56 | });*/ 57 | 58 | var badge = Badge.ParseBadgeData(new BadgeSettings 59 | { 60 | IsShockwaveBadge = Program.SHOCKWAVE_BADGE_RENDER 61 | }, badgeCode); 62 | 63 | //var avatar = new Avatar(figure, size, bodyDirection, headDirection, figuredataReader, action: action, gesture: gesture, headOnly: headOnly, frame: frame, carryDrink: carryDrink, cropImage: cropImage); 64 | 65 | var badgeData = badge.Render(gifEncoder: true, forceWhiteBackground: true); 66 | 67 | if (badgeData != null) 68 | return File(badgeData, "image/gif"); 69 | } 70 | 71 | return StatusCode(403); 72 | } 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /Minerva/Controllers/FigureController.cs: -------------------------------------------------------------------------------- 1 | using Avatara; 2 | using Avatara.Extensions; 3 | using Avatara.Figure; 4 | using Microsoft.AspNetCore.Mvc; 5 | using System.Diagnostics; 6 | 7 | namespace Minerva.Controllers 8 | { 9 | public class FigureController : Controller 10 | { 11 | private readonly ILogger _logger; 12 | 13 | public FigureController(ILogger logger) 14 | { 15 | _logger = logger; 16 | } 17 | 18 | [HttpGet("habbo-imaging/avatarimage")] 19 | public IActionResult Index() 20 | { 21 | string size = "b"; 22 | int bodyDirection = 2; 23 | int headDirection = 2; 24 | string? figure = null; 25 | string action = "std"; 26 | string gesture = "std"; 27 | bool headOnly = false; 28 | int frame = 1; 29 | int carryDrink = -1; 30 | bool cropImage = false; 31 | 32 | if (Request.Query.ContainsKey("figure")) 33 | { 34 | Request.Query.TryGetValue("figure", out var value); 35 | figure = value.ToString(); 36 | } 37 | 38 | if (Request.Query.ContainsKey("action")) 39 | { 40 | Request.Query.TryGetValue("action", out var value); 41 | action = value.ToString(); 42 | } 43 | 44 | if (Request.Query.ContainsKey("gesture")) 45 | { 46 | Request.Query.TryGetValue("gesture", out var value); 47 | gesture = value.ToString(); 48 | } 49 | 50 | if (Request.Query.ContainsKey("figure")) 51 | { 52 | Request.Query.TryGetValue("figure", out var value); 53 | figure = value.ToString(); 54 | } 55 | 56 | if (Request.Query.ContainsKey("size")) 57 | { 58 | Request.Query.TryGetValue("size", out var value); 59 | size = value.ToString(); 60 | } 61 | 62 | if (Request.Query.ContainsKey("head")) 63 | { 64 | Request.Query.TryGetValue("head", out var value); 65 | headOnly = value.ToString() == "1" || value.ToString() == "true"; 66 | } 67 | 68 | if (Request.Query.ContainsKey("direction")) 69 | { 70 | Request.Query.TryGetValue("direction", out var value); 71 | 72 | if (value.ToString().IsNumeric()) 73 | { 74 | bodyDirection = int.Parse(value.ToString()); 75 | } 76 | } 77 | 78 | if (Request.Query.ContainsKey("head_direction")) 79 | { 80 | Request.Query.TryGetValue("head_direction", out var value); 81 | 82 | if (value.ToString().IsNumeric()) 83 | { 84 | headDirection = int.Parse(value.ToString()); 85 | } 86 | } 87 | 88 | if (Request.Query.ContainsKey("frame")) 89 | { 90 | Request.Query.TryGetValue("frame", out var value); 91 | 92 | if (value.ToString().IsNumeric()) 93 | { 94 | int v = int.Parse(value.ToString()); 95 | frame = v < 1 ? 1 : v; 96 | } 97 | } 98 | 99 | if (Request.Query.ContainsKey("drk")) 100 | { 101 | Request.Query.TryGetValue("drk", out var value); 102 | action = (value.ToString() == "1" || value.ToString() == "true") ? "drk" : action; 103 | } 104 | 105 | if (Request.Query.ContainsKey("crop")) 106 | { 107 | Request.Query.TryGetValue("crop", out var value); 108 | cropImage = (value.ToString() == "1" || value.ToString() == "true"); 109 | } 110 | 111 | if (Request.Query.ContainsKey("crr")) 112 | { 113 | Request.Query.TryGetValue("crr", out var value); 114 | 115 | if (value.ToString().IsNumeric()) 116 | { 117 | carryDrink = int.Parse(value.ToString()); 118 | } 119 | } 120 | 121 | if (figure != null && figure.Length > 0) 122 | { 123 | var avatar = new Avatar(FiguredataReader.Instance, figure, size, bodyDirection, headDirection, action: action, gesture: gesture, headOnly: headOnly, frame: frame, carryDrink: carryDrink, cropImage: cropImage); 124 | var figureData = avatar.Run(); 125 | 126 | return File(figureData, "image/png"); 127 | } 128 | 129 | return StatusCode(403); 130 | } 131 | } 132 | } -------------------------------------------------------------------------------- /Minerva/Minerva.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Minerva/Program.cs: -------------------------------------------------------------------------------- 1 | using Avatara; 2 | using Avatara.Figure; 3 | 4 | namespace Minerva 5 | { 6 | public class Program 7 | { 8 | public static bool SHOCKWAVE_BADGE_RENDER = true; 9 | public static bool FLASH_BADGE_RENDER = false; 10 | 11 | public static void Main(string[] args) 12 | { 13 | var argsList = args.ToList(); 14 | 15 | if (!argsList.Contains("--shockwave-badge-render") && 16 | !argsList.Contains("--flash-badge-render")) 17 | { 18 | Console.WriteLine(); 19 | 20 | Console.ForegroundColor = ConsoleColor.Yellow; 21 | Console.WriteLine("Warning!"); 22 | 23 | Console.ResetColor(); 24 | Console.WriteLine("Needs to be started with either parameter included for finer tuning:"); 25 | Console.WriteLine("--shockwave-badge-render (for Habbo versions using the Shockwave client)"); 26 | Console.WriteLine("--flash-badge-render (for Habbo versions using the Flash client in 2013+)"); 27 | 28 | Console.WriteLine(); 29 | } 30 | 31 | if (argsList.Contains("--flash-badge-render")) 32 | { 33 | Console.WriteLine("Flash (client versions above and including 2013+) badge rendering enabled"); 34 | 35 | SHOCKWAVE_BADGE_RENDER = false; 36 | FLASH_BADGE_RENDER = true; 37 | } 38 | else 39 | { 40 | Console.WriteLine("Shockwave badge rendering enabled"); 41 | 42 | SHOCKWAVE_BADGE_RENDER = true; 43 | FLASH_BADGE_RENDER = false; 44 | } 45 | 46 | var builder = WebApplication.CreateBuilder(args); 47 | 48 | // Add services to the container. 49 | builder.Services.AddControllersWithViews(); 50 | 51 | var app = builder.Build(); 52 | 53 | // Configure the HTTP request pipeline. 54 | if (!app.Environment.IsDevelopment()) 55 | { 56 | //app.UseExceptionHandler("/Home/Error"); 57 | // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. 58 | app.UseHsts(); 59 | } 60 | 61 | // app.UseHttpsRedirection(); 62 | app.UseRouting(); 63 | 64 | app.MapControllerRoute( 65 | name: "default", 66 | pattern: "{controller=Home}/{action=Index}/{id?}"); 67 | 68 | LoadFigureAssets(app.Services.CreateScope()); 69 | 70 | app.Run(); 71 | } 72 | 73 | private static void LoadFigureAssets(IServiceScope scope) 74 | { 75 | Console.WriteLine("Loading flash assets..."); 76 | 77 | FlashExtractor.Instance.Load(); 78 | 79 | Console.WriteLine($"{FlashExtractor.Instance.Parts.Count} flash assets loaded"); 80 | 81 | Console.WriteLine("Loading figure data..."); 82 | 83 | FiguredataReader.Instance.Load(); 84 | Console.WriteLine($"{FiguredataReader.Instance.FigureSets.Count} figure sets loaded"); 85 | Console.WriteLine($"{FiguredataReader.Instance.FigureSetTypes.Count} figure set types loaded"); 86 | Console.WriteLine($"{FiguredataReader.Instance.FigurePalettes.Count} figure palettes loaded"); 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /Minerva/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:7642", 7 | "sslPort": 44335 8 | } 9 | }, 10 | "profiles": { 11 | "Minerva": { 12 | "commandName": "Project", 13 | "dotnetRunMessages": true, 14 | "launchBrowser": true, 15 | "applicationUrl": "https://localhost:7148;http://localhost:5125", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "IIS Express": { 21 | "commandName": "IISExpress", 22 | "launchBrowser": true, 23 | "environmentVariables": { 24 | "ASPNETCORE_ENVIRONMENT": "Development" 25 | } 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Minerva/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Minerva/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Minerva 2 | 3 | Imager for Habbo Hotel releases Shockwave and Flash. It uses the two projects (Badger, and Avatara) as libraries combined into one, to make the web server. 4 | 5 | It supports rendering both figures/avatars and group badges. 6 | 7 | When used, the following endpoints will be available: 8 | 9 | ``/habbo-imaging/avatarimage`` 10 | 11 | ``/habbo-imaging/badge/{badge-code}.gif`` 12 | 13 | (This is for the client **only** due to the way Shockwave handles transparency) 14 | 15 | ``/habbo-imaging/badge-fill/{badge-code}.gif`` 16 | 17 | ## Download 18 | 19 | The latest builds for Linux and Windows are found on the [latest](https://github.com/Quackster/Minerva/releases/tag/latest) tag. 20 | 21 | | OS | Download | 22 | |---|---| 23 | | Linux (64-bit) | [Minerva-linux-x64.zip](https://github.com/Quackster/Minerva/releases/download/latest/Minerva-linux-x64.zip) | 24 | | Windows (64-bit) | [Minerva-win-x64.zip](https://github.com/Quackster/Minerva/releases/download/latest/Minerva-win-x64.zip) | 25 | 26 | This project is using both [Avatara](https://github.com/Quackster/Avatara) and [Badger](https://github.com/Quackster/Badger) as dependencies. 27 | 28 | ## Setup 29 | 30 | To run Minerva, you need to install .NET 8 [runtime](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) for your operating system. 31 | 32 | Once downloaded, you may execute ``./Minerva`` (Linux) or ``Minerva.exe`` (Windows). 33 | 34 | As soon as it starts, it will extract all the SWFS in /figuredata/ and build the XML and image files, all this will be located in /xml/ and /images/ inside /figuredata/. 35 | 36 | Once that's done, you should see the following console output. 37 | 38 | ``` 39 | Loading flash assets... 40 | 9762 flash assets loaded 41 | Loading figure data... 42 | 301 figure sets loaded 43 | 11 figure set types loaded 44 | 3 figure palettes loaded 45 | info: Microsoft.Hosting.Lifetime[14] 46 | Now listening on: http://localhost:5000 47 | info: Microsoft.Hosting.Lifetime[14] 48 | Now listening on: https://localhost:5001 49 | info: Microsoft.Hosting.Lifetime[0] 50 | Application started. Press Ctrl+C to shut down. 51 | info: Microsoft.Hosting.Lifetime[0] 52 | Hosting environment: Production 53 | info: Microsoft.Hosting.Lifetime[0] 54 | Content root path... 55 | ``` 56 | 57 | The the following path should give the expected output: 58 | 59 | ``` 60 | http://localhost:5000/habbo-imaging/avatarimage?figure=hd-180-1.hr-100-61.ch-210-66.lg-270-82.sh-290-80&size=b&direction=4&head_direction=4&crr=0&gesture=sml&frame=1 61 | ``` 62 | 63 | ![image](https://user-images.githubusercontent.com/1328523/212457834-67011df8-db85-41da-ad71-129bd1fadd33.png) 64 | 65 | By default the port it listens on will be 5000 but this can be changed to 8080 (or any other port for your liking) with the command line arguments ``--urls=http://*:8080/`` 66 | 67 | #### Group badges in-client setup 68 | 69 | Minerva has a special path to use for the Shockwave client, ensure that "badge-fill" is being used. 70 | 71 | In external_texts.txt (yes, the client reads from this file...) 72 | 73 | Make sure the line is (with port 5000 being changed to what you are using): 74 | 75 | ``` 76 | group_logo_url_template=http://localhost:5000/habbo-imaging/badge-fill/%imagerdata%.gif 77 | ``` 78 | 79 | **Note:** if you are using Havana with the latest version (at minimum, released 14th Janurary 2023), then set as line below: 80 | 81 | ``` 82 | group_logo_url_template=http://localhost/habbo-imaging/badge-fill/%imagerdata%.gif 83 | ``` 84 | 85 | Group badges should now work in-game. 86 | 87 | ![image](https://user-images.githubusercontent.com/1328523/212458081-6f3d390b-48de-4401-bb56-8beab3250269.png) 88 | 89 | 90 | ### Adding custom clothes 91 | 92 | 1. Adding more clothes is easy, ensure /xml/ and /images/ are either empty or don't exist in /figuredata/ 93 | 94 | 2. Put the SWFs that have these clothes inside /figuredata/compiled/ 95 | 96 | 3. Update figuredata.xml with the one that has the new clothes inside of it 97 | 98 | Run Minerva and it should be supported. 99 | 100 | ### How do I use it for my site written in a different language? 101 | 102 | You can proxy it. 103 | 104 | An example in PHP: 105 | 106 | ```php 107 | 111 | ``` 112 | 113 | An example with Nginx: 114 | 115 | ```nginx 116 | location /imaging/ { 117 | proxy_pass http://127.0.0.1:8090; 118 | proxy_set_header Host $host; 119 | proxy_set_header X-Real-IP $remote_addr; 120 | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 121 | } 122 | ``` 123 | ### Cloning this repository 124 | 125 | ``` 126 | $ git clone --recursive https://github.com/Quackster/Minerva 127 | ``` 128 | 129 | **or** 130 | 131 | ``` 132 | $ git clone https://github.com/Quackster/Minerva 133 | $ git submodule update --init --recursive 134 | 135 | -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | minerva: 3 | build: . 4 | networks: 5 | - havana_havana 6 | 7 | networks: 8 | havana_havana: 9 | external: true 10 | -------------------------------------------------------------------------------- /tools/badge_resource.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "Id": 1, 4 | "ExtraData1": "base_basic_1.png", 5 | "ExtraData2": null, 6 | "Type": "Base" 7 | }, 8 | { 9 | "Id": 2, 10 | "ExtraData1": "base_basic_2.png", 11 | "ExtraData2": null, 12 | "Type": "Base" 13 | }, 14 | { 15 | "Id": 3, 16 | "ExtraData1": "base_basic_3.png", 17 | "ExtraData2": null, 18 | "Type": "Base" 19 | }, 20 | { 21 | "Id": 4, 22 | "ExtraData1": "base_basic_4.png", 23 | "ExtraData2": null, 24 | "Type": "Base" 25 | }, 26 | { 27 | "Id": 5, 28 | "ExtraData1": "base_basic_5.png", 29 | "ExtraData2": null, 30 | "Type": "Base" 31 | }, 32 | { 33 | "Id": 6, 34 | "ExtraData1": "base_advanced_1.png", 35 | "ExtraData2": null, 36 | "Type": "Base" 37 | }, 38 | { 39 | "Id": 7, 40 | "ExtraData1": "base_advanced_2.png", 41 | "ExtraData2": null, 42 | "Type": "Base" 43 | }, 44 | { 45 | "Id": 8, 46 | "ExtraData1": "base_advanced_3.png", 47 | "ExtraData2": null, 48 | "Type": "Base" 49 | }, 50 | { 51 | "Id": 9, 52 | "ExtraData1": "base_advanced_4.png", 53 | "ExtraData2": null, 54 | "Type": "Base" 55 | }, 56 | { 57 | "Id": 10, 58 | "ExtraData1": "base_gold_1_part2.png", 59 | "ExtraData2": "base_gold_1_part1.png", 60 | "Type": "Base" 61 | }, 62 | { 63 | "Id": 11, 64 | "ExtraData1": "base_gold_2_part2.png", 65 | "ExtraData2": "base_gold_2_part1.png", 66 | "Type": "Base" 67 | }, 68 | { 69 | "Id": 12, 70 | "ExtraData1": "base_pin_part2.png", 71 | "ExtraData2": "base_pin_part1.png", 72 | "Type": "Base" 73 | }, 74 | { 75 | "Id": 13, 76 | "ExtraData1": "base_gradient_1.png", 77 | "ExtraData2": null, 78 | "Type": "Base" 79 | }, 80 | { 81 | "Id": 14, 82 | "ExtraData1": "base_gradient_2.png", 83 | "ExtraData2": null, 84 | "Type": "Base" 85 | }, 86 | { 87 | "Id": 15, 88 | "ExtraData1": "base_circles_1.png", 89 | "ExtraData2": null, 90 | "Type": "Base" 91 | }, 92 | { 93 | "Id": 16, 94 | "ExtraData1": "base_circles_2.png", 95 | "ExtraData2": null, 96 | "Type": "Base" 97 | }, 98 | { 99 | "Id": 17, 100 | "ExtraData1": "base_ornament_1_part2.png", 101 | "ExtraData2": "base_ornament_1_part1.png", 102 | "Type": "Base" 103 | }, 104 | { 105 | "Id": 18, 106 | "ExtraData1": "base_ornament_2_part2.png", 107 | "ExtraData2": "base_ornament_2_part1.png", 108 | "Type": "Base" 109 | }, 110 | { 111 | "Id": 19, 112 | "ExtraData1": "base_misc_1_part2.png", 113 | "ExtraData2": "base_misc_1_part1.png", 114 | "Type": "Base" 115 | }, 116 | { 117 | "Id": 20, 118 | "ExtraData1": "base_misc_2.png", 119 | "ExtraData2": null, 120 | "Type": "Base" 121 | }, 122 | { 123 | "Id": 65, 124 | "ExtraData1": "base_beams_part2.png", 125 | "ExtraData2": "base_beams_part1.png", 126 | "Type": "Base" 127 | }, 128 | { 129 | "Id": 66, 130 | "ExtraData1": "base_ring.png", 131 | "ExtraData2": null, 132 | "Type": "Base" 133 | }, 134 | { 135 | "Id": 67, 136 | "ExtraData1": "base_simplestar_part2.png", 137 | "ExtraData2": "base_simplestar_part1.png", 138 | "Type": "Base" 139 | }, 140 | { 141 | "Id": 24, 142 | "ExtraData1": "base_spiral.png", 143 | "ExtraData2": null, 144 | "Type": "Base" 145 | }, 146 | { 147 | "Id": 69, 148 | "ExtraData1": "base_book.png", 149 | "ExtraData2": null, 150 | "Type": "Base" 151 | }, 152 | { 153 | "Id": 70, 154 | "ExtraData1": "base_egg.png", 155 | "ExtraData2": null, 156 | "Type": "Base" 157 | }, 158 | { 159 | "Id": 71, 160 | "ExtraData1": "base_ornament.png", 161 | "ExtraData2": null, 162 | "Type": "Base" 163 | }, 164 | { 165 | "Id": 72, 166 | "ExtraData1": "base_shield_part2.png", 167 | "ExtraData2": "base_shield_part1.png", 168 | "Type": "Base" 169 | }, 170 | { 171 | "Id": 21, 172 | "ExtraData1": "symbol_background_1.png", 173 | "ExtraData2": null, 174 | "Type": "Symbol" 175 | }, 176 | { 177 | "Id": 22, 178 | "ExtraData1": "symbol_background_2.png", 179 | "ExtraData2": null, 180 | "Type": "Symbol" 181 | }, 182 | { 183 | "Id": 1, 184 | "ExtraData1": "ffd601", 185 | "ExtraData2": null, 186 | "Type": "Color1" 187 | }, 188 | { 189 | "Id": 11, 190 | "ExtraData1": "ffffff", 191 | "ExtraData2": null, 192 | "Type": "Color1" 193 | }, 194 | { 195 | "Id": 2, 196 | "ExtraData1": "ec7600", 197 | "ExtraData2": null, 198 | "Type": "Color1" 199 | }, 200 | { 201 | "Id": 3, 202 | "ExtraData1": "84de00", 203 | "ExtraData2": null, 204 | "Type": "Color1" 205 | }, 206 | { 207 | "Id": 4, 208 | "ExtraData1": "589a00", 209 | "ExtraData2": null, 210 | "Type": "Color1" 211 | }, 212 | { 213 | "Id": 18, 214 | "ExtraData1": "aaff7d", 215 | "ExtraData2": null, 216 | "Type": "Color1" 217 | }, 218 | { 219 | "Id": 5, 220 | "ExtraData1": "50c1fb", 221 | "ExtraData2": null, 222 | "Type": "Color1" 223 | }, 224 | { 225 | "Id": 19, 226 | "ExtraData1": "87e6c8", 227 | "ExtraData2": null, 228 | "Type": "Color1" 229 | }, 230 | { 231 | "Id": 6, 232 | "ExtraData1": "006fcf", 233 | "ExtraData2": null, 234 | "Type": "Color1" 235 | }, 236 | { 237 | "Id": 16, 238 | "ExtraData1": "c2eaff", 239 | "ExtraData2": null, 240 | "Type": "Color1" 241 | }, 242 | { 243 | "Id": 7, 244 | "ExtraData1": "ff98e3", 245 | "ExtraData2": null, 246 | "Type": "Color1" 247 | }, 248 | { 249 | "Id": 8, 250 | "ExtraData1": "f334bf", 251 | "ExtraData2": null, 252 | "Type": "Color1" 253 | }, 254 | { 255 | "Id": 9, 256 | "ExtraData1": "ff2d2d", 257 | "ExtraData2": null, 258 | "Type": "Color1" 259 | }, 260 | { 261 | "Id": 20, 262 | "ExtraData1": "9844e7", 263 | "ExtraData2": null, 264 | "Type": "Color1" 265 | }, 266 | { 267 | "Id": 1, 268 | "ExtraData1": "ffffff", 269 | "ExtraData2": null, 270 | "Type": "Color2" 271 | }, 272 | { 273 | "Id": 2, 274 | "ExtraData1": "ebebeb", 275 | "ExtraData2": null, 276 | "Type": "Color2" 277 | }, 278 | { 279 | "Id": 3, 280 | "ExtraData1": "d4d4d4", 281 | "ExtraData2": null, 282 | "Type": "Color2" 283 | }, 284 | { 285 | "Id": 4, 286 | "ExtraData1": "bdbdbd", 287 | "ExtraData2": null, 288 | "Type": "Color2" 289 | }, 290 | { 291 | "Id": 5, 292 | "ExtraData1": "a6a6a6", 293 | "ExtraData2": null, 294 | "Type": "Color2" 295 | }, 296 | { 297 | "Id": 3, 298 | "ExtraData1": "8f8f8f", 299 | "ExtraData2": null, 300 | "Type": "Color2" 301 | }, 302 | { 303 | "Id": 4, 304 | "ExtraData1": "787878", 305 | "ExtraData2": null, 306 | "Type": "Color2" 307 | }, 308 | { 309 | "Id": 5, 310 | "ExtraData1": "616161", 311 | "ExtraData2": null, 312 | "Type": "Color2" 313 | }, 314 | { 315 | "Id": 6, 316 | "ExtraData1": "4c4c4c", 317 | "ExtraData2": null, 318 | "Type": "Color2" 319 | }, 320 | { 321 | "Id": 7, 322 | "ExtraData1": "589a00", 323 | "ExtraData2": null, 324 | "Type": "Color2" 325 | }, 326 | { 327 | "Id": 8, 328 | "ExtraData1": "518e00", 329 | "ExtraData2": null, 330 | "Type": "Color2" 331 | }, 332 | { 333 | "Id": 9, 334 | "ExtraData1": "498000", 335 | "ExtraData2": null, 336 | "Type": "Color2" 337 | }, 338 | { 339 | "Id": 10, 340 | "ExtraData1": "417200", 341 | "ExtraData2": null, 342 | "Type": "Color2" 343 | }, 344 | { 345 | "Id": 11, 346 | "ExtraData1": "396400", 347 | "ExtraData2": null, 348 | "Type": "Color2" 349 | }, 350 | { 351 | "Id": 12, 352 | "ExtraData1": "315600", 353 | "ExtraData2": null, 354 | "Type": "Color2" 355 | }, 356 | { 357 | "Id": 13, 358 | "ExtraData1": "294800", 359 | "ExtraData2": null, 360 | "Type": "Color2" 361 | }, 362 | { 363 | "Id": 14, 364 | "ExtraData1": "213b00", 365 | "ExtraData2": null, 366 | "Type": "Color2" 367 | }, 368 | { 369 | "Id": 15, 370 | "ExtraData1": "1a2e00", 371 | "ExtraData2": null, 372 | "Type": "Color2" 373 | }, 374 | { 375 | "Id": 16, 376 | "ExtraData1": "84de00", 377 | "ExtraData2": null, 378 | "Type": "Color2" 379 | }, 380 | { 381 | "Id": 17, 382 | "ExtraData1": "7acd00", 383 | "ExtraData2": null, 384 | "Type": "Color2" 385 | }, 386 | { 387 | "Id": 18, 388 | "ExtraData1": "6eb900", 389 | "ExtraData2": null, 390 | "Type": "Color2" 391 | }, 392 | { 393 | "Id": 19, 394 | "ExtraData1": "62a500", 395 | "ExtraData2": null, 396 | "Type": "Color2" 397 | }, 398 | { 399 | "Id": 20, 400 | "ExtraData1": "569100", 401 | "ExtraData2": null, 402 | "Type": "Color2" 403 | }, 404 | { 405 | "Id": 21, 406 | "ExtraData1": "4a7c00", 407 | "ExtraData2": null, 408 | "Type": "Color2" 409 | }, 410 | { 411 | "Id": 22, 412 | "ExtraData1": "3e6800", 413 | "ExtraData2": null, 414 | "Type": "Color2" 415 | }, 416 | { 417 | "Id": 23, 418 | "ExtraData1": "325400", 419 | "ExtraData2": null, 420 | "Type": "Color2" 421 | }, 422 | { 423 | "Id": 24, 424 | "ExtraData1": "274200", 425 | "ExtraData2": null, 426 | "Type": "Color2" 427 | }, 428 | { 429 | "Id": 25, 430 | "ExtraData1": "c2eaff", 431 | "ExtraData2": null, 432 | "Type": "Color2" 433 | }, 434 | { 435 | "Id": 26, 436 | "ExtraData1": "b3d8eb", 437 | "ExtraData2": null, 438 | "Type": "Color2" 439 | }, 440 | { 441 | "Id": 27, 442 | "ExtraData1": "a1c3d4", 443 | "ExtraData2": null, 444 | "Type": "Color2" 445 | }, 446 | { 447 | "Id": 28, 448 | "ExtraData1": "90adbd", 449 | "ExtraData2": null, 450 | "Type": "Color2" 451 | }, 452 | { 453 | "Id": 29, 454 | "ExtraData1": "7e98a6", 455 | "ExtraData2": null, 456 | "Type": "Color2" 457 | }, 458 | { 459 | "Id": 30, 460 | "ExtraData1": "6d838f", 461 | "ExtraData2": null, 462 | "Type": "Color2" 463 | }, 464 | { 465 | "Id": 31, 466 | "ExtraData1": "5b6e78", 467 | "ExtraData2": null, 468 | "Type": "Color2" 469 | }, 470 | { 471 | "Id": 32, 472 | "ExtraData1": "4a5961", 473 | "ExtraData2": null, 474 | "Type": "Color2" 475 | }, 476 | { 477 | "Id": 33, 478 | "ExtraData1": "3a464c", 479 | "ExtraData2": null, 480 | "Type": "Color2" 481 | }, 482 | { 483 | "Id": 34, 484 | "ExtraData1": "50c1fb", 485 | "ExtraData2": null, 486 | "Type": "Color2" 487 | }, 488 | { 489 | "Id": 35, 490 | "ExtraData1": "4ab2e7", 491 | "ExtraData2": null, 492 | "Type": "Color2" 493 | }, 494 | { 495 | "Id": 36, 496 | "ExtraData1": "43a0d1", 497 | "ExtraData2": null, 498 | "Type": "Color2" 499 | }, 500 | { 501 | "Id": 37, 502 | "ExtraData1": "3b8fba", 503 | "ExtraData2": null, 504 | "Type": "Color2" 505 | }, 506 | { 507 | "Id": 38, 508 | "ExtraData1": "347ea3", 509 | "ExtraData2": null, 510 | "Type": "Color2" 511 | }, 512 | { 513 | "Id": 39, 514 | "ExtraData1": "2d6c8d", 515 | "ExtraData2": null, 516 | "Type": "Color2" 517 | }, 518 | { 519 | "Id": 40, 520 | "ExtraData1": "265b76", 521 | "ExtraData2": null, 522 | "Type": "Color2" 523 | }, 524 | { 525 | "Id": 41, 526 | "ExtraData1": "1e495f", 527 | "ExtraData2": null, 528 | "Type": "Color2" 529 | }, 530 | { 531 | "Id": 42, 532 | "ExtraData1": "183a4b", 533 | "ExtraData2": null, 534 | "Type": "Color2" 535 | }, 536 | { 537 | "Id": 43, 538 | "ExtraData1": "006fcf", 539 | "ExtraData2": null, 540 | "Type": "Color2" 541 | }, 542 | { 543 | "Id": 44, 544 | "ExtraData1": "0066bf", 545 | "ExtraData2": null, 546 | "Type": "Color2" 547 | }, 548 | { 549 | "Id": 45, 550 | "ExtraData1": "005cac", 551 | "ExtraData2": null, 552 | "Type": "Color2" 553 | }, 554 | { 555 | "Id": 46, 556 | "ExtraData1": "005299", 557 | "ExtraData2": null, 558 | "Type": "Color2" 559 | }, 560 | { 561 | "Id": 47, 562 | "ExtraData1": "004887", 563 | "ExtraData2": null, 564 | "Type": "Color2" 565 | }, 566 | { 567 | "Id": 48, 568 | "ExtraData1": "003e74", 569 | "ExtraData2": null, 570 | "Type": "Color2" 571 | }, 572 | { 573 | "Id": 49, 574 | "ExtraData1": "003461", 575 | "ExtraData2": null, 576 | "Type": "Color2" 577 | }, 578 | { 579 | "Id": 50, 580 | "ExtraData1": "002a4f", 581 | "ExtraData2": null, 582 | "Type": "Color2" 583 | }, 584 | { 585 | "Id": 51, 586 | "ExtraData1": "00213e", 587 | "ExtraData2": null, 588 | "Type": "Color2" 589 | }, 590 | { 591 | "Id": 52, 592 | "ExtraData1": "9844e7", 593 | "ExtraData2": null, 594 | "Type": "Color2" 595 | }, 596 | { 597 | "Id": 53, 598 | "ExtraData1": "8c3fd5", 599 | "ExtraData2": null, 600 | "Type": "Color2" 601 | }, 602 | { 603 | "Id": 54, 604 | "ExtraData1": "7e39c0", 605 | "ExtraData2": null, 606 | "Type": "Color2" 607 | }, 608 | { 609 | "Id": 55, 610 | "ExtraData1": "7132ab", 611 | "ExtraData2": null, 612 | "Type": "Color2" 613 | }, 614 | { 615 | "Id": 56, 616 | "ExtraData1": "632c96", 617 | "ExtraData2": null, 618 | "Type": "Color2" 619 | }, 620 | { 621 | "Id": 57, 622 | "ExtraData1": "552682", 623 | "ExtraData2": null, 624 | "Type": "Color2" 625 | }, 626 | { 627 | "Id": 58, 628 | "ExtraData1": "48206d", 629 | "ExtraData2": null, 630 | "Type": "Color2" 631 | }, 632 | { 633 | "Id": 59, 634 | "ExtraData1": "3a1a58", 635 | "ExtraData2": null, 636 | "Type": "Color2" 637 | }, 638 | { 639 | "Id": 60, 640 | "ExtraData1": "2d1445", 641 | "ExtraData2": null, 642 | "Type": "Color2" 643 | }, 644 | { 645 | "Id": 61, 646 | "ExtraData1": "dea9ff", 647 | "ExtraData2": null, 648 | "Type": "Color2" 649 | }, 650 | { 651 | "Id": 62, 652 | "ExtraData1": "cd9ceb", 653 | "ExtraData2": null, 654 | "Type": "Color2" 655 | }, 656 | { 657 | "Id": 63, 658 | "ExtraData1": "b98dd4", 659 | "ExtraData2": null, 660 | "Type": "Color2" 661 | }, 662 | { 663 | "Id": 64, 664 | "ExtraData1": "a57dbd", 665 | "ExtraData2": null, 666 | "Type": "Color2" 667 | }, 668 | { 669 | "Id": 65, 670 | "ExtraData1": "916ea6", 671 | "ExtraData2": null, 672 | "Type": "Color2" 673 | }, 674 | { 675 | "Id": 66, 676 | "ExtraData1": "7c5f8f", 677 | "ExtraData2": null, 678 | "Type": "Color2" 679 | }, 680 | { 681 | "Id": 67, 682 | "ExtraData1": "685078", 683 | "ExtraData2": null, 684 | "Type": "Color2" 685 | }, 686 | { 687 | "Id": 68, 688 | "ExtraData1": "544061", 689 | "ExtraData2": null, 690 | "Type": "Color2" 691 | }, 692 | { 693 | "Id": 69, 694 | "ExtraData1": "42324c", 695 | "ExtraData2": null, 696 | "Type": "Color2" 697 | }, 698 | { 699 | "Id": 70, 700 | "ExtraData1": "ff98e3", 701 | "ExtraData2": null, 702 | "Type": "Color2" 703 | }, 704 | { 705 | "Id": 71, 706 | "ExtraData1": "eb8cd1", 707 | "ExtraData2": null, 708 | "Type": "Color2" 709 | }, 710 | { 711 | "Id": 72, 712 | "ExtraData1": "d47ebd", 713 | "ExtraData2": null, 714 | "Type": "Color2" 715 | }, 716 | { 717 | "Id": 73, 718 | "ExtraData1": "bd71a8", 719 | "ExtraData2": null, 720 | "Type": "Color2" 721 | }, 722 | { 723 | "Id": 74, 724 | "ExtraData1": "a66394", 725 | "ExtraData2": null, 726 | "Type": "Color2" 727 | }, 728 | { 729 | "Id": 75, 730 | "ExtraData1": "8f557f", 731 | "ExtraData2": null, 732 | "Type": "Color2" 733 | }, 734 | { 735 | "Id": 76, 736 | "ExtraData1": "78486b", 737 | "ExtraData2": null, 738 | "Type": "Color2" 739 | }, 740 | { 741 | "Id": 77, 742 | "ExtraData1": "613a56", 743 | "ExtraData2": null, 744 | "Type": "Color2" 745 | }, 746 | { 747 | "Id": 78, 748 | "ExtraData1": "4c2d44", 749 | "ExtraData2": null, 750 | "Type": "Color2" 751 | }, 752 | { 753 | "Id": 79, 754 | "ExtraData1": "f334bf", 755 | "ExtraData2": null, 756 | "Type": "Color2" 757 | }, 758 | { 759 | "Id": 80, 760 | "ExtraData1": "e030b0", 761 | "ExtraData2": null, 762 | "Type": "Color2" 763 | }, 764 | { 765 | "Id": 81, 766 | "ExtraData1": "ca2b9f", 767 | "ExtraData2": null, 768 | "Type": "Color2" 769 | }, 770 | { 771 | "Id": 82, 772 | "ExtraData1": "b4278e", 773 | "ExtraData2": null, 774 | "Type": "Color2" 775 | }, 776 | { 777 | "Id": 83, 778 | "ExtraData1": "9e227c", 779 | "ExtraData2": null, 780 | "Type": "Color2" 781 | }, 782 | { 783 | "Id": 84, 784 | "ExtraData1": "881d6b", 785 | "ExtraData2": null, 786 | "Type": "Color2" 787 | }, 788 | { 789 | "Id": 85, 790 | "ExtraData1": "72185a", 791 | "ExtraData2": null, 792 | "Type": "Color2" 793 | }, 794 | { 795 | "Id": 86, 796 | "ExtraData1": "5c1449", 797 | "ExtraData2": null, 798 | "Type": "Color2" 799 | }, 800 | { 801 | "Id": 87, 802 | "ExtraData1": "480f39", 803 | "ExtraData2": null, 804 | "Type": "Color2" 805 | }, 806 | { 807 | "Id": 88, 808 | "ExtraData1": "ff2d2d", 809 | "ExtraData2": null, 810 | "Type": "Color2" 811 | }, 812 | { 813 | "Id": 89, 814 | "ExtraData1": "eb2929", 815 | "ExtraData2": null, 816 | "Type": "Color2" 817 | }, 818 | { 819 | "Id": 90, 820 | "ExtraData1": "d42525", 821 | "ExtraData2": null, 822 | "Type": "Color2" 823 | }, 824 | { 825 | "Id": 91, 826 | "ExtraData1": "bd2121", 827 | "ExtraData2": null, 828 | "Type": "Color2" 829 | }, 830 | { 831 | "Id": 92, 832 | "ExtraData1": "a61d1d", 833 | "ExtraData2": null, 834 | "Type": "Color2" 835 | }, 836 | { 837 | "Id": 93, 838 | "ExtraData1": "8f1919", 839 | "ExtraData2": null, 840 | "Type": "Color2" 841 | }, 842 | { 843 | "Id": 94, 844 | "ExtraData1": "781515", 845 | "ExtraData2": null, 846 | "Type": "Color2" 847 | }, 848 | { 849 | "Id": 95, 850 | "ExtraData1": "611111", 851 | "ExtraData2": null, 852 | "Type": "Color2" 853 | }, 854 | { 855 | "Id": 96, 856 | "ExtraData1": "4c0d0d", 857 | "ExtraData2": null, 858 | "Type": "Color2" 859 | }, 860 | { 861 | "Id": 97, 862 | "ExtraData1": "ffb579", 863 | "ExtraData2": null, 864 | "Type": "Color2" 865 | }, 866 | { 867 | "Id": 98, 868 | "ExtraData1": "eba770", 869 | "ExtraData2": null, 870 | "Type": "Color2" 871 | }, 872 | { 873 | "Id": 99, 874 | "ExtraData1": "d49665", 875 | "ExtraData2": null, 876 | "Type": "Color2" 877 | }, 878 | { 879 | "Id": 100, 880 | "ExtraData1": "bd865a", 881 | "ExtraData2": null, 882 | "Type": "Color2" 883 | }, 884 | { 885 | "Id": 101, 886 | "ExtraData1": "a6764f", 887 | "ExtraData2": null, 888 | "Type": "Color2" 889 | }, 890 | { 891 | "Id": 102, 892 | "ExtraData1": "8f6644", 893 | "ExtraData2": null, 894 | "Type": "Color2" 895 | }, 896 | { 897 | "Id": 103, 898 | "ExtraData1": "785539", 899 | "ExtraData2": null, 900 | "Type": "Color2" 901 | }, 902 | { 903 | "Id": 104, 904 | "ExtraData1": "61452e", 905 | "ExtraData2": null, 906 | "Type": "Color2" 907 | }, 908 | { 909 | "Id": 105, 910 | "ExtraData1": "4c3624", 911 | "ExtraData2": null, 912 | "Type": "Color2" 913 | }, 914 | { 915 | "Id": 106, 916 | "ExtraData1": "ec7600", 917 | "ExtraData2": null, 918 | "Type": "Color2" 919 | }, 920 | { 921 | "Id": 107, 922 | "ExtraData1": "d96d00", 923 | "ExtraData2": null, 924 | "Type": "Color2" 925 | }, 926 | { 927 | "Id": 108, 928 | "ExtraData1": "c46200", 929 | "ExtraData2": null, 930 | "Type": "Color2" 931 | }, 932 | { 933 | "Id": 109, 934 | "ExtraData1": "af5700", 935 | "ExtraData2": null, 936 | "Type": "Color2" 937 | }, 938 | { 939 | "Id": 110, 940 | "ExtraData1": "9a4d00", 941 | "ExtraData2": null, 942 | "Type": "Color2" 943 | }, 944 | { 945 | "Id": 111, 946 | "ExtraData1": "844200", 947 | "ExtraData2": null, 948 | "Type": "Color2" 949 | }, 950 | { 951 | "Id": 112, 952 | "ExtraData1": "6f3800", 953 | "ExtraData2": null, 954 | "Type": "Color2" 955 | }, 956 | { 957 | "Id": 113, 958 | "ExtraData1": "5a2d00", 959 | "ExtraData2": null, 960 | "Type": "Color2" 961 | }, 962 | { 963 | "Id": 114, 964 | "ExtraData1": "462300", 965 | "ExtraData2": null, 966 | "Type": "Color2" 967 | }, 968 | { 969 | "Id": 115, 970 | "ExtraData1": "ffd601", 971 | "ExtraData2": null, 972 | "Type": "Color2" 973 | }, 974 | { 975 | "Id": 116, 976 | "ExtraData1": "ebc501", 977 | "ExtraData2": null, 978 | "Type": "Color2" 979 | }, 980 | { 981 | "Id": 117, 982 | "ExtraData1": "d4b201", 983 | "ExtraData2": null, 984 | "Type": "Color2" 985 | }, 986 | { 987 | "Id": 118, 988 | "ExtraData1": "bd9f01", 989 | "ExtraData2": null, 990 | "Type": "Color2" 991 | }, 992 | { 993 | "Id": 119, 994 | "ExtraData1": "a68b01", 995 | "ExtraData2": null, 996 | "Type": "Color2" 997 | }, 998 | { 999 | "Id": 120, 1000 | "ExtraData1": "8f7801", 1001 | "ExtraData2": null, 1002 | "Type": "Color2" 1003 | }, 1004 | { 1005 | "Id": 121, 1006 | "ExtraData1": "786500", 1007 | "ExtraData2": null, 1008 | "Type": "Color2" 1009 | }, 1010 | { 1011 | "Id": 122, 1012 | "ExtraData1": "615100", 1013 | "ExtraData2": null, 1014 | "Type": "Color2" 1015 | }, 1016 | { 1017 | "Id": 123, 1018 | "ExtraData1": "4c4000", 1019 | "ExtraData2": null, 1020 | "Type": "Color2" 1021 | }, 1022 | { 1023 | "Id": 124, 1024 | "ExtraData1": "c3aa6e", 1025 | "ExtraData2": null, 1026 | "Type": "Color2" 1027 | }, 1028 | { 1029 | "Id": 125, 1030 | "ExtraData1": "b49d65", 1031 | "ExtraData2": null, 1032 | "Type": "Color2" 1033 | }, 1034 | { 1035 | "Id": 126, 1036 | "ExtraData1": "a28d5b", 1037 | "ExtraData2": null, 1038 | "Type": "Color2" 1039 | }, 1040 | { 1041 | "Id": 127, 1042 | "ExtraData1": "917e52", 1043 | "ExtraData2": null, 1044 | "Type": "Color2" 1045 | }, 1046 | { 1047 | "Id": 128, 1048 | "ExtraData1": "7f6f48", 1049 | "ExtraData2": null, 1050 | "Type": "Color2" 1051 | }, 1052 | { 1053 | "Id": 129, 1054 | "ExtraData1": "6d5f3e", 1055 | "ExtraData2": null, 1056 | "Type": "Color2" 1057 | }, 1058 | { 1059 | "Id": 130, 1060 | "ExtraData1": "5c5034", 1061 | "ExtraData2": null, 1062 | "Type": "Color2" 1063 | }, 1064 | { 1065 | "Id": 131, 1066 | "ExtraData1": "4a412a", 1067 | "ExtraData2": null, 1068 | "Type": "Color2" 1069 | }, 1070 | { 1071 | "Id": 132, 1072 | "ExtraData1": "3a3321", 1073 | "ExtraData2": null, 1074 | "Type": "Color2" 1075 | }, 1076 | { 1077 | "Id": 133, 1078 | "ExtraData1": "977641", 1079 | "ExtraData2": null, 1080 | "Type": "Color2" 1081 | }, 1082 | { 1083 | "Id": 134, 1084 | "ExtraData1": "8b6d3c", 1085 | "ExtraData2": null, 1086 | "Type": "Color2" 1087 | }, 1088 | { 1089 | "Id": 135, 1090 | "ExtraData1": "7e6236", 1091 | "ExtraData2": null, 1092 | "Type": "Color2" 1093 | }, 1094 | { 1095 | "Id": 136, 1096 | "ExtraData1": "705730", 1097 | "ExtraData2": null, 1098 | "Type": "Color2" 1099 | }, 1100 | { 1101 | "Id": 137, 1102 | "ExtraData1": "624d2a", 1103 | "ExtraData2": null, 1104 | "Type": "Color2" 1105 | }, 1106 | { 1107 | "Id": 138, 1108 | "ExtraData1": "554224", 1109 | "ExtraData2": null, 1110 | "Type": "Color2" 1111 | }, 1112 | { 1113 | "Id": 139, 1114 | "ExtraData1": "47381f", 1115 | "ExtraData2": null, 1116 | "Type": "Color2" 1117 | }, 1118 | { 1119 | "Id": 140, 1120 | "ExtraData1": "392d19", 1121 | "ExtraData2": null, 1122 | "Type": "Color2" 1123 | }, 1124 | { 1125 | "Id": 141, 1126 | "ExtraData1": "2d2313", 1127 | "ExtraData2": null, 1128 | "Type": "Color2" 1129 | }, 1130 | { 1131 | "Id": 142, 1132 | "ExtraData1": "c0c0c0", 1133 | "ExtraData2": null, 1134 | "Type": "Color2" 1135 | }, 1136 | { 1137 | "Id": 143, 1138 | "ExtraData1": "b1b1b1", 1139 | "ExtraData2": null, 1140 | "Type": "Color2" 1141 | }, 1142 | { 1143 | "Id": 144, 1144 | "ExtraData1": "a0a0a0", 1145 | "ExtraData2": null, 1146 | "Type": "Color2" 1147 | }, 1148 | { 1149 | "Id": 145, 1150 | "ExtraData1": "8e8e8e", 1151 | "ExtraData2": null, 1152 | "Type": "Color2" 1153 | }, 1154 | { 1155 | "Id": 146, 1156 | "ExtraData1": "7d7d7d", 1157 | "ExtraData2": null, 1158 | "Type": "Color2" 1159 | }, 1160 | { 1161 | "Id": 3, 1162 | "ExtraData1": "6c6c6c", 1163 | "ExtraData2": null, 1164 | "Type": "Color2" 1165 | }, 1166 | { 1167 | "Id": 4, 1168 | "ExtraData1": "5a5a5a", 1169 | "ExtraData2": null, 1170 | "Type": "Color2" 1171 | }, 1172 | { 1173 | "Id": 5, 1174 | "ExtraData1": "494949", 1175 | "ExtraData2": null, 1176 | "Type": "Color2" 1177 | }, 1178 | { 1179 | "Id": 6, 1180 | "ExtraData1": "393939", 1181 | "ExtraData2": null, 1182 | "Type": "Color2" 1183 | }, 1184 | { 1185 | "Id": 7, 1186 | "ExtraData1": "7a7a7a", 1187 | "ExtraData2": null, 1188 | "Type": "Color2" 1189 | }, 1190 | { 1191 | "Id": 8, 1192 | "ExtraData1": "707070", 1193 | "ExtraData2": null, 1194 | "Type": "Color2" 1195 | }, 1196 | { 1197 | "Id": 9, 1198 | "ExtraData1": "656565", 1199 | "ExtraData2": null, 1200 | "Type": "Color2" 1201 | }, 1202 | { 1203 | "Id": 10, 1204 | "ExtraData1": "5a5a5a", 1205 | "ExtraData2": null, 1206 | "Type": "Color2" 1207 | }, 1208 | { 1209 | "Id": 11, 1210 | "ExtraData1": "4f4f4f", 1211 | "ExtraData2": null, 1212 | "Type": "Color2" 1213 | }, 1214 | { 1215 | "Id": 12, 1216 | "ExtraData1": "444444", 1217 | "ExtraData2": null, 1218 | "Type": "Color2" 1219 | }, 1220 | { 1221 | "Id": 13, 1222 | "ExtraData1": "393939", 1223 | "ExtraData2": null, 1224 | "Type": "Color2" 1225 | }, 1226 | { 1227 | "Id": 14, 1228 | "ExtraData1": "2e2e2e", 1229 | "ExtraData2": null, 1230 | "Type": "Color2" 1231 | }, 1232 | { 1233 | "Id": 15, 1234 | "ExtraData1": "242424", 1235 | "ExtraData2": null, 1236 | "Type": "Color2" 1237 | }, 1238 | { 1239 | "Id": 1, 1240 | "ExtraData1": "ffffff", 1241 | "ExtraData2": null, 1242 | "Type": "Color3" 1243 | }, 1244 | { 1245 | "Id": 2, 1246 | "ExtraData1": "e5e5e5", 1247 | "ExtraData2": null, 1248 | "Type": "Color3" 1249 | }, 1250 | { 1251 | "Id": 3, 1252 | "ExtraData1": "bfbfbf", 1253 | "ExtraData2": null, 1254 | "Type": "Color3" 1255 | }, 1256 | { 1257 | "Id": 4, 1258 | "ExtraData1": "999999", 1259 | "ExtraData2": null, 1260 | "Type": "Color3" 1261 | }, 1262 | { 1263 | "Id": 5, 1264 | "ExtraData1": "737373", 1265 | "ExtraData2": null, 1266 | "Type": "Color3" 1267 | }, 1268 | { 1269 | "Id": 6, 1270 | "ExtraData1": "4c4c4c", 1271 | "ExtraData2": null, 1272 | "Type": "Color3" 1273 | }, 1274 | { 1275 | "Id": 7, 1276 | "ExtraData1": "589a00", 1277 | "ExtraData2": null, 1278 | "Type": "Color3" 1279 | }, 1280 | { 1281 | "Id": 8, 1282 | "ExtraData1": "4f8a00", 1283 | "ExtraData2": null, 1284 | "Type": "Color3" 1285 | }, 1286 | { 1287 | "Id": 9, 1288 | "ExtraData1": "427300", 1289 | "ExtraData2": null, 1290 | "Type": "Color3" 1291 | }, 1292 | { 1293 | "Id": 10, 1294 | "ExtraData1": "355c00", 1295 | "ExtraData2": null, 1296 | "Type": "Color3" 1297 | }, 1298 | { 1299 | "Id": 11, 1300 | "ExtraData1": "284500", 1301 | "ExtraData2": null, 1302 | "Type": "Color3" 1303 | }, 1304 | { 1305 | "Id": 12, 1306 | "ExtraData1": "1a2e00", 1307 | "ExtraData2": null, 1308 | "Type": "Color3" 1309 | }, 1310 | { 1311 | "Id": 13, 1312 | "ExtraData1": "84de00", 1313 | "ExtraData2": null, 1314 | "Type": "Color3" 1315 | }, 1316 | { 1317 | "Id": 14, 1318 | "ExtraData1": "77c700", 1319 | "ExtraData2": null, 1320 | "Type": "Color3" 1321 | }, 1322 | { 1323 | "Id": 15, 1324 | "ExtraData1": "63a600", 1325 | "ExtraData2": null, 1326 | "Type": "Color3" 1327 | }, 1328 | { 1329 | "Id": 16, 1330 | "ExtraData1": "4f8500", 1331 | "ExtraData2": null, 1332 | "Type": "Color3" 1333 | }, 1334 | { 1335 | "Id": 17, 1336 | "ExtraData1": "3c6400", 1337 | "ExtraData2": null, 1338 | "Type": "Color3" 1339 | }, 1340 | { 1341 | "Id": 18, 1342 | "ExtraData1": "274200", 1343 | "ExtraData2": null, 1344 | "Type": "Color3" 1345 | }, 1346 | { 1347 | "Id": 19, 1348 | "ExtraData1": "c2eaff", 1349 | "ExtraData2": null, 1350 | "Type": "Color3" 1351 | }, 1352 | { 1353 | "Id": 20, 1354 | "ExtraData1": "aed2e5", 1355 | "ExtraData2": null, 1356 | "Type": "Color3" 1357 | }, 1358 | { 1359 | "Id": 21, 1360 | "ExtraData1": "91afbf", 1361 | "ExtraData2": null, 1362 | "Type": "Color3" 1363 | }, 1364 | { 1365 | "Id": 22, 1366 | "ExtraData1": "748c99", 1367 | "ExtraData2": null, 1368 | "Type": "Color3" 1369 | }, 1370 | { 1371 | "Id": 23, 1372 | "ExtraData1": "576a73", 1373 | "ExtraData2": null, 1374 | "Type": "Color3" 1375 | }, 1376 | { 1377 | "Id": 24, 1378 | "ExtraData1": "3a464c", 1379 | "ExtraData2": null, 1380 | "Type": "Color3" 1381 | }, 1382 | { 1383 | "Id": 25, 1384 | "ExtraData1": "50c1fb", 1385 | "ExtraData2": null, 1386 | "Type": "Color3" 1387 | }, 1388 | { 1389 | "Id": 26, 1390 | "ExtraData1": "48ade1", 1391 | "ExtraData2": null, 1392 | "Type": "Color3" 1393 | }, 1394 | { 1395 | "Id": 27, 1396 | "ExtraData1": "3c91bc", 1397 | "ExtraData2": null, 1398 | "Type": "Color3" 1399 | }, 1400 | { 1401 | "Id": 28, 1402 | "ExtraData1": "307497", 1403 | "ExtraData2": null, 1404 | "Type": "Color3" 1405 | }, 1406 | { 1407 | "Id": 29, 1408 | "ExtraData1": "245771", 1409 | "ExtraData2": null, 1410 | "Type": "Color3" 1411 | }, 1412 | { 1413 | "Id": 30, 1414 | "ExtraData1": "183a4b", 1415 | "ExtraData2": null, 1416 | "Type": "Color3" 1417 | }, 1418 | { 1419 | "Id": 31, 1420 | "ExtraData1": "006fcf", 1421 | "ExtraData2": null, 1422 | "Type": "Color3" 1423 | }, 1424 | { 1425 | "Id": 32, 1426 | "ExtraData1": "0064ba", 1427 | "ExtraData2": null, 1428 | "Type": "Color3" 1429 | }, 1430 | { 1431 | "Id": 33, 1432 | "ExtraData1": "00539b", 1433 | "ExtraData2": null, 1434 | "Type": "Color3" 1435 | }, 1436 | { 1437 | "Id": 34, 1438 | "ExtraData1": "00437c", 1439 | "ExtraData2": null, 1440 | "Type": "Color3" 1441 | }, 1442 | { 1443 | "Id": 35, 1444 | "ExtraData1": "00325d", 1445 | "ExtraData2": null, 1446 | "Type": "Color3" 1447 | }, 1448 | { 1449 | "Id": 36, 1450 | "ExtraData1": "00213e", 1451 | "ExtraData2": null, 1452 | "Type": "Color3" 1453 | }, 1454 | { 1455 | "Id": 37, 1456 | "ExtraData1": "9844e7", 1457 | "ExtraData2": null, 1458 | "Type": "Color3" 1459 | }, 1460 | { 1461 | "Id": 38, 1462 | "ExtraData1": "893dcf", 1463 | "ExtraData2": null, 1464 | "Type": "Color3" 1465 | }, 1466 | { 1467 | "Id": 39, 1468 | "ExtraData1": "7233ad", 1469 | "ExtraData2": null, 1470 | "Type": "Color3" 1471 | }, 1472 | { 1473 | "Id": 40, 1474 | "ExtraData1": "5b298b", 1475 | "ExtraData2": null, 1476 | "Type": "Color3" 1477 | }, 1478 | { 1479 | "Id": 41, 1480 | "ExtraData1": "451f68", 1481 | "ExtraData2": null, 1482 | "Type": "Color3" 1483 | }, 1484 | { 1485 | "Id": 42, 1486 | "ExtraData1": "2d1445", 1487 | "ExtraData2": null, 1488 | "Type": "Color3" 1489 | }, 1490 | { 1491 | "Id": 43, 1492 | "ExtraData1": "dea9ff", 1493 | "ExtraData2": null, 1494 | "Type": "Color3" 1495 | }, 1496 | { 1497 | "Id": 44, 1498 | "ExtraData1": "c798e5", 1499 | "ExtraData2": null, 1500 | "Type": "Color3" 1501 | }, 1502 | { 1503 | "Id": 45, 1504 | "ExtraData1": "a67fbf", 1505 | "ExtraData2": null, 1506 | "Type": "Color3" 1507 | }, 1508 | { 1509 | "Id": 46, 1510 | "ExtraData1": "856599", 1511 | "ExtraData2": null, 1512 | "Type": "Color3" 1513 | }, 1514 | { 1515 | "Id": 47, 1516 | "ExtraData1": "644c73", 1517 | "ExtraData2": null, 1518 | "Type": "Color3" 1519 | }, 1520 | { 1521 | "Id": 48, 1522 | "ExtraData1": "42324c", 1523 | "ExtraData2": null, 1524 | "Type": "Color3" 1525 | }, 1526 | { 1527 | "Id": 49, 1528 | "ExtraData1": "ff98e3", 1529 | "ExtraData2": null, 1530 | "Type": "Color3" 1531 | }, 1532 | { 1533 | "Id": 50, 1534 | "ExtraData1": "e589cc", 1535 | "ExtraData2": null, 1536 | "Type": "Color3" 1537 | }, 1538 | { 1539 | "Id": 51, 1540 | "ExtraData1": "bf72aa", 1541 | "ExtraData2": null, 1542 | "Type": "Color3" 1543 | }, 1544 | { 1545 | "Id": 52, 1546 | "ExtraData1": "995b88", 1547 | "ExtraData2": null, 1548 | "Type": "Color3" 1549 | }, 1550 | { 1551 | "Id": 53, 1552 | "ExtraData1": "734566", 1553 | "ExtraData2": null, 1554 | "Type": "Color3" 1555 | }, 1556 | { 1557 | "Id": 54, 1558 | "ExtraData1": "4c2d44", 1559 | "ExtraData2": null, 1560 | "Type": "Color3" 1561 | }, 1562 | { 1563 | "Id": 55, 1564 | "ExtraData1": "f334bf", 1565 | "ExtraData2": null, 1566 | "Type": "Color3" 1567 | }, 1568 | { 1569 | "Id": 56, 1570 | "ExtraData1": "da2fac", 1571 | "ExtraData2": null, 1572 | "Type": "Color3" 1573 | }, 1574 | { 1575 | "Id": 57, 1576 | "ExtraData1": "b6278f", 1577 | "ExtraData2": null, 1578 | "Type": "Color3" 1579 | }, 1580 | { 1581 | "Id": 58, 1582 | "ExtraData1": "921f73", 1583 | "ExtraData2": null, 1584 | "Type": "Color3" 1585 | }, 1586 | { 1587 | "Id": 59, 1588 | "ExtraData1": "6e1756", 1589 | "ExtraData2": null, 1590 | "Type": "Color3" 1591 | }, 1592 | { 1593 | "Id": 60, 1594 | "ExtraData1": "480f39", 1595 | "ExtraData2": null, 1596 | "Type": "Color3" 1597 | }, 1598 | { 1599 | "Id": 61, 1600 | "ExtraData1": "ff2d2d", 1601 | "ExtraData2": null, 1602 | "Type": "Color3" 1603 | }, 1604 | { 1605 | "Id": 62, 1606 | "ExtraData1": "e52828", 1607 | "ExtraData2": null, 1608 | "Type": "Color3" 1609 | }, 1610 | { 1611 | "Id": 63, 1612 | "ExtraData1": "bf2222", 1613 | "ExtraData2": null, 1614 | "Type": "Color3" 1615 | }, 1616 | { 1617 | "Id": 64, 1618 | "ExtraData1": "991b1b", 1619 | "ExtraData2": null, 1620 | "Type": "Color3" 1621 | }, 1622 | { 1623 | "Id": 65, 1624 | "ExtraData1": "731414", 1625 | "ExtraData2": null, 1626 | "Type": "Color3" 1627 | }, 1628 | { 1629 | "Id": 66, 1630 | "ExtraData1": "4c0d0d", 1631 | "ExtraData2": null, 1632 | "Type": "Color3" 1633 | }, 1634 | { 1635 | "Id": 67, 1636 | "ExtraData1": "ffb579", 1637 | "ExtraData2": null, 1638 | "Type": "Color3" 1639 | }, 1640 | { 1641 | "Id": 68, 1642 | "ExtraData1": "e5a36d", 1643 | "ExtraData2": null, 1644 | "Type": "Color3" 1645 | }, 1646 | { 1647 | "Id": 69, 1648 | "ExtraData1": "bf885b", 1649 | "ExtraData2": null, 1650 | "Type": "Color3" 1651 | }, 1652 | { 1653 | "Id": 70, 1654 | "ExtraData1": "996d49", 1655 | "ExtraData2": null, 1656 | "Type": "Color3" 1657 | }, 1658 | { 1659 | "Id": 71, 1660 | "ExtraData1": "735237", 1661 | "ExtraData2": null, 1662 | "Type": "Color3" 1663 | }, 1664 | { 1665 | "Id": 72, 1666 | "ExtraData1": "4c3624", 1667 | "ExtraData2": null, 1668 | "Type": "Color3" 1669 | }, 1670 | { 1671 | "Id": 73, 1672 | "ExtraData1": "ec7600", 1673 | "ExtraData2": null, 1674 | "Type": "Color3" 1675 | }, 1676 | { 1677 | "Id": 74, 1678 | "ExtraData1": "d46a00", 1679 | "ExtraData2": null, 1680 | "Type": "Color3" 1681 | }, 1682 | { 1683 | "Id": 75, 1684 | "ExtraData1": "b15800", 1685 | "ExtraData2": null, 1686 | "Type": "Color3" 1687 | }, 1688 | { 1689 | "Id": 76, 1690 | "ExtraData1": "8e4700", 1691 | "ExtraData2": null, 1692 | "Type": "Color3" 1693 | }, 1694 | { 1695 | "Id": 77, 1696 | "ExtraData1": "6a3500", 1697 | "ExtraData2": null, 1698 | "Type": "Color3" 1699 | }, 1700 | { 1701 | "Id": 78, 1702 | "ExtraData1": "462300", 1703 | "ExtraData2": null, 1704 | "Type": "Color3" 1705 | }, 1706 | { 1707 | "Id": 79, 1708 | "ExtraData1": "ffd601", 1709 | "ExtraData2": null, 1710 | "Type": "Color3" 1711 | }, 1712 | { 1713 | "Id": 80, 1714 | "ExtraData1": "e5c001", 1715 | "ExtraData2": null, 1716 | "Type": "Color3" 1717 | }, 1718 | { 1719 | "Id": 81, 1720 | "ExtraData1": "bfa001", 1721 | "ExtraData2": null, 1722 | "Type": "Color3" 1723 | }, 1724 | { 1725 | "Id": 82, 1726 | "ExtraData1": "998001", 1727 | "ExtraData2": null, 1728 | "Type": "Color3" 1729 | }, 1730 | { 1731 | "Id": 83, 1732 | "ExtraData1": "736100", 1733 | "ExtraData2": null, 1734 | "Type": "Color3" 1735 | }, 1736 | { 1737 | "Id": 84, 1738 | "ExtraData1": "4c4000", 1739 | "ExtraData2": null, 1740 | "Type": "Color3" 1741 | }, 1742 | { 1743 | "Id": 85, 1744 | "ExtraData1": "c3aa6e", 1745 | "ExtraData2": null, 1746 | "Type": "Color3" 1747 | }, 1748 | { 1749 | "Id": 86, 1750 | "ExtraData1": "af9963", 1751 | "ExtraData2": null, 1752 | "Type": "Color3" 1753 | }, 1754 | { 1755 | "Id": 87, 1756 | "ExtraData1": "927f52", 1757 | "ExtraData2": null, 1758 | "Type": "Color3" 1759 | }, 1760 | { 1761 | "Id": 88, 1762 | "ExtraData1": "756642", 1763 | "ExtraData2": null, 1764 | "Type": "Color3" 1765 | }, 1766 | { 1767 | "Id": 89, 1768 | "ExtraData1": "584d32", 1769 | "ExtraData2": null, 1770 | "Type": "Color3" 1771 | }, 1772 | { 1773 | "Id": 90, 1774 | "ExtraData1": "3a3321", 1775 | "ExtraData2": null, 1776 | "Type": "Color3" 1777 | }, 1778 | { 1779 | "Id": 91, 1780 | "ExtraData1": "977641", 1781 | "ExtraData2": null, 1782 | "Type": "Color3" 1783 | }, 1784 | { 1785 | "Id": 92, 1786 | "ExtraData1": "886a3a", 1787 | "ExtraData2": null, 1788 | "Type": "Color3" 1789 | }, 1790 | { 1791 | "Id": 93, 1792 | "ExtraData1": "715831", 1793 | "ExtraData2": null, 1794 | "Type": "Color3" 1795 | }, 1796 | { 1797 | "Id": 94, 1798 | "ExtraData1": "5b4727", 1799 | "ExtraData2": null, 1800 | "Type": "Color3" 1801 | }, 1802 | { 1803 | "Id": 95, 1804 | "ExtraData1": "44351d", 1805 | "ExtraData2": null, 1806 | "Type": "Color3" 1807 | }, 1808 | { 1809 | "Id": 96, 1810 | "ExtraData1": "2d2313", 1811 | "ExtraData2": null, 1812 | "Type": "Color3" 1813 | }, 1814 | { 1815 | "Id": 97, 1816 | "ExtraData1": "c0c0c0", 1817 | "ExtraData2": null, 1818 | "Type": "Color3" 1819 | }, 1820 | { 1821 | "Id": 98, 1822 | "ExtraData1": "acacac", 1823 | "ExtraData2": null, 1824 | "Type": "Color3" 1825 | }, 1826 | { 1827 | "Id": 99, 1828 | "ExtraData1": "909090", 1829 | "ExtraData2": null, 1830 | "Type": "Color3" 1831 | }, 1832 | { 1833 | "Id": 100, 1834 | "ExtraData1": "737373", 1835 | "ExtraData2": null, 1836 | "Type": "Color3" 1837 | }, 1838 | { 1839 | "Id": 101, 1840 | "ExtraData1": "575757", 1841 | "ExtraData2": null, 1842 | "Type": "Color3" 1843 | }, 1844 | { 1845 | "Id": 102, 1846 | "ExtraData1": "393939", 1847 | "ExtraData2": null, 1848 | "Type": "Color3" 1849 | }, 1850 | { 1851 | "Id": 103, 1852 | "ExtraData1": "7a7a7a", 1853 | "ExtraData2": null, 1854 | "Type": "Color3" 1855 | }, 1856 | { 1857 | "Id": 104, 1858 | "ExtraData1": "6e6e6e", 1859 | "ExtraData2": null, 1860 | "Type": "Color3" 1861 | }, 1862 | { 1863 | "Id": 105, 1864 | "ExtraData1": "5b5b5b", 1865 | "ExtraData2": null, 1866 | "Type": "Color3" 1867 | }, 1868 | { 1869 | "Id": 106, 1870 | "ExtraData1": "494949", 1871 | "ExtraData2": null, 1872 | "Type": "Color3" 1873 | }, 1874 | { 1875 | "Id": 107, 1876 | "ExtraData1": "373737", 1877 | "ExtraData2": null, 1878 | "Type": "Color3" 1879 | }, 1880 | { 1881 | "Id": 108, 1882 | "ExtraData1": "242424", 1883 | "ExtraData2": null, 1884 | "Type": "Color3" 1885 | }, 1886 | { 1887 | "Id": 23, 1888 | "ExtraData1": "symbol_background_3_part2.png", 1889 | "ExtraData2": "symbol_background_3_part1.png", 1890 | "Type": "Symbol" 1891 | }, 1892 | { 1893 | "Id": 24, 1894 | "ExtraData1": "symbol_ball_1_part2.png", 1895 | "ExtraData2": "symbol_ball_1_part1.png", 1896 | "Type": "Symbol" 1897 | }, 1898 | { 1899 | "Id": 25, 1900 | "ExtraData1": "symbol_ball_2_part2.png", 1901 | "ExtraData2": "symbol_ball_2_part1.png", 1902 | "Type": "Symbol" 1903 | }, 1904 | { 1905 | "Id": 26, 1906 | "ExtraData1": "symbol_bobba.png", 1907 | "ExtraData2": null, 1908 | "Type": "Symbol" 1909 | }, 1910 | { 1911 | "Id": 27, 1912 | "ExtraData1": "symbol_bomb_part2.png", 1913 | "ExtraData2": "symbol_bomb_part1.png", 1914 | "Type": "Symbol" 1915 | }, 1916 | { 1917 | "Id": 28, 1918 | "ExtraData1": "symbol_bow.png", 1919 | "ExtraData2": null, 1920 | "Type": "Symbol" 1921 | }, 1922 | { 1923 | "Id": 29, 1924 | "ExtraData1": "symbol_box_1.png", 1925 | "ExtraData2": null, 1926 | "Type": "Symbol" 1927 | }, 1928 | { 1929 | "Id": 30, 1930 | "ExtraData1": "symbol_box_2.png", 1931 | "ExtraData2": null, 1932 | "Type": "Symbol" 1933 | }, 1934 | { 1935 | "Id": 31, 1936 | "ExtraData1": "symbol_bunting_1.png", 1937 | "ExtraData2": null, 1938 | "Type": "Symbol" 1939 | }, 1940 | { 1941 | "Id": 32, 1942 | "ExtraData1": "symbol_bunting_2.png", 1943 | "ExtraData2": null, 1944 | "Type": "Symbol" 1945 | }, 1946 | { 1947 | "Id": 33, 1948 | "ExtraData1": "symbol_butterfly_part2.png", 1949 | "ExtraData2": "symbol_butterfly_part1.png", 1950 | "Type": "Symbol" 1951 | }, 1952 | { 1953 | "Id": 34, 1954 | "ExtraData1": "symbol_cowskull_part2.png", 1955 | "ExtraData2": "symbol_cowskull_part1.png", 1956 | "Type": "Symbol" 1957 | }, 1958 | { 1959 | "Id": 35, 1960 | "ExtraData1": "symbol_cross.png", 1961 | "ExtraData2": null, 1962 | "Type": "Symbol" 1963 | }, 1964 | { 1965 | "Id": 36, 1966 | "ExtraData1": "symbol_diamond.png", 1967 | "ExtraData2": null, 1968 | "Type": "Symbol" 1969 | }, 1970 | { 1971 | "Id": 37, 1972 | "ExtraData1": "symbol_diploma_part2.png", 1973 | "ExtraData2": "symbol_diploma_part1.png", 1974 | "Type": "Symbol" 1975 | }, 1976 | { 1977 | "Id": 38, 1978 | "ExtraData1": "symbol_eyeball_part2.png", 1979 | "ExtraData2": "symbol_eyeball_part1.png", 1980 | "Type": "Symbol" 1981 | }, 1982 | { 1983 | "Id": 39, 1984 | "ExtraData1": "symbol_fist.png", 1985 | "ExtraData2": null, 1986 | "Type": "Symbol" 1987 | }, 1988 | { 1989 | "Id": 40, 1990 | "ExtraData1": "symbol_flame_1.png", 1991 | "ExtraData2": null, 1992 | "Type": "Symbol" 1993 | }, 1994 | { 1995 | "Id": 41, 1996 | "ExtraData1": "symbol_flame_2.png", 1997 | "ExtraData2": null, 1998 | "Type": "Symbol" 1999 | }, 2000 | { 2001 | "Id": 42, 2002 | "ExtraData1": "symbol_flash.png", 2003 | "ExtraData2": null, 2004 | "Type": "Symbol" 2005 | }, 2006 | { 2007 | "Id": 43, 2008 | "ExtraData1": "symbol_flower_1_part2.png", 2009 | "ExtraData2": "symbol_flower_1_part1.png", 2010 | "Type": "Symbol" 2011 | }, 2012 | { 2013 | "Id": 44, 2014 | "ExtraData1": "symbol_flower_2.png", 2015 | "ExtraData2": null, 2016 | "Type": "Symbol" 2017 | }, 2018 | { 2019 | "Id": 45, 2020 | "ExtraData1": "symbol_flower_3.png", 2021 | "ExtraData2": null, 2022 | "Type": "Symbol" 2023 | }, 2024 | { 2025 | "Id": 46, 2026 | "ExtraData1": "symbol_flower_4.png", 2027 | "ExtraData2": null, 2028 | "Type": "Symbol" 2029 | }, 2030 | { 2031 | "Id": 47, 2032 | "ExtraData1": "symbol_football.png", 2033 | "ExtraData2": null, 2034 | "Type": "Symbol" 2035 | }, 2036 | { 2037 | "Id": 48, 2038 | "ExtraData1": "symbol_heart_1_part2.png", 2039 | "ExtraData2": "symbol_heart_1_part1.png", 2040 | "Type": "Symbol" 2041 | }, 2042 | { 2043 | "Id": 49, 2044 | "ExtraData1": "symbol_heart_2_part2.png", 2045 | "ExtraData2": "symbol_heart_2_part1.png", 2046 | "Type": "Symbol" 2047 | }, 2048 | { 2049 | "Id": 50, 2050 | "ExtraData1": "symbol_jingjang_part2.png", 2051 | "ExtraData2": "symbol_jingjang_part1.png", 2052 | "Type": "Symbol" 2053 | }, 2054 | { 2055 | "Id": 51, 2056 | "ExtraData1": "symbol_lips_part2.png", 2057 | "ExtraData2": "symbol_lips_part1.png", 2058 | "Type": "Symbol" 2059 | }, 2060 | { 2061 | "Id": 52, 2062 | "ExtraData1": "symbol_note.png", 2063 | "ExtraData2": null, 2064 | "Type": "Symbol" 2065 | }, 2066 | { 2067 | "Id": 53, 2068 | "ExtraData1": "symbol_peace.png", 2069 | "ExtraData2": null, 2070 | "Type": "Symbol" 2071 | }, 2072 | { 2073 | "Id": 54, 2074 | "ExtraData1": "symbol_planet_part2.png", 2075 | "ExtraData2": "symbol_planet_part1.png", 2076 | "Type": "Symbol" 2077 | }, 2078 | { 2079 | "Id": 55, 2080 | "ExtraData1": "symbol_rainbow_part2.png", 2081 | "ExtraData2": "symbol_rainbow_part1.png", 2082 | "Type": "Symbol" 2083 | }, 2084 | { 2085 | "Id": 56, 2086 | "ExtraData1": "symbol_rosete.png", 2087 | "ExtraData2": null, 2088 | "Type": "Symbol" 2089 | }, 2090 | { 2091 | "Id": 57, 2092 | "ExtraData1": "symbol_shape.png", 2093 | "ExtraData2": null, 2094 | "Type": "Symbol" 2095 | }, 2096 | { 2097 | "Id": 58, 2098 | "ExtraData1": "symbol_star_1.png", 2099 | "ExtraData2": null, 2100 | "Type": "Symbol" 2101 | }, 2102 | { 2103 | "Id": 59, 2104 | "ExtraData1": "symbol_star_2.png", 2105 | "ExtraData2": null, 2106 | "Type": "Symbol" 2107 | }, 2108 | { 2109 | "Id": 60, 2110 | "ExtraData1": "symbol_sword_1_part2.png", 2111 | "ExtraData2": "symbol_sword_1_part1.png", 2112 | "Type": "Symbol" 2113 | }, 2114 | { 2115 | "Id": 61, 2116 | "ExtraData1": "symbol_sword_2_part2.png", 2117 | "ExtraData2": "symbol_sword_2_part1.png", 2118 | "Type": "Symbol" 2119 | }, 2120 | { 2121 | "Id": 62, 2122 | "ExtraData1": "symbol_sword_3_part2.png", 2123 | "ExtraData2": "symbol_sword_3_part1.png", 2124 | "Type": "Symbol" 2125 | }, 2126 | { 2127 | "Id": 63, 2128 | "ExtraData1": "symbol_wings_1.png", 2129 | "ExtraData2": null, 2130 | "Type": "Symbol" 2131 | }, 2132 | { 2133 | "Id": 64, 2134 | "ExtraData1": "symbol_wings_2.png", 2135 | "ExtraData2": null, 2136 | "Type": "Symbol" 2137 | }, 2138 | { 2139 | "Id": 69, 2140 | "ExtraData1": "symbol_arrow_down.png", 2141 | "ExtraData2": null, 2142 | "Type": "Symbol" 2143 | }, 2144 | { 2145 | "Id": 70, 2146 | "ExtraData1": "symbol_arrow_left.png", 2147 | "ExtraData2": null, 2148 | "Type": "Symbol" 2149 | }, 2150 | { 2151 | "Id": 71, 2152 | "ExtraData1": "symbol_arrow_right.png", 2153 | "ExtraData2": null, 2154 | "Type": "Symbol" 2155 | }, 2156 | { 2157 | "Id": 72, 2158 | "ExtraData1": "symbol_arrow_up.png", 2159 | "ExtraData2": null, 2160 | "Type": "Symbol" 2161 | }, 2162 | { 2163 | "Id": 73, 2164 | "ExtraData1": "symbol_arrowbig_up.png", 2165 | "ExtraData2": null, 2166 | "Type": "Symbol" 2167 | }, 2168 | { 2169 | "Id": 74, 2170 | "ExtraData1": "symbol_axe_part2.png", 2171 | "ExtraData2": "symbol_axe_part1.png", 2172 | "Type": "Symbol" 2173 | }, 2174 | { 2175 | "Id": 75, 2176 | "ExtraData1": "symbol_bug_part2.png", 2177 | "ExtraData2": "symbol_bug_part1.png", 2178 | "Type": "Symbol" 2179 | }, 2180 | { 2181 | "Id": 76, 2182 | "ExtraData1": "symbol_capsbig_part2.png", 2183 | "ExtraData2": "symbol_capsbig_part1.png", 2184 | "Type": "Symbol" 2185 | }, 2186 | { 2187 | "Id": 77, 2188 | "ExtraData1": "symbol_capssmall_part2.png", 2189 | "ExtraData2": "symbol_capssmall_part1.png", 2190 | "Type": "Symbol" 2191 | }, 2192 | { 2193 | "Id": 78, 2194 | "ExtraData1": "symbol_cloud.png", 2195 | "ExtraData2": null, 2196 | "Type": "Symbol" 2197 | }, 2198 | { 2199 | "Id": 79, 2200 | "ExtraData1": "symbol_crown_part2.png", 2201 | "ExtraData2": "symbol_crown_part1.png", 2202 | "Type": "Symbol" 2203 | }, 2204 | { 2205 | "Id": 80, 2206 | "ExtraData1": "symbol_diamsmall2.png", 2207 | "ExtraData2": null, 2208 | "Type": "Symbol" 2209 | }, 2210 | { 2211 | "Id": 81, 2212 | "ExtraData1": "symbol_diamsmall.png", 2213 | "ExtraData2": null, 2214 | "Type": "Symbol" 2215 | }, 2216 | { 2217 | "Id": 82, 2218 | "ExtraData1": "symbol_drop.png", 2219 | "ExtraData2": null, 2220 | "Type": "Symbol" 2221 | }, 2222 | { 2223 | "Id": 83, 2224 | "ExtraData1": "symbol_fingersheavy.png", 2225 | "ExtraData2": null, 2226 | "Type": "Symbol" 2227 | }, 2228 | { 2229 | "Id": 84, 2230 | "ExtraData1": "symbol_fingersv.png", 2231 | "ExtraData2": null, 2232 | "Type": "Symbol" 2233 | }, 2234 | { 2235 | "Id": 85, 2236 | "ExtraData1": "symbol_gtr_part2.png", 2237 | "ExtraData2": "symbol_gtr_part1.png", 2238 | "Type": "Symbol" 2239 | }, 2240 | { 2241 | "Id": 86, 2242 | "ExtraData1": "symbol_hat.png", 2243 | "ExtraData2": null, 2244 | "Type": "Symbol" 2245 | }, 2246 | { 2247 | "Id": 87, 2248 | "ExtraData1": "symbol_oval_part2.png", 2249 | "ExtraData2": "symbol_oval_part1.png", 2250 | "Type": "Symbol" 2251 | }, 2252 | { 2253 | "Id": 88, 2254 | "ExtraData1": "symbol_pawprint.png", 2255 | "ExtraData2": null, 2256 | "Type": "Symbol" 2257 | }, 2258 | { 2259 | "Id": 89, 2260 | "ExtraData1": "symbol_screw.png", 2261 | "ExtraData2": null, 2262 | "Type": "Symbol" 2263 | }, 2264 | { 2265 | "Id": 90, 2266 | "ExtraData1": "symbol_stickL_part2.png", 2267 | "ExtraData2": "symbol_stickL_part1.png", 2268 | "Type": "Symbol" 2269 | }, 2270 | { 2271 | "Id": 122, 2272 | "ExtraData1": "symbol_alligator.png", 2273 | "ExtraData2": null, 2274 | "Type": "Symbol" 2275 | }, 2276 | { 2277 | "Id": 123, 2278 | "ExtraData1": "symbol_americanfootball_part2.png", 2279 | "ExtraData2": "symbol_americanfootball_part1.png", 2280 | "Type": "Symbol" 2281 | }, 2282 | { 2283 | "Id": 124, 2284 | "ExtraData1": "symbol_award_part2.png", 2285 | "ExtraData2": "symbol_award_part1.png", 2286 | "Type": "Symbol" 2287 | }, 2288 | { 2289 | "Id": 125, 2290 | "ExtraData1": "symbol_bananapeel.png", 2291 | "ExtraData2": null, 2292 | "Type": "Symbol" 2293 | }, 2294 | { 2295 | "Id": 126, 2296 | "ExtraData1": "symbol_battleball.png", 2297 | "ExtraData2": null, 2298 | "Type": "Symbol" 2299 | }, 2300 | { 2301 | "Id": 127, 2302 | "ExtraData1": "symbol_biohazard.png", 2303 | "ExtraData2": null, 2304 | "Type": "Symbol" 2305 | }, 2306 | { 2307 | "Id": 128, 2308 | "ExtraData1": "symbol_bird.png", 2309 | "ExtraData2": null, 2310 | "Type": "Symbol" 2311 | }, 2312 | { 2313 | "Id": 129, 2314 | "ExtraData1": "symbol_bishop.png", 2315 | "ExtraData2": null, 2316 | "Type": "Symbol" 2317 | }, 2318 | { 2319 | "Id": 130, 2320 | "ExtraData1": "symbol_coalion.png", 2321 | "ExtraData2": null, 2322 | "Type": "Symbol" 2323 | }, 2324 | { 2325 | "Id": 131, 2326 | "ExtraData1": "symbol_cocoamug.png", 2327 | "ExtraData2": null, 2328 | "Type": "Symbol" 2329 | }, 2330 | { 2331 | "Id": 132, 2332 | "ExtraData1": "symbol_dashflag.png", 2333 | "ExtraData2": null, 2334 | "Type": "Symbol" 2335 | }, 2336 | { 2337 | "Id": 133, 2338 | "ExtraData1": "symbol_diamondring_part2.png", 2339 | "ExtraData2": "symbol_diamondring_part1.png", 2340 | "Type": "Symbol" 2341 | }, 2342 | { 2343 | "Id": 134, 2344 | "ExtraData1": "symbol_discoball_part2.png", 2345 | "ExtraData2": "symbol_discoball_part1.png", 2346 | "Type": "Symbol" 2347 | }, 2348 | { 2349 | "Id": 135, 2350 | "ExtraData1": "symbol_dog.png", 2351 | "ExtraData2": null, 2352 | "Type": "Symbol" 2353 | }, 2354 | { 2355 | "Id": 136, 2356 | "ExtraData1": "symbol_electricguitarh_part2.png", 2357 | "ExtraData2": "symbol_electricguitarh_part1.png", 2358 | "Type": "Symbol" 2359 | }, 2360 | { 2361 | "Id": 137, 2362 | "ExtraData1": "symbol_electricguitarv_part2.png", 2363 | "ExtraData2": "symbol_electricguitarv_part1.png", 2364 | "Type": "Symbol" 2365 | }, 2366 | { 2367 | "Id": 138, 2368 | "ExtraData1": "symbol_film.png", 2369 | "ExtraData2": null, 2370 | "Type": "Symbol" 2371 | }, 2372 | { 2373 | "Id": 139, 2374 | "ExtraData1": "symbol_flame_part2.png", 2375 | "ExtraData2": "symbol_flame_part1.png", 2376 | "Type": "Symbol" 2377 | }, 2378 | { 2379 | "Id": 140, 2380 | "ExtraData1": "symbol_gamepad.png", 2381 | "ExtraData2": null, 2382 | "Type": "Symbol" 2383 | }, 2384 | { 2385 | "Id": 141, 2386 | "ExtraData1": "symbol_gem1_part2.png", 2387 | "ExtraData2": "symbol_gem1_part1.png", 2388 | "Type": "Symbol" 2389 | }, 2390 | { 2391 | "Id": 142, 2392 | "ExtraData1": "symbol_gem2_part2.png", 2393 | "ExtraData2": "symbol_gem2_part1.png", 2394 | "Type": "Symbol" 2395 | }, 2396 | { 2397 | "Id": 143, 2398 | "ExtraData1": "symbol_gem3_part2.png", 2399 | "ExtraData2": "symbol_gem3_part1.png", 2400 | "Type": "Symbol" 2401 | }, 2402 | { 2403 | "Id": 144, 2404 | "ExtraData1": "symbol_hawk.png", 2405 | "ExtraData2": null, 2406 | "Type": "Symbol" 2407 | }, 2408 | { 2409 | "Id": 145, 2410 | "ExtraData1": "symbol_hearts_down.png", 2411 | "ExtraData2": null, 2412 | "Type": "Symbol" 2413 | }, 2414 | { 2415 | "Id": 146, 2416 | "ExtraData1": "symbol_hearts_up.png", 2417 | "ExtraData2": null, 2418 | "Type": "Symbol" 2419 | }, 2420 | { 2421 | "Id": 147, 2422 | "ExtraData1": "symbol_horseshoe.png", 2423 | "ExtraData2": null, 2424 | "Type": "Symbol" 2425 | }, 2426 | { 2427 | "Id": 148, 2428 | "ExtraData1": "symbol_inksplatter.png", 2429 | "ExtraData2": null, 2430 | "Type": "Symbol" 2431 | }, 2432 | { 2433 | "Id": 149, 2434 | "ExtraData1": "symbol_leaf.png", 2435 | "ExtraData2": null, 2436 | "Type": "Symbol" 2437 | }, 2438 | { 2439 | "Id": 150, 2440 | "ExtraData1": "symbol_micstand.png", 2441 | "ExtraData2": null, 2442 | "Type": "Symbol" 2443 | }, 2444 | { 2445 | "Id": 151, 2446 | "ExtraData1": "symbol_mirror_part2.png", 2447 | "ExtraData2": "symbol_mirror_part1.png", 2448 | "Type": "Symbol" 2449 | }, 2450 | { 2451 | "Id": 152, 2452 | "ExtraData1": "symbol_monkeywrench.png", 2453 | "ExtraData2": null, 2454 | "Type": "Symbol" 2455 | }, 2456 | { 2457 | "Id": 153, 2458 | "ExtraData1": "symbol_note1.png", 2459 | "ExtraData2": null, 2460 | "Type": "Symbol" 2461 | }, 2462 | { 2463 | "Id": 154, 2464 | "ExtraData1": "symbol_note2.png", 2465 | "ExtraData2": null, 2466 | "Type": "Symbol" 2467 | }, 2468 | { 2469 | "Id": 155, 2470 | "ExtraData1": "symbol_note3.png", 2471 | "ExtraData2": null, 2472 | "Type": "Symbol" 2473 | }, 2474 | { 2475 | "Id": 156, 2476 | "ExtraData1": "symbol_nursecross.png", 2477 | "ExtraData2": null, 2478 | "Type": "Symbol" 2479 | }, 2480 | { 2481 | "Id": 157, 2482 | "ExtraData1": "symbol_pencil_part2.png", 2483 | "ExtraData2": "symbol_pencil_part1.png", 2484 | "Type": "Symbol" 2485 | }, 2486 | { 2487 | "Id": 158, 2488 | "ExtraData1": "symbol_queen.png", 2489 | "ExtraData2": null, 2490 | "Type": "Symbol" 2491 | }, 2492 | { 2493 | "Id": 159, 2494 | "ExtraData1": "symbol_rock.png", 2495 | "ExtraData2": null, 2496 | "Type": "Symbol" 2497 | }, 2498 | { 2499 | "Id": 160, 2500 | "ExtraData1": "symbol_rook.png", 2501 | "ExtraData2": null, 2502 | "Type": "Symbol" 2503 | }, 2504 | { 2505 | "Id": 161, 2506 | "ExtraData1": "symbol_skate.png", 2507 | "ExtraData2": null, 2508 | "Type": "Symbol" 2509 | }, 2510 | { 2511 | "Id": 162, 2512 | "ExtraData1": "symbol_smallring_part2.png", 2513 | "ExtraData2": "symbol_smallring_part1.png", 2514 | "Type": "Symbol" 2515 | }, 2516 | { 2517 | "Id": 163, 2518 | "ExtraData1": "symbol_snowstorm_part2.png", 2519 | "ExtraData2": "symbol_snowstorm_part1.png", 2520 | "Type": "Symbol" 2521 | }, 2522 | { 2523 | "Id": 164, 2524 | "ExtraData1": "symbol_sphere.png", 2525 | "ExtraData2": null, 2526 | "Type": "Symbol" 2527 | }, 2528 | { 2529 | "Id": 165, 2530 | "ExtraData1": "symbol_spraycan_part2.png", 2531 | "ExtraData2": "symbol_spraycan_part1.png", 2532 | "Type": "Symbol" 2533 | }, 2534 | { 2535 | "Id": 166, 2536 | "ExtraData1": "symbol_stars1.png", 2537 | "ExtraData2": null, 2538 | "Type": "Symbol" 2539 | }, 2540 | { 2541 | "Id": 167, 2542 | "ExtraData1": "symbol_stars2.png", 2543 | "ExtraData2": null, 2544 | "Type": "Symbol" 2545 | }, 2546 | { 2547 | "Id": 168, 2548 | "ExtraData1": "symbol_stars3.png", 2549 | "ExtraData2": null, 2550 | "Type": "Symbol" 2551 | }, 2552 | { 2553 | "Id": 169, 2554 | "ExtraData1": "symbol_stars4.png", 2555 | "ExtraData2": null, 2556 | "Type": "Symbol" 2557 | }, 2558 | { 2559 | "Id": 170, 2560 | "ExtraData1": "symbol_stars5.png", 2561 | "ExtraData2": null, 2562 | "Type": "Symbol" 2563 | }, 2564 | { 2565 | "Id": 171, 2566 | "ExtraData1": "symbol_waterdrop_part2.png", 2567 | "ExtraData2": "symbol_waterdrop_part1.png", 2568 | "Type": "Symbol" 2569 | }, 2570 | { 2571 | "Id": 172, 2572 | "ExtraData1": "symbol_wolverine.png", 2573 | "ExtraData2": null, 2574 | "Type": "Symbol" 2575 | }, 2576 | { 2577 | "Id": 173, 2578 | "ExtraData1": "symbol_0.png", 2579 | "ExtraData2": null, 2580 | "Type": "Symbol" 2581 | }, 2582 | { 2583 | "Id": 174, 2584 | "ExtraData1": "symbol_1.png", 2585 | "ExtraData2": null, 2586 | "Type": "Symbol" 2587 | }, 2588 | { 2589 | "Id": 175, 2590 | "ExtraData1": "symbol_2.png", 2591 | "ExtraData2": null, 2592 | "Type": "Symbol" 2593 | }, 2594 | { 2595 | "Id": 176, 2596 | "ExtraData1": "symbol_3.png", 2597 | "ExtraData2": null, 2598 | "Type": "Symbol" 2599 | }, 2600 | { 2601 | "Id": 177, 2602 | "ExtraData1": "symbol_4.png", 2603 | "ExtraData2": null, 2604 | "Type": "Symbol" 2605 | }, 2606 | { 2607 | "Id": 178, 2608 | "ExtraData1": "symbol_5.png", 2609 | "ExtraData2": null, 2610 | "Type": "Symbol" 2611 | }, 2612 | { 2613 | "Id": 179, 2614 | "ExtraData1": "symbol_6.png", 2615 | "ExtraData2": null, 2616 | "Type": "Symbol" 2617 | }, 2618 | { 2619 | "Id": 180, 2620 | "ExtraData1": "symbol_7.png", 2621 | "ExtraData2": null, 2622 | "Type": "Symbol" 2623 | }, 2624 | { 2625 | "Id": 181, 2626 | "ExtraData1": "symbol_8.png", 2627 | "ExtraData2": null, 2628 | "Type": "Symbol" 2629 | }, 2630 | { 2631 | "Id": 182, 2632 | "ExtraData1": "symbol_9.png", 2633 | "ExtraData2": null, 2634 | "Type": "Symbol" 2635 | }, 2636 | { 2637 | "Id": 183, 2638 | "ExtraData1": "symbol_a.png", 2639 | "ExtraData2": null, 2640 | "Type": "Symbol" 2641 | }, 2642 | { 2643 | "Id": 184, 2644 | "ExtraData1": "symbol_b.png", 2645 | "ExtraData2": null, 2646 | "Type": "Symbol" 2647 | }, 2648 | { 2649 | "Id": 185, 2650 | "ExtraData1": "symbol_c.png", 2651 | "ExtraData2": null, 2652 | "Type": "Symbol" 2653 | }, 2654 | { 2655 | "Id": 186, 2656 | "ExtraData1": "symbol_d.png", 2657 | "ExtraData2": null, 2658 | "Type": "Symbol" 2659 | }, 2660 | { 2661 | "Id": 187, 2662 | "ExtraData1": "symbol_e.png", 2663 | "ExtraData2": null, 2664 | "Type": "Symbol" 2665 | }, 2666 | { 2667 | "Id": 188, 2668 | "ExtraData1": "symbol_f.png", 2669 | "ExtraData2": null, 2670 | "Type": "Symbol" 2671 | }, 2672 | { 2673 | "Id": 189, 2674 | "ExtraData1": "symbol_g.png", 2675 | "ExtraData2": null, 2676 | "Type": "Symbol" 2677 | }, 2678 | { 2679 | "Id": 190, 2680 | "ExtraData1": "symbol_h.png", 2681 | "ExtraData2": null, 2682 | "Type": "Symbol" 2683 | }, 2684 | { 2685 | "Id": 191, 2686 | "ExtraData1": "symbol_i.png", 2687 | "ExtraData2": null, 2688 | "Type": "Symbol" 2689 | }, 2690 | { 2691 | "Id": 192, 2692 | "ExtraData1": "symbol_j.png", 2693 | "ExtraData2": null, 2694 | "Type": "Symbol" 2695 | }, 2696 | { 2697 | "Id": 193, 2698 | "ExtraData1": "symbol_k.png", 2699 | "ExtraData2": null, 2700 | "Type": "Symbol" 2701 | }, 2702 | { 2703 | "Id": 194, 2704 | "ExtraData1": "symbol_l.png", 2705 | "ExtraData2": null, 2706 | "Type": "Symbol" 2707 | }, 2708 | { 2709 | "Id": 195, 2710 | "ExtraData1": "symbol_m.png", 2711 | "ExtraData2": null, 2712 | "Type": "Symbol" 2713 | }, 2714 | { 2715 | "Id": 196, 2716 | "ExtraData1": "symbol_n.png", 2717 | "ExtraData2": null, 2718 | "Type": "Symbol" 2719 | }, 2720 | { 2721 | "Id": 197, 2722 | "ExtraData1": "symbol_o.png", 2723 | "ExtraData2": null, 2724 | "Type": "Symbol" 2725 | }, 2726 | { 2727 | "Id": 198, 2728 | "ExtraData1": "symbol_p.png", 2729 | "ExtraData2": null, 2730 | "Type": "Symbol" 2731 | }, 2732 | { 2733 | "Id": 199, 2734 | "ExtraData1": "symbol_q.png", 2735 | "ExtraData2": null, 2736 | "Type": "Symbol" 2737 | }, 2738 | { 2739 | "Id": 200, 2740 | "ExtraData1": "symbol_r.png", 2741 | "ExtraData2": null, 2742 | "Type": "Symbol" 2743 | }, 2744 | { 2745 | "Id": 201, 2746 | "ExtraData1": "symbol_s.png", 2747 | "ExtraData2": null, 2748 | "Type": "Symbol" 2749 | }, 2750 | { 2751 | "Id": 202, 2752 | "ExtraData1": "symbol_t.png", 2753 | "ExtraData2": null, 2754 | "Type": "Symbol" 2755 | }, 2756 | { 2757 | "Id": 203, 2758 | "ExtraData1": "symbol_u.png", 2759 | "ExtraData2": null, 2760 | "Type": "Symbol" 2761 | }, 2762 | { 2763 | "Id": 204, 2764 | "ExtraData1": "symbol_v.png", 2765 | "ExtraData2": null, 2766 | "Type": "Symbol" 2767 | }, 2768 | { 2769 | "Id": 205, 2770 | "ExtraData1": "symbol_w.png", 2771 | "ExtraData2": null, 2772 | "Type": "Symbol" 2773 | }, 2774 | { 2775 | "Id": 206, 2776 | "ExtraData1": "symbol_x.png", 2777 | "ExtraData2": null, 2778 | "Type": "Symbol" 2779 | }, 2780 | { 2781 | "Id": 207, 2782 | "ExtraData1": "symbol_y.png", 2783 | "ExtraData2": null, 2784 | "Type": "Symbol" 2785 | }, 2786 | { 2787 | "Id": 208, 2788 | "ExtraData1": "symbol_z.png", 2789 | "ExtraData2": null, 2790 | "Type": "Symbol" 2791 | }, 2792 | { 2793 | "Id": 209, 2794 | "ExtraData1": "symbol_pixel_part2.png", 2795 | "ExtraData2": "symbol_pixel_part1.png", 2796 | "Type": "Symbol" 2797 | }, 2798 | { 2799 | "Id": 210, 2800 | "ExtraData1": "symbol_credit_part2.png", 2801 | "ExtraData2": "symbol_credit_part1.png", 2802 | "Type": "Symbol" 2803 | }, 2804 | { 2805 | "Id": 211, 2806 | "ExtraData1": "symbol_hc_part2.png", 2807 | "ExtraData2": "symbol_hc_part1.png", 2808 | "Type": "Symbol" 2809 | }, 2810 | { 2811 | "Id": 212, 2812 | "ExtraData1": "symbol_vip_part2.png", 2813 | "ExtraData2": "symbol_vip_part1.png", 2814 | "Type": "Symbol" 2815 | } 2816 | ] -------------------------------------------------------------------------------- /tools/badges.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quackster/Minerva/bd89c86f879cd69e4f8818b2607a3b5ad6aec532/tools/badges.zip -------------------------------------------------------------------------------- /tools/figuredata-2013-helios.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quackster/Minerva/bd89c86f879cd69e4f8818b2607a3b5ad6aec532/tools/figuredata-2013-helios.zip -------------------------------------------------------------------------------- /tools/figuredata-shockwave.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quackster/Minerva/bd89c86f879cd69e4f8818b2607a3b5ad6aec532/tools/figuredata-shockwave.zip --------------------------------------------------------------------------------