├── .vs ├── ResponseMessageFromConfig │ └── v15 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ └── .suo └── config │ └── applicationhost.config ├── ResponseMessageFromConfig ├── obj │ ├── Debug │ │ └── netcoreapp2.0 │ │ │ ├── ResponseMessageFromConfig.AssemblyInfoInputs.cache │ │ │ ├── ResponseMessageFromConfig.csproj.CoreCompileInputs.cache │ │ │ ├── ResponseMessageFromConfig.dll │ │ │ ├── ResponseMessageFromConfig.pdb │ │ │ ├── ResponseMessageFromConfig.assets.cache │ │ │ ├── ResponseMessageFromConfig.csprojAssemblyReference.cache │ │ │ ├── ResponseMessageFromConfig.AssemblyInfo.cs │ │ │ └── ResponseMessageFromConfig.csproj.FileListAbsolute.txt │ ├── ResponseMessageFromConfig.csproj.nuget.cache │ ├── ResponseMessageFromConfig.csproj.nuget.g.targets │ └── ResponseMessageFromConfig.csproj.nuget.g.props ├── Config │ └── responsemessage.json ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── ResponseMessageFromConfig.dll │ │ ├── ResponseMessageFromConfig.pdb │ │ ├── ResponseMessageFromConfig.runtimeconfig.dev.json │ │ └── ResponseMessageFromConfig.runtimeconfig.json ├── ApiResponse.cs ├── Constant.cs ├── appsettings.Development.json ├── appsettings.json ├── ResponseMessage.cs ├── ResponseMessageFromConfig.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Controllers │ └── ValuesController.cs └── Startup.cs └── ResponseMessageFromConfig.sln /.vs/ResponseMessageFromConfig/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e49573b52df134c716de2f22518ad76e88f1feb7 2 | -------------------------------------------------------------------------------- /.vs/ResponseMessageFromConfig/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/Core-ReloadOnChangeConfig/HEAD/.vs/ResponseMessageFromConfig/v15/.suo -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6a52037cf2a056a4d2128c4ba4879a0e5527bb89 2 | -------------------------------------------------------------------------------- /.vs/ResponseMessageFromConfig/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/Core-ReloadOnChangeConfig/HEAD/.vs/ResponseMessageFromConfig/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/ResponseMessageFromConfig/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/Core-ReloadOnChangeConfig/HEAD/.vs/ResponseMessageFromConfig/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/ResponseMessageFromConfig/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/Core-ReloadOnChangeConfig/HEAD/.vs/ResponseMessageFromConfig/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /ResponseMessageFromConfig/Config/responsemessage.json: -------------------------------------------------------------------------------- 1 | { 2 | "ResponseMessage": { 3 | "Values": { 4 | "Success": "Successful.", 5 | "NoData": "No Record Found!" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/bin/Debug/netcoreapp2.0/ResponseMessageFromConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/Core-ReloadOnChangeConfig/HEAD/ResponseMessageFromConfig/bin/Debug/netcoreapp2.0/ResponseMessageFromConfig.dll -------------------------------------------------------------------------------- /ResponseMessageFromConfig/bin/Debug/netcoreapp2.0/ResponseMessageFromConfig.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/Core-ReloadOnChangeConfig/HEAD/ResponseMessageFromConfig/bin/Debug/netcoreapp2.0/ResponseMessageFromConfig.pdb -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/Core-ReloadOnChangeConfig/HEAD/ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.dll -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/Core-ReloadOnChangeConfig/HEAD/ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.pdb -------------------------------------------------------------------------------- /ResponseMessageFromConfig/ApiResponse.cs: -------------------------------------------------------------------------------- 1 | namespace ResponseMessageFromConfig 2 | { 3 | public class ApiResponse 4 | { 5 | public int Code { get; set; } 6 | public string Message { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/ResponseMessageFromConfig.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "F8epBz5bQVJ4xQ0XcFpaAGW8t6CuTsR172YnsQRixnpimJQSmGXuMJWwebFiGFEikiiDYSR6Z2q/YTAR7RiXvQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/Core-ReloadOnChangeConfig/HEAD/ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.assets.cache -------------------------------------------------------------------------------- /ResponseMessageFromConfig/Constant.cs: -------------------------------------------------------------------------------- 1 | namespace ResponseMessageFromConfig 2 | { 3 | public class Constant 4 | { 5 | } 6 | 7 | public enum Message 8 | { 9 | Success = 200, 10 | NoData = 204 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Debug", 6 | "System": "Information", 7 | "Microsoft": "Information" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/Core-ReloadOnChangeConfig/HEAD/ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ResponseMessageFromConfig/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "Debug": { 5 | "LogLevel": { 6 | "Default": "Warning" 7 | } 8 | }, 9 | "Console": { 10 | "LogLevel": { 11 | "Default": "Warning" 12 | } 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/ResponseMessage.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace ResponseMessageFromConfig 4 | { 5 | public class ResponseMessage 6 | { 7 | public Dictionary Values 8 | { 9 | get; 10 | set; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/bin/Debug/netcoreapp2.0/ResponseMessageFromConfig.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\akshayp\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\akshayp\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /ResponseMessageFromConfig/bin/Debug/netcoreapp2.0/ResponseMessageFromConfig.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.0.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /ResponseMessageFromConfig/ResponseMessageFromConfig.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using Microsoft.AspNetCore; 7 | using Microsoft.AspNetCore.Hosting; 8 | using Microsoft.Extensions.Configuration; 9 | using Microsoft.Extensions.Logging; 10 | 11 | namespace ResponseMessageFromConfig 12 | { 13 | public class Program 14 | { 15 | public static void Main(string[] args) 16 | { 17 | BuildWebHost(args).Run(); 18 | } 19 | 20 | public static IWebHost BuildWebHost(string[] args) => 21 | WebHost.CreateDefaultBuilder(args) 22 | .UseStartup() 23 | .Build(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:54115/", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "launchUrl": "api/values", 15 | "environmentVariables": { 16 | "ASPNETCORE_ENVIRONMENT": "Development" 17 | } 18 | }, 19 | "ResponseMessageFromConfig": { 20 | "commandName": "Project", 21 | "launchBrowser": true, 22 | "launchUrl": "api/values", 23 | "environmentVariables": { 24 | "ASPNETCORE_ENVIRONMENT": "Development" 25 | }, 26 | "applicationUrl": "http://localhost:54116/" 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("ResponseMessageFromConfig")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("ResponseMessageFromConfig")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("ResponseMessageFromConfig")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.271 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResponseMessageFromConfig", "ResponseMessageFromConfig\ResponseMessageFromConfig.csproj", "{D0E4FF23-016C-4AFD-B84E-4EABFD6CC69F}" 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 | {D0E4FF23-016C-4AFD-B84E-4EABFD6CC69F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {D0E4FF23-016C-4AFD-B84E-4EABFD6CC69F}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {D0E4FF23-016C-4AFD-B84E-4EABFD6CC69F}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {D0E4FF23-016C-4AFD-B84E-4EABFD6CC69F}.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 = {8E2E6C0F-C6A4-4FDA-B00C-EDF80263FE7C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/Debug/netcoreapp2.0/ResponseMessageFromConfig.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\bin\Debug\netcoreapp2.0\ResponseMessageFromConfig.deps.json 2 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\bin\Debug\netcoreapp2.0\ResponseMessageFromConfig.runtimeconfig.json 3 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\bin\Debug\netcoreapp2.0\ResponseMessageFromConfig.runtimeconfig.dev.json 4 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\bin\Debug\netcoreapp2.0\ResponseMessageFromConfig.dll 5 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\bin\Debug\netcoreapp2.0\ResponseMessageFromConfig.pdb 6 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\obj\Debug\netcoreapp2.0\ResponseMessageFromConfig.csprojAssemblyReference.cache 7 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\obj\Debug\netcoreapp2.0\ResponseMessageFromConfig.csproj.CoreCompileInputs.cache 8 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\obj\Debug\netcoreapp2.0\ResponseMessageFromConfig.AssemblyInfoInputs.cache 9 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\obj\Debug\netcoreapp2.0\ResponseMessageFromConfig.AssemblyInfo.cs 10 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\obj\Debug\netcoreapp2.0\ResponseMessageFromConfig.dll 11 | E:\Akki\POC\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\obj\Debug\netcoreapp2.0\ResponseMessageFromConfig.pdb 12 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.Extensions.Options; 3 | using System.Collections.Generic; 4 | 5 | namespace ResponseMessageFromConfig.Controllers 6 | { 7 | [Route("api/[controller]")] 8 | public class ValuesController : Controller 9 | { 10 | private readonly ResponseMessage responseMessage; 11 | public ValuesController(IOptionsSnapshot responseMessage) 12 | { 13 | this.responseMessage = responseMessage.Value; 14 | } 15 | 16 | // GET api/values 17 | [HttpGet] 18 | public IEnumerable Get() 19 | { 20 | ApiResponse apiResponse = new ApiResponse(); 21 | apiResponse.Code = (int)Message.Success; 22 | apiResponse.Message = responseMessage.Values[Message.Success.ToString()]; 23 | 24 | return new string[] { apiResponse.Code.ToString(), apiResponse.Message }; 25 | } 26 | 27 | // GET api/values/5 28 | [HttpGet("{id}")] 29 | public string Get(int id) 30 | { 31 | return "value"; 32 | } 33 | 34 | // POST api/values 35 | [HttpPost] 36 | public void Post([FromBody]string value) 37 | { 38 | } 39 | 40 | // PUT api/values/5 41 | [HttpPut("{id}")] 42 | public void Put(int id, [FromBody]string value) 43 | { 44 | } 45 | 46 | // DELETE api/values/5 47 | [HttpDelete("{id}")] 48 | public void Delete(int id) 49 | { 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/Startup.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Builder; 2 | using Microsoft.AspNetCore.Hosting; 3 | using Microsoft.Extensions.Configuration; 4 | using Microsoft.Extensions.DependencyInjection; 5 | 6 | namespace ResponseMessageFromConfig 7 | { 8 | public class Startup 9 | { 10 | public Startup(IConfiguration configuration, IHostingEnvironment env) 11 | { 12 | var builder = new ConfigurationBuilder() 13 | .SetBasePath(env.ContentRootPath) 14 | .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true) 15 | .AddJsonFile($"Config/responsemessage.json", optional: false, reloadOnChange: true) 16 | .AddEnvironmentVariables(); 17 | configuration = builder.Build(); 18 | 19 | 20 | Configuration = configuration; 21 | } 22 | 23 | public IConfiguration Configuration { get; } 24 | 25 | public void ConfigureServices(IServiceCollection services) 26 | { 27 | services.AddSingleton(Configuration.GetSection("ResponseMessage").Get()); 28 | services.Configure((setting) => 29 | { 30 | Configuration.GetSection("ResponseMessage").Bind(setting); 31 | }); 32 | 33 | services.AddMvc(); 34 | } 35 | 36 | public void Configure(IApplicationBuilder app, IHostingEnvironment env) 37 | { 38 | if (env.IsDevelopment()) 39 | { 40 | app.UseDeveloperExceptionPage(); 41 | } 42 | 43 | app.UseMvc(); 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/ResponseMessageFromConfig.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /ResponseMessageFromConfig/obj/ResponseMessageFromConfig.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | C:\Users\Akshay\Downloads\Final\Final\ResponseMessageFromConfig\ResponseMessageFromConfig\obj\project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Akshay\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 4.9.2 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | 19 | C:\Users\Akshay\.nuget\packages\newtonsoft.json\10.0.1 20 | C:\Users\Akshay\.nuget\packages\microsoft.entityframeworkcore.tools\2.0.3 21 | C:\Users\Akshay\.nuget\packages\microsoft.codeanalysis.analyzers\1.1.0 22 | 23 | -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 48 | 49 | 50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 | 59 | 60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 | 79 |
80 |
81 | 82 |
83 |
84 |
85 |
86 |
87 |
88 | 89 |
90 |
91 |
92 |
93 |
94 | 95 |
96 |
97 |
98 | 99 |
100 |
101 | 102 |
103 |
104 | 105 |
106 |
107 |
108 | 109 | 110 |
111 |
112 |
113 |
114 |
115 |
116 | 117 |
118 |
119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 781 | 782 | 783 | 784 | 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 | 874 | 875 | 876 | 877 | 878 | 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | --------------------------------------------------------------------------------