t44 0.4.0-rc.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/.dco-signatures +9 -0
  2. package/.github/workflows/dco.yml +12 -0
  3. package/.o/GordianOpenIntegrity-CurrentLifehash.svg +1026 -0
  4. package/.o/GordianOpenIntegrity-InceptionLifehash.svg +1026 -0
  5. package/.o/GordianOpenIntegrity.yaml +25 -0
  6. package/.o/assets/Hero-Terminal44-v0.jpeg +0 -0
  7. package/DCO.md +34 -0
  8. package/LICENSE.md +203 -0
  9. package/README.md +183 -0
  10. package/bin/activate +36 -0
  11. package/bin/activate.ts +30 -0
  12. package/bin/postinstall.sh +19 -0
  13. package/bin/shell +27 -0
  14. package/bin/t44 +27 -0
  15. package/caps/ConfigSchemaStruct.ts +55 -0
  16. package/caps/Home.ts +51 -0
  17. package/caps/HomeRegistry.ts +313 -0
  18. package/caps/HomeRegistryFile.ts +144 -0
  19. package/caps/JsonSchemas.ts +220 -0
  20. package/caps/OpenApiSchema.ts +67 -0
  21. package/caps/PackageDescriptor.ts +88 -0
  22. package/caps/ProjectCatalogs.ts +153 -0
  23. package/caps/ProjectDeployment.ts +363 -0
  24. package/caps/ProjectDevelopment.ts +257 -0
  25. package/caps/ProjectPublishing.ts +522 -0
  26. package/caps/ProjectRack.ts +155 -0
  27. package/caps/ProjectRepository.ts +322 -0
  28. package/caps/RootKey.ts +219 -0
  29. package/caps/SigningKey.ts +243 -0
  30. package/caps/WorkspaceCli.ts +442 -0
  31. package/caps/WorkspaceConfig.ts +268 -0
  32. package/caps/WorkspaceConfig.yaml +71 -0
  33. package/caps/WorkspaceConfigFile.ts +799 -0
  34. package/caps/WorkspaceConnection.ts +249 -0
  35. package/caps/WorkspaceEntityConfig.ts +78 -0
  36. package/caps/WorkspaceEntityConfig.v0.ts +77 -0
  37. package/caps/WorkspaceEntityFact.ts +218 -0
  38. package/caps/WorkspaceInfo.ts +595 -0
  39. package/caps/WorkspaceInit.ts +30 -0
  40. package/caps/WorkspaceKey.ts +338 -0
  41. package/caps/WorkspaceModel.ts +373 -0
  42. package/caps/WorkspaceProjects.ts +636 -0
  43. package/caps/WorkspacePrompt.ts +406 -0
  44. package/caps/WorkspaceShell.sh +39 -0
  45. package/caps/WorkspaceShell.ts +104 -0
  46. package/caps/WorkspaceShell.yaml +64 -0
  47. package/caps/WorkspaceShellCli.ts +109 -0
  48. package/caps/WorkspaceTest.ts +167 -0
  49. package/caps/providers/README.md +2 -0
  50. package/caps/providers/bunny.net/ProjectDeployment.ts +327 -0
  51. package/caps/providers/bunny.net/api-pull.test.ts +319 -0
  52. package/caps/providers/bunny.net/api-pull.ts +164 -0
  53. package/caps/providers/bunny.net/api-storage.test.ts +168 -0
  54. package/caps/providers/bunny.net/api-storage.ts +248 -0
  55. package/caps/providers/bunny.net/api.ts +95 -0
  56. package/caps/providers/dynadot.com/ProjectDeployment.ts +202 -0
  57. package/caps/providers/dynadot.com/api-domains.test.ts +224 -0
  58. package/caps/providers/dynadot.com/api-domains.ts +169 -0
  59. package/caps/providers/dynadot.com/api-restful-v1.test.ts +190 -0
  60. package/caps/providers/dynadot.com/api-restful-v1.ts +94 -0
  61. package/caps/providers/dynadot.com/api-restful-v2.test.ts +200 -0
  62. package/caps/providers/dynadot.com/api-restful-v2.ts +94 -0
  63. package/caps/providers/git-scm.com/ProjectPublishing.ts +654 -0
  64. package/caps/providers/github.com/ProjectPublishing.ts +118 -0
  65. package/caps/providers/github.com/api.ts +115 -0
  66. package/caps/providers/npmjs.com/ProjectPublishing.ts +536 -0
  67. package/caps/providers/semver.org/ProjectPublishing.ts +286 -0
  68. package/caps/providers/vercel.com/ProjectDeployment.ts +326 -0
  69. package/caps/providers/vercel.com/api.test.ts +67 -0
  70. package/caps/providers/vercel.com/api.ts +132 -0
  71. package/caps/providers/vercel.com/bun.lock +194 -0
  72. package/caps/providers/vercel.com/package.json +10 -0
  73. package/caps/providers/vercel.com/project.test.ts +108 -0
  74. package/caps/providers/vercel.com/project.ts +150 -0
  75. package/caps/providers/vercel.com/tsconfig.json +28 -0
  76. package/docs/Overview.drawio +248 -0
  77. package/docs/Overview.svg +4 -0
  78. package/lib/crypto.ts +53 -0
  79. package/lib/key.ts +365 -0
  80. package/lib/schema-console-renderer.ts +181 -0
  81. package/lib/schema-resolver.ts +349 -0
  82. package/lib/ucan.ts +137 -0
  83. package/package.json +101 -0
  84. package/structs/HomeRegistry.ts +55 -0
  85. package/structs/HomeRegistryConfig.ts +56 -0
  86. package/structs/ProjectCatalogsConfig.ts +53 -0
  87. package/structs/ProjectDeploymentConfig.ts +56 -0
  88. package/structs/ProjectDeploymentFact.ts +106 -0
  89. package/structs/ProjectPublishingFact.ts +68 -0
  90. package/structs/ProjectRack.ts +51 -0
  91. package/structs/ProjectRackConfig.ts +56 -0
  92. package/structs/RepositoryOriginDescriptor.ts +51 -0
  93. package/structs/RootKeyConfig.ts +64 -0
  94. package/structs/SigningKeyConfig.ts +64 -0
  95. package/structs/Workspace.ts +56 -0
  96. package/structs/WorkspaceCatalogs.ts +56 -0
  97. package/structs/WorkspaceCliConfig.ts +53 -0
  98. package/structs/WorkspaceConfig.ts +64 -0
  99. package/structs/WorkspaceConfigFile.ts +50 -0
  100. package/structs/WorkspaceConfigFileMeta.ts +70 -0
  101. package/structs/WorkspaceKey.ts +55 -0
  102. package/structs/WorkspaceKeyConfig.ts +56 -0
  103. package/structs/WorkspaceMappingsConfig.ts +56 -0
  104. package/structs/WorkspaceProject.ts +104 -0
  105. package/structs/WorkspaceProjectsConfig.ts +67 -0
  106. package/structs/WorkspacePublishingConfig.ts +65 -0
  107. package/structs/WorkspaceShellConfig.ts +83 -0
  108. package/structs/providers/README.md +2 -0
  109. package/structs/providers/bunny.net/PullZoneFact.ts +55 -0
  110. package/structs/providers/bunny.net/PullZoneListFact.ts +55 -0
  111. package/structs/providers/bunny.net/StorageZoneFact.ts +55 -0
  112. package/structs/providers/bunny.net/StorageZoneListFact.ts +55 -0
  113. package/structs/providers/bunny.net/WorkspaceConnectionConfig.ts +43 -0
  114. package/structs/providers/dynadot.com/DomainFact.ts +46 -0
  115. package/structs/providers/dynadot.com/WorkspaceConnectionConfig.ts +54 -0
  116. package/structs/providers/git-scm.com/ProjectPublishingFact.ts +46 -0
  117. package/structs/providers/github.com/ProjectPublishingFact.ts +46 -0
  118. package/structs/providers/github.com/WorkspaceConnectionConfig.ts +43 -0
  119. package/structs/providers/npmjs.com/ProjectPublishingFact.ts +46 -0
  120. package/structs/providers/vercel.com/ProjectDeploymentFact.ts +55 -0
  121. package/structs/providers/vercel.com/WorkspaceConnectionConfig.ts +49 -0
  122. package/tests/01-Lifecycle/main.test.ts +173 -0
  123. package/tsconfig.json +28 -0
  124. package/workspace-rt.ts +134 -0
  125. package/workspace.yaml +3 -0
@@ -0,0 +1,1026 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" shape-rendering="crispEdges">
2
+ <rect x="0" y="0" width="1" height="1" fill="rgb(183,57,45)"/>
3
+ <rect x="1" y="0" width="1" height="1" fill="rgb(157,46,57)"/>
4
+ <rect x="2" y="0" width="1" height="1" fill="rgb(150,43,60)"/>
5
+ <rect x="3" y="0" width="1" height="1" fill="rgb(150,43,60)"/>
6
+ <rect x="4" y="0" width="1" height="1" fill="rgb(148,42,61)"/>
7
+ <rect x="5" y="0" width="1" height="1" fill="rgb(160,47,56)"/>
8
+ <rect x="6" y="0" width="1" height="1" fill="rgb(179,55,48)"/>
9
+ <rect x="7" y="0" width="1" height="1" fill="rgb(239,212,121)"/>
10
+ <rect x="8" y="0" width="1" height="1" fill="rgb(242,234,134)"/>
11
+ <rect x="9" y="0" width="1" height="1" fill="rgb(240,216,124)"/>
12
+ <rect x="10" y="0" width="1" height="1" fill="rgb(242,234,134)"/>
13
+ <rect x="11" y="0" width="1" height="1" fill="rgb(239,212,121)"/>
14
+ <rect x="12" y="0" width="1" height="1" fill="rgb(196,83,57)"/>
15
+ <rect x="13" y="0" width="1" height="1" fill="rgb(193,76,54)"/>
16
+ <rect x="14" y="0" width="1" height="1" fill="rgb(176,54,49)"/>
17
+ <rect x="15" y="0" width="1" height="1" fill="rgb(181,56,47)"/>
18
+ <rect x="16" y="0" width="1" height="1" fill="rgb(155,45,58)"/>
19
+ <rect x="17" y="0" width="1" height="1" fill="rgb(155,45,58)"/>
20
+ <rect x="18" y="0" width="1" height="1" fill="rgb(157,46,57)"/>
21
+ <rect x="19" y="0" width="1" height="1" fill="rgb(148,42,61)"/>
22
+ <rect x="20" y="0" width="1" height="1" fill="rgb(155,45,58)"/>
23
+ <rect x="21" y="0" width="1" height="1" fill="rgb(150,43,60)"/>
24
+ <rect x="22" y="0" width="1" height="1" fill="rgb(148,42,61)"/>
25
+ <rect x="23" y="0" width="1" height="1" fill="rgb(238,203,116)"/>
26
+ <rect x="24" y="0" width="1" height="1" fill="rgb(238,199,114)"/>
27
+ <rect x="25" y="0" width="1" height="1" fill="rgb(238,203,116)"/>
28
+ <rect x="26" y="0" width="1" height="1" fill="rgb(164,49,54)"/>
29
+ <rect x="27" y="0" width="1" height="1" fill="rgb(162,48,55)"/>
30
+ <rect x="28" y="0" width="1" height="1" fill="rgb(196,83,57)"/>
31
+ <rect x="29" y="0" width="1" height="1" fill="rgb(183,57,45)"/>
32
+ <rect x="30" y="0" width="1" height="1" fill="rgb(181,56,47)"/>
33
+ <rect x="31" y="0" width="1" height="1" fill="rgb(183,57,45)"/>
34
+ <rect x="0" y="1" width="1" height="1" fill="rgb(181,56,47)"/>
35
+ <rect x="1" y="1" width="1" height="1" fill="rgb(148,42,61)"/>
36
+ <rect x="2" y="1" width="1" height="1" fill="rgb(150,43,60)"/>
37
+ <rect x="3" y="1" width="1" height="1" fill="rgb(162,48,55)"/>
38
+ <rect x="4" y="1" width="1" height="1" fill="rgb(160,47,56)"/>
39
+ <rect x="5" y="1" width="1" height="1" fill="rgb(155,45,58)"/>
40
+ <rect x="6" y="1" width="1" height="1" fill="rgb(160,47,56)"/>
41
+ <rect x="7" y="1" width="1" height="1" fill="rgb(239,208,119)"/>
42
+ <rect x="8" y="1" width="1" height="1" fill="rgb(239,208,119)"/>
43
+ <rect x="9" y="1" width="1" height="1" fill="rgb(242,234,134)"/>
44
+ <rect x="10" y="1" width="1" height="1" fill="rgb(239,208,119)"/>
45
+ <rect x="11" y="1" width="1" height="1" fill="rgb(239,208,119)"/>
46
+ <rect x="12" y="1" width="1" height="1" fill="rgb(190,69,51)"/>
47
+ <rect x="13" y="1" width="1" height="1" fill="rgb(190,69,51)"/>
48
+ <rect x="14" y="1" width="1" height="1" fill="rgb(181,56,47)"/>
49
+ <rect x="15" y="1" width="1" height="1" fill="rgb(181,56,47)"/>
50
+ <rect x="16" y="1" width="1" height="1" fill="rgb(155,45,58)"/>
51
+ <rect x="17" y="1" width="1" height="1" fill="rgb(160,47,56)"/>
52
+ <rect x="18" y="1" width="1" height="1" fill="rgb(160,47,56)"/>
53
+ <rect x="19" y="1" width="1" height="1" fill="rgb(153,44,59)"/>
54
+ <rect x="20" y="1" width="1" height="1" fill="rgb(150,43,60)"/>
55
+ <rect x="21" y="1" width="1" height="1" fill="rgb(150,43,60)"/>
56
+ <rect x="22" y="1" width="1" height="1" fill="rgb(148,42,61)"/>
57
+ <rect x="23" y="1" width="1" height="1" fill="rgb(164,49,54)"/>
58
+ <rect x="24" y="1" width="1" height="1" fill="rgb(162,48,55)"/>
59
+ <rect x="25" y="1" width="1" height="1" fill="rgb(160,47,56)"/>
60
+ <rect x="26" y="1" width="1" height="1" fill="rgb(162,48,55)"/>
61
+ <rect x="27" y="1" width="1" height="1" fill="rgb(162,48,55)"/>
62
+ <rect x="28" y="1" width="1" height="1" fill="rgb(162,48,55)"/>
63
+ <rect x="29" y="1" width="1" height="1" fill="rgb(162,48,55)"/>
64
+ <rect x="30" y="1" width="1" height="1" fill="rgb(148,42,61)"/>
65
+ <rect x="31" y="1" width="1" height="1" fill="rgb(157,46,57)"/>
66
+ <rect x="0" y="2" width="1" height="1" fill="rgb(183,57,45)"/>
67
+ <rect x="1" y="2" width="1" height="1" fill="rgb(162,48,55)"/>
68
+ <rect x="2" y="2" width="1" height="1" fill="rgb(148,42,61)"/>
69
+ <rect x="3" y="2" width="1" height="1" fill="rgb(160,47,56)"/>
70
+ <rect x="4" y="2" width="1" height="1" fill="rgb(160,47,56)"/>
71
+ <rect x="5" y="2" width="1" height="1" fill="rgb(239,212,121)"/>
72
+ <rect x="6" y="2" width="1" height="1" fill="rgb(239,208,119)"/>
73
+ <rect x="7" y="2" width="1" height="1" fill="rgb(236,181,104)"/>
74
+ <rect x="8" y="2" width="1" height="1" fill="rgb(239,208,119)"/>
75
+ <rect x="9" y="2" width="1" height="1" fill="rgb(239,208,119)"/>
76
+ <rect x="10" y="2" width="1" height="1" fill="rgb(239,208,119)"/>
77
+ <rect x="11" y="2" width="1" height="1" fill="rgb(236,181,104)"/>
78
+ <rect x="12" y="2" width="1" height="1" fill="rgb(239,208,119)"/>
79
+ <rect x="13" y="2" width="1" height="1" fill="rgb(239,212,121)"/>
80
+ <rect x="14" y="2" width="1" height="1" fill="rgb(206,104,67)"/>
81
+ <rect x="15" y="2" width="1" height="1" fill="rgb(203,97,64)"/>
82
+ <rect x="16" y="2" width="1" height="1" fill="rgb(148,42,61)"/>
83
+ <rect x="17" y="2" width="1" height="1" fill="rgb(157,46,57)"/>
84
+ <rect x="18" y="2" width="1" height="1" fill="rgb(148,42,61)"/>
85
+ <rect x="19" y="2" width="1" height="1" fill="rgb(150,43,60)"/>
86
+ <rect x="20" y="2" width="1" height="1" fill="rgb(148,42,61)"/>
87
+ <rect x="21" y="2" width="1" height="1" fill="rgb(148,42,61)"/>
88
+ <rect x="22" y="2" width="1" height="1" fill="rgb(162,48,55)"/>
89
+ <rect x="23" y="2" width="1" height="1" fill="rgb(164,49,54)"/>
90
+ <rect x="24" y="2" width="1" height="1" fill="rgb(167,50,53)"/>
91
+ <rect x="25" y="2" width="1" height="1" fill="rgb(164,49,54)"/>
92
+ <rect x="26" y="2" width="1" height="1" fill="rgb(164,49,54)"/>
93
+ <rect x="27" y="2" width="1" height="1" fill="rgb(239,208,119)"/>
94
+ <rect x="28" y="2" width="1" height="1" fill="rgb(162,48,55)"/>
95
+ <rect x="29" y="2" width="1" height="1" fill="rgb(148,42,61)"/>
96
+ <rect x="30" y="2" width="1" height="1" fill="rgb(150,43,60)"/>
97
+ <rect x="31" y="2" width="1" height="1" fill="rgb(150,43,60)"/>
98
+ <rect x="0" y="3" width="1" height="1" fill="rgb(196,83,57)"/>
99
+ <rect x="1" y="3" width="1" height="1" fill="rgb(162,48,55)"/>
100
+ <rect x="2" y="3" width="1" height="1" fill="rgb(162,48,55)"/>
101
+ <rect x="3" y="3" width="1" height="1" fill="rgb(238,203,116)"/>
102
+ <rect x="4" y="3" width="1" height="1" fill="rgb(242,234,134)"/>
103
+ <rect x="5" y="3" width="1" height="1" fill="rgb(242,234,134)"/>
104
+ <rect x="6" y="3" width="1" height="1" fill="rgb(239,208,119)"/>
105
+ <rect x="7" y="3" width="1" height="1" fill="rgb(239,208,119)"/>
106
+ <rect x="8" y="3" width="1" height="1" fill="rgb(235,172,99)"/>
107
+ <rect x="9" y="3" width="1" height="1" fill="rgb(239,208,119)"/>
108
+ <rect x="10" y="3" width="1" height="1" fill="rgb(235,172,99)"/>
109
+ <rect x="11" y="3" width="1" height="1" fill="rgb(239,208,119)"/>
110
+ <rect x="12" y="3" width="1" height="1" fill="rgb(239,208,119)"/>
111
+ <rect x="13" y="3" width="1" height="1" fill="rgb(240,221,126)"/>
112
+ <rect x="14" y="3" width="1" height="1" fill="rgb(240,216,124)"/>
113
+ <rect x="15" y="3" width="1" height="1" fill="rgb(240,221,126)"/>
114
+ <rect x="16" y="3" width="1" height="1" fill="rgb(148,42,61)"/>
115
+ <rect x="17" y="3" width="1" height="1" fill="rgb(148,42,61)"/>
116
+ <rect x="18" y="3" width="1" height="1" fill="rgb(150,43,60)"/>
117
+ <rect x="19" y="3" width="1" height="1" fill="rgb(150,43,60)"/>
118
+ <rect x="20" y="3" width="1" height="1" fill="rgb(148,42,61)"/>
119
+ <rect x="21" y="3" width="1" height="1" fill="rgb(150,43,60)"/>
120
+ <rect x="22" y="3" width="1" height="1" fill="rgb(150,43,60)"/>
121
+ <rect x="23" y="3" width="1" height="1" fill="rgb(160,47,56)"/>
122
+ <rect x="24" y="3" width="1" height="1" fill="rgb(157,46,57)"/>
123
+ <rect x="25" y="3" width="1" height="1" fill="rgb(157,46,57)"/>
124
+ <rect x="26" y="3" width="1" height="1" fill="rgb(238,203,116)"/>
125
+ <rect x="27" y="3" width="1" height="1" fill="rgb(242,234,134)"/>
126
+ <rect x="28" y="3" width="1" height="1" fill="rgb(238,203,116)"/>
127
+ <rect x="29" y="3" width="1" height="1" fill="rgb(160,47,56)"/>
128
+ <rect x="30" y="3" width="1" height="1" fill="rgb(162,48,55)"/>
129
+ <rect x="31" y="3" width="1" height="1" fill="rgb(150,43,60)"/>
130
+ <rect x="0" y="4" width="1" height="1" fill="rgb(162,48,55)"/>
131
+ <rect x="1" y="4" width="1" height="1" fill="rgb(162,48,55)"/>
132
+ <rect x="2" y="4" width="1" height="1" fill="rgb(239,208,119)"/>
133
+ <rect x="3" y="4" width="1" height="1" fill="rgb(242,234,134)"/>
134
+ <rect x="4" y="4" width="1" height="1" fill="rgb(240,216,124)"/>
135
+ <rect x="5" y="4" width="1" height="1" fill="rgb(240,216,124)"/>
136
+ <rect x="6" y="4" width="1" height="1" fill="rgb(242,234,134)"/>
137
+ <rect x="7" y="4" width="1" height="1" fill="rgb(239,208,119)"/>
138
+ <rect x="8" y="4" width="1" height="1" fill="rgb(239,208,119)"/>
139
+ <rect x="9" y="4" width="1" height="1" fill="rgb(213,119,74)"/>
140
+ <rect x="10" y="4" width="1" height="1" fill="rgb(239,208,119)"/>
141
+ <rect x="11" y="4" width="1" height="1" fill="rgb(239,208,119)"/>
142
+ <rect x="12" y="4" width="1" height="1" fill="rgb(239,208,119)"/>
143
+ <rect x="13" y="4" width="1" height="1" fill="rgb(241,225,129)"/>
144
+ <rect x="14" y="4" width="1" height="1" fill="rgb(241,230,131)"/>
145
+ <rect x="15" y="4" width="1" height="1" fill="rgb(241,225,129)"/>
146
+ <rect x="16" y="4" width="1" height="1" fill="rgb(162,48,55)"/>
147
+ <rect x="17" y="4" width="1" height="1" fill="rgb(157,46,57)"/>
148
+ <rect x="18" y="4" width="1" height="1" fill="rgb(162,48,55)"/>
149
+ <rect x="19" y="4" width="1" height="1" fill="rgb(162,48,55)"/>
150
+ <rect x="20" y="4" width="1" height="1" fill="rgb(148,42,61)"/>
151
+ <rect x="21" y="4" width="1" height="1" fill="rgb(150,43,60)"/>
152
+ <rect x="22" y="4" width="1" height="1" fill="rgb(150,43,60)"/>
153
+ <rect x="23" y="4" width="1" height="1" fill="rgb(150,43,60)"/>
154
+ <rect x="24" y="4" width="1" height="1" fill="rgb(150,43,60)"/>
155
+ <rect x="25" y="4" width="1" height="1" fill="rgb(148,42,61)"/>
156
+ <rect x="26" y="4" width="1" height="1" fill="rgb(242,234,134)"/>
157
+ <rect x="27" y="4" width="1" height="1" fill="rgb(240,216,124)"/>
158
+ <rect x="28" y="4" width="1" height="1" fill="rgb(242,234,134)"/>
159
+ <rect x="29" y="4" width="1" height="1" fill="rgb(160,47,56)"/>
160
+ <rect x="30" y="4" width="1" height="1" fill="rgb(160,47,56)"/>
161
+ <rect x="31" y="4" width="1" height="1" fill="rgb(148,42,61)"/>
162
+ <rect x="0" y="5" width="1" height="1" fill="rgb(164,49,54)"/>
163
+ <rect x="1" y="5" width="1" height="1" fill="rgb(162,48,55)"/>
164
+ <rect x="2" y="5" width="1" height="1" fill="rgb(164,49,54)"/>
165
+ <rect x="3" y="5" width="1" height="1" fill="rgb(238,203,116)"/>
166
+ <rect x="4" y="5" width="1" height="1" fill="rgb(242,234,134)"/>
167
+ <rect x="5" y="5" width="1" height="1" fill="rgb(242,234,134)"/>
168
+ <rect x="6" y="5" width="1" height="1" fill="rgb(239,208,119)"/>
169
+ <rect x="7" y="5" width="1" height="1" fill="rgb(239,208,119)"/>
170
+ <rect x="8" y="5" width="1" height="1" fill="rgb(235,172,99)"/>
171
+ <rect x="9" y="5" width="1" height="1" fill="rgb(239,208,119)"/>
172
+ <rect x="10" y="5" width="1" height="1" fill="rgb(235,172,99)"/>
173
+ <rect x="11" y="5" width="1" height="1" fill="rgb(239,208,119)"/>
174
+ <rect x="12" y="5" width="1" height="1" fill="rgb(239,208,119)"/>
175
+ <rect x="13" y="5" width="1" height="1" fill="rgb(239,208,119)"/>
176
+ <rect x="14" y="5" width="1" height="1" fill="rgb(241,230,131)"/>
177
+ <rect x="15" y="5" width="1" height="1" fill="rgb(150,43,60)"/>
178
+ <rect x="16" y="5" width="1" height="1" fill="rgb(181,56,47)"/>
179
+ <rect x="17" y="5" width="1" height="1" fill="rgb(183,57,45)"/>
180
+ <rect x="18" y="5" width="1" height="1" fill="rgb(206,104,67)"/>
181
+ <rect x="19" y="5" width="1" height="1" fill="rgb(206,104,67)"/>
182
+ <rect x="20" y="5" width="1" height="1" fill="rgb(167,50,53)"/>
183
+ <rect x="21" y="5" width="1" height="1" fill="rgb(176,54,49)"/>
184
+ <rect x="22" y="5" width="1" height="1" fill="rgb(179,55,48)"/>
185
+ <rect x="23" y="5" width="1" height="1" fill="rgb(150,43,60)"/>
186
+ <rect x="24" y="5" width="1" height="1" fill="rgb(148,42,61)"/>
187
+ <rect x="25" y="5" width="1" height="1" fill="rgb(239,212,121)"/>
188
+ <rect x="26" y="5" width="1" height="1" fill="rgb(242,234,134)"/>
189
+ <rect x="27" y="5" width="1" height="1" fill="rgb(240,216,124)"/>
190
+ <rect x="28" y="5" width="1" height="1" fill="rgb(242,234,134)"/>
191
+ <rect x="29" y="5" width="1" height="1" fill="rgb(239,212,121)"/>
192
+ <rect x="30" y="5" width="1" height="1" fill="rgb(155,45,58)"/>
193
+ <rect x="31" y="5" width="1" height="1" fill="rgb(160,47,56)"/>
194
+ <rect x="0" y="6" width="1" height="1" fill="rgb(238,203,116)"/>
195
+ <rect x="1" y="6" width="1" height="1" fill="rgb(160,47,56)"/>
196
+ <rect x="2" y="6" width="1" height="1" fill="rgb(164,49,54)"/>
197
+ <rect x="3" y="6" width="1" height="1" fill="rgb(157,46,57)"/>
198
+ <rect x="4" y="6" width="1" height="1" fill="rgb(148,42,61)"/>
199
+ <rect x="5" y="6" width="1" height="1" fill="rgb(239,212,121)"/>
200
+ <rect x="6" y="6" width="1" height="1" fill="rgb(239,208,119)"/>
201
+ <rect x="7" y="6" width="1" height="1" fill="rgb(236,181,104)"/>
202
+ <rect x="8" y="6" width="1" height="1" fill="rgb(239,208,119)"/>
203
+ <rect x="9" y="6" width="1" height="1" fill="rgb(239,208,119)"/>
204
+ <rect x="10" y="6" width="1" height="1" fill="rgb(239,208,119)"/>
205
+ <rect x="11" y="6" width="1" height="1" fill="rgb(236,181,104)"/>
206
+ <rect x="12" y="6" width="1" height="1" fill="rgb(239,208,119)"/>
207
+ <rect x="13" y="6" width="1" height="1" fill="rgb(238,199,114)"/>
208
+ <rect x="14" y="6" width="1" height="1" fill="rgb(238,199,114)"/>
209
+ <rect x="15" y="6" width="1" height="1" fill="rgb(238,199,114)"/>
210
+ <rect x="16" y="6" width="1" height="1" fill="rgb(206,104,67)"/>
211
+ <rect x="17" y="6" width="1" height="1" fill="rgb(209,111,71)"/>
212
+ <rect x="18" y="6" width="1" height="1" fill="rgb(196,83,57)"/>
213
+ <rect x="19" y="6" width="1" height="1" fill="rgb(196,83,57)"/>
214
+ <rect x="20" y="6" width="1" height="1" fill="rgb(219,133,80)"/>
215
+ <rect x="21" y="6" width="1" height="1" fill="rgb(216,126,77)"/>
216
+ <rect x="22" y="6" width="1" height="1" fill="rgb(183,57,45)"/>
217
+ <rect x="23" y="6" width="1" height="1" fill="rgb(181,56,47)"/>
218
+ <rect x="24" y="6" width="1" height="1" fill="rgb(183,57,45)"/>
219
+ <rect x="25" y="6" width="1" height="1" fill="rgb(239,208,119)"/>
220
+ <rect x="26" y="6" width="1" height="1" fill="rgb(239,208,119)"/>
221
+ <rect x="27" y="6" width="1" height="1" fill="rgb(242,234,134)"/>
222
+ <rect x="28" y="6" width="1" height="1" fill="rgb(239,208,119)"/>
223
+ <rect x="29" y="6" width="1" height="1" fill="rgb(239,208,119)"/>
224
+ <rect x="30" y="6" width="1" height="1" fill="rgb(160,47,56)"/>
225
+ <rect x="31" y="6" width="1" height="1" fill="rgb(179,55,48)"/>
226
+ <rect x="0" y="7" width="1" height="1" fill="rgb(238,199,114)"/>
227
+ <rect x="1" y="7" width="1" height="1" fill="rgb(162,48,55)"/>
228
+ <rect x="2" y="7" width="1" height="1" fill="rgb(167,50,53)"/>
229
+ <rect x="3" y="7" width="1" height="1" fill="rgb(157,46,57)"/>
230
+ <rect x="4" y="7" width="1" height="1" fill="rgb(150,43,60)"/>
231
+ <rect x="5" y="7" width="1" height="1" fill="rgb(148,42,61)"/>
232
+ <rect x="6" y="7" width="1" height="1" fill="rgb(183,57,45)"/>
233
+ <rect x="7" y="7" width="1" height="1" fill="rgb(239,208,119)"/>
234
+ <rect x="8" y="7" width="1" height="1" fill="rgb(239,208,119)"/>
235
+ <rect x="9" y="7" width="1" height="1" fill="rgb(240,221,126)"/>
236
+ <rect x="10" y="7" width="1" height="1" fill="rgb(239,208,119)"/>
237
+ <rect x="11" y="7" width="1" height="1" fill="rgb(240,216,124)"/>
238
+ <rect x="12" y="7" width="1" height="1" fill="rgb(240,221,126)"/>
239
+ <rect x="13" y="7" width="1" height="1" fill="rgb(199,90,61)"/>
240
+ <rect x="14" y="7" width="1" height="1" fill="rgb(238,199,114)"/>
241
+ <rect x="15" y="7" width="1" height="1" fill="rgb(239,208,119)"/>
242
+ <rect x="16" y="7" width="1" height="1" fill="rgb(206,104,67)"/>
243
+ <rect x="17" y="7" width="1" height="1" fill="rgb(213,119,74)"/>
244
+ <rect x="18" y="7" width="1" height="1" fill="rgb(203,97,64)"/>
245
+ <rect x="19" y="7" width="1" height="1" fill="rgb(232,161,94)"/>
246
+ <rect x="20" y="7" width="1" height="1" fill="rgb(219,133,80)"/>
247
+ <rect x="21" y="7" width="1" height="1" fill="rgb(209,111,71)"/>
248
+ <rect x="22" y="7" width="1" height="1" fill="rgb(213,119,74)"/>
249
+ <rect x="23" y="7" width="1" height="1" fill="rgb(239,212,121)"/>
250
+ <rect x="24" y="7" width="1" height="1" fill="rgb(239,208,119)"/>
251
+ <rect x="25" y="7" width="1" height="1" fill="rgb(236,181,104)"/>
252
+ <rect x="26" y="7" width="1" height="1" fill="rgb(239,208,119)"/>
253
+ <rect x="27" y="7" width="1" height="1" fill="rgb(239,208,119)"/>
254
+ <rect x="28" y="7" width="1" height="1" fill="rgb(239,208,119)"/>
255
+ <rect x="29" y="7" width="1" height="1" fill="rgb(236,181,104)"/>
256
+ <rect x="30" y="7" width="1" height="1" fill="rgb(239,208,119)"/>
257
+ <rect x="31" y="7" width="1" height="1" fill="rgb(239,212,121)"/>
258
+ <rect x="0" y="8" width="1" height="1" fill="rgb(238,203,116)"/>
259
+ <rect x="1" y="8" width="1" height="1" fill="rgb(164,49,54)"/>
260
+ <rect x="2" y="8" width="1" height="1" fill="rgb(164,49,54)"/>
261
+ <rect x="3" y="8" width="1" height="1" fill="rgb(160,47,56)"/>
262
+ <rect x="4" y="8" width="1" height="1" fill="rgb(150,43,60)"/>
263
+ <rect x="5" y="8" width="1" height="1" fill="rgb(150,43,60)"/>
264
+ <rect x="6" y="8" width="1" height="1" fill="rgb(181,56,47)"/>
265
+ <rect x="7" y="8" width="1" height="1" fill="rgb(239,212,121)"/>
266
+ <rect x="8" y="8" width="1" height="1" fill="rgb(242,234,134)"/>
267
+ <rect x="9" y="8" width="1" height="1" fill="rgb(242,234,134)"/>
268
+ <rect x="10" y="8" width="1" height="1" fill="rgb(240,216,124)"/>
269
+ <rect x="11" y="8" width="1" height="1" fill="rgb(240,216,124)"/>
270
+ <rect x="12" y="8" width="1" height="1" fill="rgb(240,216,124)"/>
271
+ <rect x="13" y="8" width="1" height="1" fill="rgb(216,126,77)"/>
272
+ <rect x="14" y="8" width="1" height="1" fill="rgb(238,203,116)"/>
273
+ <rect x="15" y="8" width="1" height="1" fill="rgb(238,199,114)"/>
274
+ <rect x="16" y="8" width="1" height="1" fill="rgb(242,234,134)"/>
275
+ <rect x="17" y="8" width="1" height="1" fill="rgb(238,203,116)"/>
276
+ <rect x="18" y="8" width="1" height="1" fill="rgb(229,154,90)"/>
277
+ <rect x="19" y="8" width="1" height="1" fill="rgb(232,161,94)"/>
278
+ <rect x="20" y="8" width="1" height="1" fill="rgb(229,154,90)"/>
279
+ <rect x="21" y="8" width="1" height="1" fill="rgb(238,203,116)"/>
280
+ <rect x="22" y="8" width="1" height="1" fill="rgb(242,234,134)"/>
281
+ <rect x="23" y="8" width="1" height="1" fill="rgb(242,234,134)"/>
282
+ <rect x="24" y="8" width="1" height="1" fill="rgb(239,208,119)"/>
283
+ <rect x="25" y="8" width="1" height="1" fill="rgb(239,208,119)"/>
284
+ <rect x="26" y="8" width="1" height="1" fill="rgb(235,172,99)"/>
285
+ <rect x="27" y="8" width="1" height="1" fill="rgb(239,208,119)"/>
286
+ <rect x="28" y="8" width="1" height="1" fill="rgb(235,172,99)"/>
287
+ <rect x="29" y="8" width="1" height="1" fill="rgb(239,208,119)"/>
288
+ <rect x="30" y="8" width="1" height="1" fill="rgb(239,208,119)"/>
289
+ <rect x="31" y="8" width="1" height="1" fill="rgb(242,234,134)"/>
290
+ <rect x="0" y="9" width="1" height="1" fill="rgb(148,42,61)"/>
291
+ <rect x="1" y="9" width="1" height="1" fill="rgb(148,42,61)"/>
292
+ <rect x="2" y="9" width="1" height="1" fill="rgb(162,48,55)"/>
293
+ <rect x="3" y="9" width="1" height="1" fill="rgb(150,43,60)"/>
294
+ <rect x="4" y="9" width="1" height="1" fill="rgb(150,43,60)"/>
295
+ <rect x="5" y="9" width="1" height="1" fill="rgb(179,55,48)"/>
296
+ <rect x="6" y="9" width="1" height="1" fill="rgb(183,57,45)"/>
297
+ <rect x="7" y="9" width="1" height="1" fill="rgb(213,119,74)"/>
298
+ <rect x="8" y="9" width="1" height="1" fill="rgb(242,234,134)"/>
299
+ <rect x="9" y="9" width="1" height="1" fill="rgb(242,234,134)"/>
300
+ <rect x="10" y="9" width="1" height="1" fill="rgb(240,216,124)"/>
301
+ <rect x="11" y="9" width="1" height="1" fill="rgb(240,216,124)"/>
302
+ <rect x="12" y="9" width="1" height="1" fill="rgb(240,221,126)"/>
303
+ <rect x="13" y="9" width="1" height="1" fill="rgb(193,76,54)"/>
304
+ <rect x="14" y="9" width="1" height="1" fill="rgb(206,104,67)"/>
305
+ <rect x="15" y="9" width="1" height="1" fill="rgb(216,126,77)"/>
306
+ <rect x="16" y="9" width="1" height="1" fill="rgb(240,216,124)"/>
307
+ <rect x="17" y="9" width="1" height="1" fill="rgb(242,234,134)"/>
308
+ <rect x="18" y="9" width="1" height="1" fill="rgb(239,208,119)"/>
309
+ <rect x="19" y="9" width="1" height="1" fill="rgb(226,147,87)"/>
310
+ <rect x="20" y="9" width="1" height="1" fill="rgb(239,208,119)"/>
311
+ <rect x="21" y="9" width="1" height="1" fill="rgb(241,225,129)"/>
312
+ <rect x="22" y="9" width="1" height="1" fill="rgb(242,234,134)"/>
313
+ <rect x="23" y="9" width="1" height="1" fill="rgb(242,234,134)"/>
314
+ <rect x="24" y="9" width="1" height="1" fill="rgb(240,221,126)"/>
315
+ <rect x="25" y="9" width="1" height="1" fill="rgb(239,208,119)"/>
316
+ <rect x="26" y="9" width="1" height="1" fill="rgb(239,208,119)"/>
317
+ <rect x="27" y="9" width="1" height="1" fill="rgb(213,119,74)"/>
318
+ <rect x="28" y="9" width="1" height="1" fill="rgb(239,208,119)"/>
319
+ <rect x="29" y="9" width="1" height="1" fill="rgb(239,208,119)"/>
320
+ <rect x="30" y="9" width="1" height="1" fill="rgb(242,234,134)"/>
321
+ <rect x="31" y="9" width="1" height="1" fill="rgb(240,216,124)"/>
322
+ <rect x="0" y="10" width="1" height="1" fill="rgb(150,43,60)"/>
323
+ <rect x="1" y="10" width="1" height="1" fill="rgb(150,43,60)"/>
324
+ <rect x="2" y="10" width="1" height="1" fill="rgb(148,42,61)"/>
325
+ <rect x="3" y="10" width="1" height="1" fill="rgb(150,43,60)"/>
326
+ <rect x="4" y="10" width="1" height="1" fill="rgb(150,43,60)"/>
327
+ <rect x="5" y="10" width="1" height="1" fill="rgb(176,54,49)"/>
328
+ <rect x="6" y="10" width="1" height="1" fill="rgb(216,126,77)"/>
329
+ <rect x="7" y="10" width="1" height="1" fill="rgb(209,111,71)"/>
330
+ <rect x="8" y="10" width="1" height="1" fill="rgb(238,203,116)"/>
331
+ <rect x="9" y="10" width="1" height="1" fill="rgb(241,225,129)"/>
332
+ <rect x="10" y="10" width="1" height="1" fill="rgb(240,221,126)"/>
333
+ <rect x="11" y="10" width="1" height="1" fill="rgb(181,56,47)"/>
334
+ <rect x="12" y="10" width="1" height="1" fill="rgb(183,57,45)"/>
335
+ <rect x="13" y="10" width="1" height="1" fill="rgb(181,56,47)"/>
336
+ <rect x="14" y="10" width="1" height="1" fill="rgb(174,53,50)"/>
337
+ <rect x="15" y="10" width="1" height="1" fill="rgb(153,44,59)"/>
338
+ <rect x="16" y="10" width="1" height="1" fill="rgb(242,234,134)"/>
339
+ <rect x="17" y="10" width="1" height="1" fill="rgb(238,203,116)"/>
340
+ <rect x="18" y="10" width="1" height="1" fill="rgb(229,154,90)"/>
341
+ <rect x="19" y="10" width="1" height="1" fill="rgb(232,161,94)"/>
342
+ <rect x="20" y="10" width="1" height="1" fill="rgb(229,154,90)"/>
343
+ <rect x="21" y="10" width="1" height="1" fill="rgb(240,221,126)"/>
344
+ <rect x="22" y="10" width="1" height="1" fill="rgb(240,216,124)"/>
345
+ <rect x="23" y="10" width="1" height="1" fill="rgb(240,216,124)"/>
346
+ <rect x="24" y="10" width="1" height="1" fill="rgb(239,208,119)"/>
347
+ <rect x="25" y="10" width="1" height="1" fill="rgb(239,208,119)"/>
348
+ <rect x="26" y="10" width="1" height="1" fill="rgb(235,172,99)"/>
349
+ <rect x="27" y="10" width="1" height="1" fill="rgb(239,208,119)"/>
350
+ <rect x="28" y="10" width="1" height="1" fill="rgb(235,172,99)"/>
351
+ <rect x="29" y="10" width="1" height="1" fill="rgb(239,208,119)"/>
352
+ <rect x="30" y="10" width="1" height="1" fill="rgb(239,208,119)"/>
353
+ <rect x="31" y="10" width="1" height="1" fill="rgb(242,234,134)"/>
354
+ <rect x="0" y="11" width="1" height="1" fill="rgb(155,45,58)"/>
355
+ <rect x="1" y="11" width="1" height="1" fill="rgb(150,43,60)"/>
356
+ <rect x="2" y="11" width="1" height="1" fill="rgb(148,42,61)"/>
357
+ <rect x="3" y="11" width="1" height="1" fill="rgb(148,42,61)"/>
358
+ <rect x="4" y="11" width="1" height="1" fill="rgb(148,42,61)"/>
359
+ <rect x="5" y="11" width="1" height="1" fill="rgb(167,50,53)"/>
360
+ <rect x="6" y="11" width="1" height="1" fill="rgb(219,133,80)"/>
361
+ <rect x="7" y="11" width="1" height="1" fill="rgb(219,133,80)"/>
362
+ <rect x="8" y="11" width="1" height="1" fill="rgb(229,154,90)"/>
363
+ <rect x="9" y="11" width="1" height="1" fill="rgb(239,208,119)"/>
364
+ <rect x="10" y="11" width="1" height="1" fill="rgb(229,154,90)"/>
365
+ <rect x="11" y="11" width="1" height="1" fill="rgb(162,48,55)"/>
366
+ <rect x="12" y="11" width="1" height="1" fill="rgb(183,57,45)"/>
367
+ <rect x="13" y="11" width="1" height="1" fill="rgb(176,54,49)"/>
368
+ <rect x="14" y="11" width="1" height="1" fill="rgb(174,53,50)"/>
369
+ <rect x="15" y="11" width="1" height="1" fill="rgb(148,42,61)"/>
370
+ <rect x="16" y="11" width="1" height="1" fill="rgb(213,119,74)"/>
371
+ <rect x="17" y="11" width="1" height="1" fill="rgb(209,111,71)"/>
372
+ <rect x="18" y="11" width="1" height="1" fill="rgb(169,51,52)"/>
373
+ <rect x="19" y="11" width="1" height="1" fill="rgb(232,161,94)"/>
374
+ <rect x="20" y="11" width="1" height="1" fill="rgb(162,48,55)"/>
375
+ <rect x="21" y="11" width="1" height="1" fill="rgb(181,56,47)"/>
376
+ <rect x="22" y="11" width="1" height="1" fill="rgb(240,216,124)"/>
377
+ <rect x="23" y="11" width="1" height="1" fill="rgb(240,216,124)"/>
378
+ <rect x="24" y="11" width="1" height="1" fill="rgb(240,216,124)"/>
379
+ <rect x="25" y="11" width="1" height="1" fill="rgb(236,181,104)"/>
380
+ <rect x="26" y="11" width="1" height="1" fill="rgb(239,208,119)"/>
381
+ <rect x="27" y="11" width="1" height="1" fill="rgb(239,208,119)"/>
382
+ <rect x="28" y="11" width="1" height="1" fill="rgb(239,208,119)"/>
383
+ <rect x="29" y="11" width="1" height="1" fill="rgb(236,181,104)"/>
384
+ <rect x="30" y="11" width="1" height="1" fill="rgb(239,208,119)"/>
385
+ <rect x="31" y="11" width="1" height="1" fill="rgb(239,212,121)"/>
386
+ <rect x="0" y="12" width="1" height="1" fill="rgb(148,42,61)"/>
387
+ <rect x="1" y="12" width="1" height="1" fill="rgb(153,44,59)"/>
388
+ <rect x="2" y="12" width="1" height="1" fill="rgb(150,43,60)"/>
389
+ <rect x="3" y="12" width="1" height="1" fill="rgb(150,43,60)"/>
390
+ <rect x="4" y="12" width="1" height="1" fill="rgb(162,48,55)"/>
391
+ <rect x="5" y="12" width="1" height="1" fill="rgb(206,104,67)"/>
392
+ <rect x="6" y="12" width="1" height="1" fill="rgb(196,83,57)"/>
393
+ <rect x="7" y="12" width="1" height="1" fill="rgb(232,161,94)"/>
394
+ <rect x="8" y="12" width="1" height="1" fill="rgb(232,161,94)"/>
395
+ <rect x="9" y="12" width="1" height="1" fill="rgb(226,147,87)"/>
396
+ <rect x="10" y="12" width="1" height="1" fill="rgb(232,161,94)"/>
397
+ <rect x="11" y="12" width="1" height="1" fill="rgb(232,161,94)"/>
398
+ <rect x="12" y="12" width="1" height="1" fill="rgb(171,52,51)"/>
399
+ <rect x="13" y="12" width="1" height="1" fill="rgb(148,42,61)"/>
400
+ <rect x="14" y="12" width="1" height="1" fill="rgb(153,44,59)"/>
401
+ <rect x="15" y="12" width="1" height="1" fill="rgb(153,44,59)"/>
402
+ <rect x="16" y="12" width="1" height="1" fill="rgb(206,104,67)"/>
403
+ <rect x="17" y="12" width="1" height="1" fill="rgb(193,76,54)"/>
404
+ <rect x="18" y="12" width="1" height="1" fill="rgb(153,44,59)"/>
405
+ <rect x="19" y="12" width="1" height="1" fill="rgb(171,52,51)"/>
406
+ <rect x="20" y="12" width="1" height="1" fill="rgb(183,57,45)"/>
407
+ <rect x="21" y="12" width="1" height="1" fill="rgb(183,57,45)"/>
408
+ <rect x="22" y="12" width="1" height="1" fill="rgb(240,221,126)"/>
409
+ <rect x="23" y="12" width="1" height="1" fill="rgb(240,216,124)"/>
410
+ <rect x="24" y="12" width="1" height="1" fill="rgb(240,221,126)"/>
411
+ <rect x="25" y="12" width="1" height="1" fill="rgb(239,208,119)"/>
412
+ <rect x="26" y="12" width="1" height="1" fill="rgb(239,208,119)"/>
413
+ <rect x="27" y="12" width="1" height="1" fill="rgb(239,208,119)"/>
414
+ <rect x="28" y="12" width="1" height="1" fill="rgb(239,208,119)"/>
415
+ <rect x="29" y="12" width="1" height="1" fill="rgb(239,208,119)"/>
416
+ <rect x="30" y="12" width="1" height="1" fill="rgb(190,69,51)"/>
417
+ <rect x="31" y="12" width="1" height="1" fill="rgb(196,83,57)"/>
418
+ <rect x="0" y="13" width="1" height="1" fill="rgb(157,46,57)"/>
419
+ <rect x="1" y="13" width="1" height="1" fill="rgb(160,47,56)"/>
420
+ <rect x="2" y="13" width="1" height="1" fill="rgb(148,42,61)"/>
421
+ <rect x="3" y="13" width="1" height="1" fill="rgb(150,43,60)"/>
422
+ <rect x="4" y="13" width="1" height="1" fill="rgb(162,48,55)"/>
423
+ <rect x="5" y="13" width="1" height="1" fill="rgb(206,104,67)"/>
424
+ <rect x="6" y="13" width="1" height="1" fill="rgb(196,83,57)"/>
425
+ <rect x="7" y="13" width="1" height="1" fill="rgb(203,97,64)"/>
426
+ <rect x="8" y="13" width="1" height="1" fill="rgb(229,154,90)"/>
427
+ <rect x="9" y="13" width="1" height="1" fill="rgb(239,208,119)"/>
428
+ <rect x="10" y="13" width="1" height="1" fill="rgb(229,154,90)"/>
429
+ <rect x="11" y="13" width="1" height="1" fill="rgb(169,51,52)"/>
430
+ <rect x="12" y="13" width="1" height="1" fill="rgb(153,44,59)"/>
431
+ <rect x="13" y="13" width="1" height="1" fill="rgb(153,44,59)"/>
432
+ <rect x="14" y="13" width="1" height="1" fill="rgb(153,44,59)"/>
433
+ <rect x="15" y="13" width="1" height="1" fill="rgb(153,44,59)"/>
434
+ <rect x="16" y="13" width="1" height="1" fill="rgb(186,62,47)"/>
435
+ <rect x="17" y="13" width="1" height="1" fill="rgb(190,69,51)"/>
436
+ <rect x="18" y="13" width="1" height="1" fill="rgb(153,44,59)"/>
437
+ <rect x="19" y="13" width="1" height="1" fill="rgb(148,42,61)"/>
438
+ <rect x="20" y="13" width="1" height="1" fill="rgb(176,54,49)"/>
439
+ <rect x="21" y="13" width="1" height="1" fill="rgb(181,56,47)"/>
440
+ <rect x="22" y="13" width="1" height="1" fill="rgb(193,76,54)"/>
441
+ <rect x="23" y="13" width="1" height="1" fill="rgb(216,126,77)"/>
442
+ <rect x="24" y="13" width="1" height="1" fill="rgb(199,90,61)"/>
443
+ <rect x="25" y="13" width="1" height="1" fill="rgb(238,199,114)"/>
444
+ <rect x="26" y="13" width="1" height="1" fill="rgb(239,208,119)"/>
445
+ <rect x="27" y="13" width="1" height="1" fill="rgb(241,225,129)"/>
446
+ <rect x="28" y="13" width="1" height="1" fill="rgb(240,221,126)"/>
447
+ <rect x="29" y="13" width="1" height="1" fill="rgb(239,212,121)"/>
448
+ <rect x="30" y="13" width="1" height="1" fill="rgb(190,69,51)"/>
449
+ <rect x="31" y="13" width="1" height="1" fill="rgb(193,76,54)"/>
450
+ <rect x="0" y="14" width="1" height="1" fill="rgb(155,45,58)"/>
451
+ <rect x="1" y="14" width="1" height="1" fill="rgb(160,47,56)"/>
452
+ <rect x="2" y="14" width="1" height="1" fill="rgb(157,46,57)"/>
453
+ <rect x="3" y="14" width="1" height="1" fill="rgb(148,42,61)"/>
454
+ <rect x="4" y="14" width="1" height="1" fill="rgb(157,46,57)"/>
455
+ <rect x="5" y="14" width="1" height="1" fill="rgb(183,57,45)"/>
456
+ <rect x="6" y="14" width="1" height="1" fill="rgb(209,111,71)"/>
457
+ <rect x="7" y="14" width="1" height="1" fill="rgb(213,119,74)"/>
458
+ <rect x="8" y="14" width="1" height="1" fill="rgb(238,203,116)"/>
459
+ <rect x="9" y="14" width="1" height="1" fill="rgb(242,234,134)"/>
460
+ <rect x="10" y="14" width="1" height="1" fill="rgb(238,203,116)"/>
461
+ <rect x="11" y="14" width="1" height="1" fill="rgb(209,111,71)"/>
462
+ <rect x="12" y="14" width="1" height="1" fill="rgb(193,76,54)"/>
463
+ <rect x="13" y="14" width="1" height="1" fill="rgb(190,69,51)"/>
464
+ <rect x="14" y="14" width="1" height="1" fill="rgb(155,45,58)"/>
465
+ <rect x="15" y="14" width="1" height="1" fill="rgb(150,43,60)"/>
466
+ <rect x="16" y="14" width="1" height="1" fill="rgb(183,57,45)"/>
467
+ <rect x="17" y="14" width="1" height="1" fill="rgb(155,45,58)"/>
468
+ <rect x="18" y="14" width="1" height="1" fill="rgb(153,44,59)"/>
469
+ <rect x="19" y="14" width="1" height="1" fill="rgb(153,44,59)"/>
470
+ <rect x="20" y="14" width="1" height="1" fill="rgb(174,53,50)"/>
471
+ <rect x="21" y="14" width="1" height="1" fill="rgb(174,53,50)"/>
472
+ <rect x="22" y="14" width="1" height="1" fill="rgb(206,104,67)"/>
473
+ <rect x="23" y="14" width="1" height="1" fill="rgb(238,203,116)"/>
474
+ <rect x="24" y="14" width="1" height="1" fill="rgb(238,199,114)"/>
475
+ <rect x="25" y="14" width="1" height="1" fill="rgb(238,199,114)"/>
476
+ <rect x="26" y="14" width="1" height="1" fill="rgb(241,230,131)"/>
477
+ <rect x="27" y="14" width="1" height="1" fill="rgb(241,230,131)"/>
478
+ <rect x="28" y="14" width="1" height="1" fill="rgb(240,216,124)"/>
479
+ <rect x="29" y="14" width="1" height="1" fill="rgb(206,104,67)"/>
480
+ <rect x="30" y="14" width="1" height="1" fill="rgb(181,56,47)"/>
481
+ <rect x="31" y="14" width="1" height="1" fill="rgb(176,54,49)"/>
482
+ <rect x="0" y="15" width="1" height="1" fill="rgb(155,45,58)"/>
483
+ <rect x="1" y="15" width="1" height="1" fill="rgb(155,45,58)"/>
484
+ <rect x="2" y="15" width="1" height="1" fill="rgb(148,42,61)"/>
485
+ <rect x="3" y="15" width="1" height="1" fill="rgb(148,42,61)"/>
486
+ <rect x="4" y="15" width="1" height="1" fill="rgb(162,48,55)"/>
487
+ <rect x="5" y="15" width="1" height="1" fill="rgb(181,56,47)"/>
488
+ <rect x="6" y="15" width="1" height="1" fill="rgb(206,104,67)"/>
489
+ <rect x="7" y="15" width="1" height="1" fill="rgb(206,104,67)"/>
490
+ <rect x="8" y="15" width="1" height="1" fill="rgb(242,234,134)"/>
491
+ <rect x="9" y="15" width="1" height="1" fill="rgb(240,216,124)"/>
492
+ <rect x="10" y="15" width="1" height="1" fill="rgb(242,234,134)"/>
493
+ <rect x="11" y="15" width="1" height="1" fill="rgb(213,119,74)"/>
494
+ <rect x="12" y="15" width="1" height="1" fill="rgb(206,104,67)"/>
495
+ <rect x="13" y="15" width="1" height="1" fill="rgb(186,62,47)"/>
496
+ <rect x="14" y="15" width="1" height="1" fill="rgb(183,57,45)"/>
497
+ <rect x="15" y="15" width="1" height="1" fill="rgb(179,55,48)"/>
498
+ <rect x="16" y="15" width="1" height="1" fill="rgb(179,55,48)"/>
499
+ <rect x="17" y="15" width="1" height="1" fill="rgb(150,43,60)"/>
500
+ <rect x="18" y="15" width="1" height="1" fill="rgb(153,44,59)"/>
501
+ <rect x="19" y="15" width="1" height="1" fill="rgb(153,44,59)"/>
502
+ <rect x="20" y="15" width="1" height="1" fill="rgb(148,42,61)"/>
503
+ <rect x="21" y="15" width="1" height="1" fill="rgb(153,44,59)"/>
504
+ <rect x="22" y="15" width="1" height="1" fill="rgb(216,126,77)"/>
505
+ <rect x="23" y="15" width="1" height="1" fill="rgb(238,199,114)"/>
506
+ <rect x="24" y="15" width="1" height="1" fill="rgb(239,208,119)"/>
507
+ <rect x="25" y="15" width="1" height="1" fill="rgb(238,199,114)"/>
508
+ <rect x="26" y="15" width="1" height="1" fill="rgb(150,43,60)"/>
509
+ <rect x="27" y="15" width="1" height="1" fill="rgb(241,225,129)"/>
510
+ <rect x="28" y="15" width="1" height="1" fill="rgb(240,221,126)"/>
511
+ <rect x="29" y="15" width="1" height="1" fill="rgb(203,97,64)"/>
512
+ <rect x="30" y="15" width="1" height="1" fill="rgb(181,56,47)"/>
513
+ <rect x="31" y="15" width="1" height="1" fill="rgb(181,56,47)"/>
514
+ <rect x="0" y="16" width="1" height="1" fill="rgb(181,56,47)"/>
515
+ <rect x="1" y="16" width="1" height="1" fill="rgb(181,56,47)"/>
516
+ <rect x="2" y="16" width="1" height="1" fill="rgb(203,97,64)"/>
517
+ <rect x="3" y="16" width="1" height="1" fill="rgb(240,221,126)"/>
518
+ <rect x="4" y="16" width="1" height="1" fill="rgb(241,225,129)"/>
519
+ <rect x="5" y="16" width="1" height="1" fill="rgb(150,43,60)"/>
520
+ <rect x="6" y="16" width="1" height="1" fill="rgb(238,199,114)"/>
521
+ <rect x="7" y="16" width="1" height="1" fill="rgb(239,208,119)"/>
522
+ <rect x="8" y="16" width="1" height="1" fill="rgb(238,199,114)"/>
523
+ <rect x="9" y="16" width="1" height="1" fill="rgb(216,126,77)"/>
524
+ <rect x="10" y="16" width="1" height="1" fill="rgb(153,44,59)"/>
525
+ <rect x="11" y="16" width="1" height="1" fill="rgb(148,42,61)"/>
526
+ <rect x="12" y="16" width="1" height="1" fill="rgb(153,44,59)"/>
527
+ <rect x="13" y="16" width="1" height="1" fill="rgb(153,44,59)"/>
528
+ <rect x="14" y="16" width="1" height="1" fill="rgb(150,43,60)"/>
529
+ <rect x="15" y="16" width="1" height="1" fill="rgb(179,55,48)"/>
530
+ <rect x="16" y="16" width="1" height="1" fill="rgb(179,55,48)"/>
531
+ <rect x="17" y="16" width="1" height="1" fill="rgb(183,57,45)"/>
532
+ <rect x="18" y="16" width="1" height="1" fill="rgb(186,62,47)"/>
533
+ <rect x="19" y="16" width="1" height="1" fill="rgb(206,104,67)"/>
534
+ <rect x="20" y="16" width="1" height="1" fill="rgb(213,119,74)"/>
535
+ <rect x="21" y="16" width="1" height="1" fill="rgb(242,234,134)"/>
536
+ <rect x="22" y="16" width="1" height="1" fill="rgb(240,216,124)"/>
537
+ <rect x="23" y="16" width="1" height="1" fill="rgb(242,234,134)"/>
538
+ <rect x="24" y="16" width="1" height="1" fill="rgb(206,104,67)"/>
539
+ <rect x="25" y="16" width="1" height="1" fill="rgb(206,104,67)"/>
540
+ <rect x="26" y="16" width="1" height="1" fill="rgb(181,56,47)"/>
541
+ <rect x="27" y="16" width="1" height="1" fill="rgb(162,48,55)"/>
542
+ <rect x="28" y="16" width="1" height="1" fill="rgb(148,42,61)"/>
543
+ <rect x="29" y="16" width="1" height="1" fill="rgb(148,42,61)"/>
544
+ <rect x="30" y="16" width="1" height="1" fill="rgb(155,45,58)"/>
545
+ <rect x="31" y="16" width="1" height="1" fill="rgb(155,45,58)"/>
546
+ <rect x="0" y="17" width="1" height="1" fill="rgb(176,54,49)"/>
547
+ <rect x="1" y="17" width="1" height="1" fill="rgb(181,56,47)"/>
548
+ <rect x="2" y="17" width="1" height="1" fill="rgb(206,104,67)"/>
549
+ <rect x="3" y="17" width="1" height="1" fill="rgb(240,216,124)"/>
550
+ <rect x="4" y="17" width="1" height="1" fill="rgb(241,230,131)"/>
551
+ <rect x="5" y="17" width="1" height="1" fill="rgb(241,230,131)"/>
552
+ <rect x="6" y="17" width="1" height="1" fill="rgb(238,199,114)"/>
553
+ <rect x="7" y="17" width="1" height="1" fill="rgb(238,199,114)"/>
554
+ <rect x="8" y="17" width="1" height="1" fill="rgb(238,203,116)"/>
555
+ <rect x="9" y="17" width="1" height="1" fill="rgb(206,104,67)"/>
556
+ <rect x="10" y="17" width="1" height="1" fill="rgb(174,53,50)"/>
557
+ <rect x="11" y="17" width="1" height="1" fill="rgb(174,53,50)"/>
558
+ <rect x="12" y="17" width="1" height="1" fill="rgb(153,44,59)"/>
559
+ <rect x="13" y="17" width="1" height="1" fill="rgb(153,44,59)"/>
560
+ <rect x="14" y="17" width="1" height="1" fill="rgb(155,45,58)"/>
561
+ <rect x="15" y="17" width="1" height="1" fill="rgb(183,57,45)"/>
562
+ <rect x="16" y="17" width="1" height="1" fill="rgb(150,43,60)"/>
563
+ <rect x="17" y="17" width="1" height="1" fill="rgb(155,45,58)"/>
564
+ <rect x="18" y="17" width="1" height="1" fill="rgb(190,69,51)"/>
565
+ <rect x="19" y="17" width="1" height="1" fill="rgb(193,76,54)"/>
566
+ <rect x="20" y="17" width="1" height="1" fill="rgb(209,111,71)"/>
567
+ <rect x="21" y="17" width="1" height="1" fill="rgb(238,203,116)"/>
568
+ <rect x="22" y="17" width="1" height="1" fill="rgb(242,234,134)"/>
569
+ <rect x="23" y="17" width="1" height="1" fill="rgb(238,203,116)"/>
570
+ <rect x="24" y="17" width="1" height="1" fill="rgb(213,119,74)"/>
571
+ <rect x="25" y="17" width="1" height="1" fill="rgb(209,111,71)"/>
572
+ <rect x="26" y="17" width="1" height="1" fill="rgb(183,57,45)"/>
573
+ <rect x="27" y="17" width="1" height="1" fill="rgb(157,46,57)"/>
574
+ <rect x="28" y="17" width="1" height="1" fill="rgb(148,42,61)"/>
575
+ <rect x="29" y="17" width="1" height="1" fill="rgb(157,46,57)"/>
576
+ <rect x="30" y="17" width="1" height="1" fill="rgb(160,47,56)"/>
577
+ <rect x="31" y="17" width="1" height="1" fill="rgb(155,45,58)"/>
578
+ <rect x="0" y="18" width="1" height="1" fill="rgb(193,76,54)"/>
579
+ <rect x="1" y="18" width="1" height="1" fill="rgb(190,69,51)"/>
580
+ <rect x="2" y="18" width="1" height="1" fill="rgb(239,212,121)"/>
581
+ <rect x="3" y="18" width="1" height="1" fill="rgb(240,221,126)"/>
582
+ <rect x="4" y="18" width="1" height="1" fill="rgb(241,225,129)"/>
583
+ <rect x="5" y="18" width="1" height="1" fill="rgb(239,208,119)"/>
584
+ <rect x="6" y="18" width="1" height="1" fill="rgb(238,199,114)"/>
585
+ <rect x="7" y="18" width="1" height="1" fill="rgb(199,90,61)"/>
586
+ <rect x="8" y="18" width="1" height="1" fill="rgb(216,126,77)"/>
587
+ <rect x="9" y="18" width="1" height="1" fill="rgb(193,76,54)"/>
588
+ <rect x="10" y="18" width="1" height="1" fill="rgb(181,56,47)"/>
589
+ <rect x="11" y="18" width="1" height="1" fill="rgb(176,54,49)"/>
590
+ <rect x="12" y="18" width="1" height="1" fill="rgb(148,42,61)"/>
591
+ <rect x="13" y="18" width="1" height="1" fill="rgb(153,44,59)"/>
592
+ <rect x="14" y="18" width="1" height="1" fill="rgb(190,69,51)"/>
593
+ <rect x="15" y="18" width="1" height="1" fill="rgb(186,62,47)"/>
594
+ <rect x="16" y="18" width="1" height="1" fill="rgb(153,44,59)"/>
595
+ <rect x="17" y="18" width="1" height="1" fill="rgb(153,44,59)"/>
596
+ <rect x="18" y="18" width="1" height="1" fill="rgb(153,44,59)"/>
597
+ <rect x="19" y="18" width="1" height="1" fill="rgb(153,44,59)"/>
598
+ <rect x="20" y="18" width="1" height="1" fill="rgb(169,51,52)"/>
599
+ <rect x="21" y="18" width="1" height="1" fill="rgb(229,154,90)"/>
600
+ <rect x="22" y="18" width="1" height="1" fill="rgb(239,208,119)"/>
601
+ <rect x="23" y="18" width="1" height="1" fill="rgb(229,154,90)"/>
602
+ <rect x="24" y="18" width="1" height="1" fill="rgb(203,97,64)"/>
603
+ <rect x="25" y="18" width="1" height="1" fill="rgb(196,83,57)"/>
604
+ <rect x="26" y="18" width="1" height="1" fill="rgb(206,104,67)"/>
605
+ <rect x="27" y="18" width="1" height="1" fill="rgb(162,48,55)"/>
606
+ <rect x="28" y="18" width="1" height="1" fill="rgb(150,43,60)"/>
607
+ <rect x="29" y="18" width="1" height="1" fill="rgb(148,42,61)"/>
608
+ <rect x="30" y="18" width="1" height="1" fill="rgb(160,47,56)"/>
609
+ <rect x="31" y="18" width="1" height="1" fill="rgb(157,46,57)"/>
610
+ <rect x="0" y="19" width="1" height="1" fill="rgb(196,83,57)"/>
611
+ <rect x="1" y="19" width="1" height="1" fill="rgb(190,69,51)"/>
612
+ <rect x="2" y="19" width="1" height="1" fill="rgb(239,208,119)"/>
613
+ <rect x="3" y="19" width="1" height="1" fill="rgb(239,208,119)"/>
614
+ <rect x="4" y="19" width="1" height="1" fill="rgb(239,208,119)"/>
615
+ <rect x="5" y="19" width="1" height="1" fill="rgb(239,208,119)"/>
616
+ <rect x="6" y="19" width="1" height="1" fill="rgb(239,208,119)"/>
617
+ <rect x="7" y="19" width="1" height="1" fill="rgb(240,221,126)"/>
618
+ <rect x="8" y="19" width="1" height="1" fill="rgb(240,216,124)"/>
619
+ <rect x="9" y="19" width="1" height="1" fill="rgb(240,221,126)"/>
620
+ <rect x="10" y="19" width="1" height="1" fill="rgb(183,57,45)"/>
621
+ <rect x="11" y="19" width="1" height="1" fill="rgb(183,57,45)"/>
622
+ <rect x="12" y="19" width="1" height="1" fill="rgb(171,52,51)"/>
623
+ <rect x="13" y="19" width="1" height="1" fill="rgb(153,44,59)"/>
624
+ <rect x="14" y="19" width="1" height="1" fill="rgb(193,76,54)"/>
625
+ <rect x="15" y="19" width="1" height="1" fill="rgb(206,104,67)"/>
626
+ <rect x="16" y="19" width="1" height="1" fill="rgb(153,44,59)"/>
627
+ <rect x="17" y="19" width="1" height="1" fill="rgb(153,44,59)"/>
628
+ <rect x="18" y="19" width="1" height="1" fill="rgb(148,42,61)"/>
629
+ <rect x="19" y="19" width="1" height="1" fill="rgb(171,52,51)"/>
630
+ <rect x="20" y="19" width="1" height="1" fill="rgb(232,161,94)"/>
631
+ <rect x="21" y="19" width="1" height="1" fill="rgb(232,161,94)"/>
632
+ <rect x="22" y="19" width="1" height="1" fill="rgb(226,147,87)"/>
633
+ <rect x="23" y="19" width="1" height="1" fill="rgb(232,161,94)"/>
634
+ <rect x="24" y="19" width="1" height="1" fill="rgb(232,161,94)"/>
635
+ <rect x="25" y="19" width="1" height="1" fill="rgb(196,83,57)"/>
636
+ <rect x="26" y="19" width="1" height="1" fill="rgb(206,104,67)"/>
637
+ <rect x="27" y="19" width="1" height="1" fill="rgb(162,48,55)"/>
638
+ <rect x="28" y="19" width="1" height="1" fill="rgb(150,43,60)"/>
639
+ <rect x="29" y="19" width="1" height="1" fill="rgb(150,43,60)"/>
640
+ <rect x="30" y="19" width="1" height="1" fill="rgb(153,44,59)"/>
641
+ <rect x="31" y="19" width="1" height="1" fill="rgb(148,42,61)"/>
642
+ <rect x="0" y="20" width="1" height="1" fill="rgb(239,212,121)"/>
643
+ <rect x="1" y="20" width="1" height="1" fill="rgb(239,208,119)"/>
644
+ <rect x="2" y="20" width="1" height="1" fill="rgb(236,181,104)"/>
645
+ <rect x="3" y="20" width="1" height="1" fill="rgb(239,208,119)"/>
646
+ <rect x="4" y="20" width="1" height="1" fill="rgb(239,208,119)"/>
647
+ <rect x="5" y="20" width="1" height="1" fill="rgb(239,208,119)"/>
648
+ <rect x="6" y="20" width="1" height="1" fill="rgb(236,181,104)"/>
649
+ <rect x="7" y="20" width="1" height="1" fill="rgb(240,216,124)"/>
650
+ <rect x="8" y="20" width="1" height="1" fill="rgb(240,216,124)"/>
651
+ <rect x="9" y="20" width="1" height="1" fill="rgb(240,216,124)"/>
652
+ <rect x="10" y="20" width="1" height="1" fill="rgb(181,56,47)"/>
653
+ <rect x="11" y="20" width="1" height="1" fill="rgb(162,48,55)"/>
654
+ <rect x="12" y="20" width="1" height="1" fill="rgb(232,161,94)"/>
655
+ <rect x="13" y="20" width="1" height="1" fill="rgb(169,51,52)"/>
656
+ <rect x="14" y="20" width="1" height="1" fill="rgb(209,111,71)"/>
657
+ <rect x="15" y="20" width="1" height="1" fill="rgb(213,119,74)"/>
658
+ <rect x="16" y="20" width="1" height="1" fill="rgb(148,42,61)"/>
659
+ <rect x="17" y="20" width="1" height="1" fill="rgb(174,53,50)"/>
660
+ <rect x="18" y="20" width="1" height="1" fill="rgb(176,54,49)"/>
661
+ <rect x="19" y="20" width="1" height="1" fill="rgb(183,57,45)"/>
662
+ <rect x="20" y="20" width="1" height="1" fill="rgb(162,48,55)"/>
663
+ <rect x="21" y="20" width="1" height="1" fill="rgb(229,154,90)"/>
664
+ <rect x="22" y="20" width="1" height="1" fill="rgb(239,208,119)"/>
665
+ <rect x="23" y="20" width="1" height="1" fill="rgb(229,154,90)"/>
666
+ <rect x="24" y="20" width="1" height="1" fill="rgb(219,133,80)"/>
667
+ <rect x="25" y="20" width="1" height="1" fill="rgb(219,133,80)"/>
668
+ <rect x="26" y="20" width="1" height="1" fill="rgb(167,50,53)"/>
669
+ <rect x="27" y="20" width="1" height="1" fill="rgb(148,42,61)"/>
670
+ <rect x="28" y="20" width="1" height="1" fill="rgb(148,42,61)"/>
671
+ <rect x="29" y="20" width="1" height="1" fill="rgb(148,42,61)"/>
672
+ <rect x="30" y="20" width="1" height="1" fill="rgb(150,43,60)"/>
673
+ <rect x="31" y="20" width="1" height="1" fill="rgb(155,45,58)"/>
674
+ <rect x="0" y="21" width="1" height="1" fill="rgb(242,234,134)"/>
675
+ <rect x="1" y="21" width="1" height="1" fill="rgb(239,208,119)"/>
676
+ <rect x="2" y="21" width="1" height="1" fill="rgb(239,208,119)"/>
677
+ <rect x="3" y="21" width="1" height="1" fill="rgb(235,172,99)"/>
678
+ <rect x="4" y="21" width="1" height="1" fill="rgb(239,208,119)"/>
679
+ <rect x="5" y="21" width="1" height="1" fill="rgb(235,172,99)"/>
680
+ <rect x="6" y="21" width="1" height="1" fill="rgb(239,208,119)"/>
681
+ <rect x="7" y="21" width="1" height="1" fill="rgb(239,208,119)"/>
682
+ <rect x="8" y="21" width="1" height="1" fill="rgb(240,216,124)"/>
683
+ <rect x="9" y="21" width="1" height="1" fill="rgb(240,216,124)"/>
684
+ <rect x="10" y="21" width="1" height="1" fill="rgb(240,221,126)"/>
685
+ <rect x="11" y="21" width="1" height="1" fill="rgb(229,154,90)"/>
686
+ <rect x="12" y="21" width="1" height="1" fill="rgb(232,161,94)"/>
687
+ <rect x="13" y="21" width="1" height="1" fill="rgb(229,154,90)"/>
688
+ <rect x="14" y="21" width="1" height="1" fill="rgb(238,203,116)"/>
689
+ <rect x="15" y="21" width="1" height="1" fill="rgb(242,234,134)"/>
690
+ <rect x="16" y="21" width="1" height="1" fill="rgb(153,44,59)"/>
691
+ <rect x="17" y="21" width="1" height="1" fill="rgb(174,53,50)"/>
692
+ <rect x="18" y="21" width="1" height="1" fill="rgb(181,56,47)"/>
693
+ <rect x="19" y="21" width="1" height="1" fill="rgb(183,57,45)"/>
694
+ <rect x="20" y="21" width="1" height="1" fill="rgb(181,56,47)"/>
695
+ <rect x="21" y="21" width="1" height="1" fill="rgb(240,221,126)"/>
696
+ <rect x="22" y="21" width="1" height="1" fill="rgb(241,225,129)"/>
697
+ <rect x="23" y="21" width="1" height="1" fill="rgb(238,203,116)"/>
698
+ <rect x="24" y="21" width="1" height="1" fill="rgb(209,111,71)"/>
699
+ <rect x="25" y="21" width="1" height="1" fill="rgb(216,126,77)"/>
700
+ <rect x="26" y="21" width="1" height="1" fill="rgb(176,54,49)"/>
701
+ <rect x="27" y="21" width="1" height="1" fill="rgb(150,43,60)"/>
702
+ <rect x="28" y="21" width="1" height="1" fill="rgb(150,43,60)"/>
703
+ <rect x="29" y="21" width="1" height="1" fill="rgb(148,42,61)"/>
704
+ <rect x="30" y="21" width="1" height="1" fill="rgb(150,43,60)"/>
705
+ <rect x="31" y="21" width="1" height="1" fill="rgb(150,43,60)"/>
706
+ <rect x="0" y="22" width="1" height="1" fill="rgb(240,216,124)"/>
707
+ <rect x="1" y="22" width="1" height="1" fill="rgb(242,234,134)"/>
708
+ <rect x="2" y="22" width="1" height="1" fill="rgb(239,208,119)"/>
709
+ <rect x="3" y="22" width="1" height="1" fill="rgb(239,208,119)"/>
710
+ <rect x="4" y="22" width="1" height="1" fill="rgb(213,119,74)"/>
711
+ <rect x="5" y="22" width="1" height="1" fill="rgb(239,208,119)"/>
712
+ <rect x="6" y="22" width="1" height="1" fill="rgb(239,208,119)"/>
713
+ <rect x="7" y="22" width="1" height="1" fill="rgb(240,221,126)"/>
714
+ <rect x="8" y="22" width="1" height="1" fill="rgb(242,234,134)"/>
715
+ <rect x="9" y="22" width="1" height="1" fill="rgb(242,234,134)"/>
716
+ <rect x="10" y="22" width="1" height="1" fill="rgb(241,225,129)"/>
717
+ <rect x="11" y="22" width="1" height="1" fill="rgb(239,208,119)"/>
718
+ <rect x="12" y="22" width="1" height="1" fill="rgb(226,147,87)"/>
719
+ <rect x="13" y="22" width="1" height="1" fill="rgb(239,208,119)"/>
720
+ <rect x="14" y="22" width="1" height="1" fill="rgb(242,234,134)"/>
721
+ <rect x="15" y="22" width="1" height="1" fill="rgb(240,216,124)"/>
722
+ <rect x="16" y="22" width="1" height="1" fill="rgb(216,126,77)"/>
723
+ <rect x="17" y="22" width="1" height="1" fill="rgb(206,104,67)"/>
724
+ <rect x="18" y="22" width="1" height="1" fill="rgb(193,76,54)"/>
725
+ <rect x="19" y="22" width="1" height="1" fill="rgb(240,221,126)"/>
726
+ <rect x="20" y="22" width="1" height="1" fill="rgb(240,216,124)"/>
727
+ <rect x="21" y="22" width="1" height="1" fill="rgb(240,216,124)"/>
728
+ <rect x="22" y="22" width="1" height="1" fill="rgb(242,234,134)"/>
729
+ <rect x="23" y="22" width="1" height="1" fill="rgb(242,234,134)"/>
730
+ <rect x="24" y="22" width="1" height="1" fill="rgb(213,119,74)"/>
731
+ <rect x="25" y="22" width="1" height="1" fill="rgb(183,57,45)"/>
732
+ <rect x="26" y="22" width="1" height="1" fill="rgb(179,55,48)"/>
733
+ <rect x="27" y="22" width="1" height="1" fill="rgb(150,43,60)"/>
734
+ <rect x="28" y="22" width="1" height="1" fill="rgb(150,43,60)"/>
735
+ <rect x="29" y="22" width="1" height="1" fill="rgb(162,48,55)"/>
736
+ <rect x="30" y="22" width="1" height="1" fill="rgb(148,42,61)"/>
737
+ <rect x="31" y="22" width="1" height="1" fill="rgb(148,42,61)"/>
738
+ <rect x="0" y="23" width="1" height="1" fill="rgb(242,234,134)"/>
739
+ <rect x="1" y="23" width="1" height="1" fill="rgb(239,208,119)"/>
740
+ <rect x="2" y="23" width="1" height="1" fill="rgb(239,208,119)"/>
741
+ <rect x="3" y="23" width="1" height="1" fill="rgb(235,172,99)"/>
742
+ <rect x="4" y="23" width="1" height="1" fill="rgb(239,208,119)"/>
743
+ <rect x="5" y="23" width="1" height="1" fill="rgb(235,172,99)"/>
744
+ <rect x="6" y="23" width="1" height="1" fill="rgb(239,208,119)"/>
745
+ <rect x="7" y="23" width="1" height="1" fill="rgb(239,208,119)"/>
746
+ <rect x="8" y="23" width="1" height="1" fill="rgb(242,234,134)"/>
747
+ <rect x="9" y="23" width="1" height="1" fill="rgb(242,234,134)"/>
748
+ <rect x="10" y="23" width="1" height="1" fill="rgb(238,203,116)"/>
749
+ <rect x="11" y="23" width="1" height="1" fill="rgb(229,154,90)"/>
750
+ <rect x="12" y="23" width="1" height="1" fill="rgb(232,161,94)"/>
751
+ <rect x="13" y="23" width="1" height="1" fill="rgb(229,154,90)"/>
752
+ <rect x="14" y="23" width="1" height="1" fill="rgb(238,203,116)"/>
753
+ <rect x="15" y="23" width="1" height="1" fill="rgb(242,234,134)"/>
754
+ <rect x="16" y="23" width="1" height="1" fill="rgb(238,199,114)"/>
755
+ <rect x="17" y="23" width="1" height="1" fill="rgb(238,203,116)"/>
756
+ <rect x="18" y="23" width="1" height="1" fill="rgb(216,126,77)"/>
757
+ <rect x="19" y="23" width="1" height="1" fill="rgb(240,216,124)"/>
758
+ <rect x="20" y="23" width="1" height="1" fill="rgb(240,216,124)"/>
759
+ <rect x="21" y="23" width="1" height="1" fill="rgb(240,216,124)"/>
760
+ <rect x="22" y="23" width="1" height="1" fill="rgb(242,234,134)"/>
761
+ <rect x="23" y="23" width="1" height="1" fill="rgb(242,234,134)"/>
762
+ <rect x="24" y="23" width="1" height="1" fill="rgb(239,212,121)"/>
763
+ <rect x="25" y="23" width="1" height="1" fill="rgb(181,56,47)"/>
764
+ <rect x="26" y="23" width="1" height="1" fill="rgb(150,43,60)"/>
765
+ <rect x="27" y="23" width="1" height="1" fill="rgb(150,43,60)"/>
766
+ <rect x="28" y="23" width="1" height="1" fill="rgb(160,47,56)"/>
767
+ <rect x="29" y="23" width="1" height="1" fill="rgb(164,49,54)"/>
768
+ <rect x="30" y="23" width="1" height="1" fill="rgb(164,49,54)"/>
769
+ <rect x="31" y="23" width="1" height="1" fill="rgb(238,203,116)"/>
770
+ <rect x="0" y="24" width="1" height="1" fill="rgb(239,212,121)"/>
771
+ <rect x="1" y="24" width="1" height="1" fill="rgb(239,208,119)"/>
772
+ <rect x="2" y="24" width="1" height="1" fill="rgb(236,181,104)"/>
773
+ <rect x="3" y="24" width="1" height="1" fill="rgb(239,208,119)"/>
774
+ <rect x="4" y="24" width="1" height="1" fill="rgb(239,208,119)"/>
775
+ <rect x="5" y="24" width="1" height="1" fill="rgb(239,208,119)"/>
776
+ <rect x="6" y="24" width="1" height="1" fill="rgb(236,181,104)"/>
777
+ <rect x="7" y="24" width="1" height="1" fill="rgb(239,208,119)"/>
778
+ <rect x="8" y="24" width="1" height="1" fill="rgb(239,212,121)"/>
779
+ <rect x="9" y="24" width="1" height="1" fill="rgb(213,119,74)"/>
780
+ <rect x="10" y="24" width="1" height="1" fill="rgb(209,111,71)"/>
781
+ <rect x="11" y="24" width="1" height="1" fill="rgb(219,133,80)"/>
782
+ <rect x="12" y="24" width="1" height="1" fill="rgb(232,161,94)"/>
783
+ <rect x="13" y="24" width="1" height="1" fill="rgb(203,97,64)"/>
784
+ <rect x="14" y="24" width="1" height="1" fill="rgb(213,119,74)"/>
785
+ <rect x="15" y="24" width="1" height="1" fill="rgb(206,104,67)"/>
786
+ <rect x="16" y="24" width="1" height="1" fill="rgb(239,208,119)"/>
787
+ <rect x="17" y="24" width="1" height="1" fill="rgb(238,199,114)"/>
788
+ <rect x="18" y="24" width="1" height="1" fill="rgb(199,90,61)"/>
789
+ <rect x="19" y="24" width="1" height="1" fill="rgb(240,221,126)"/>
790
+ <rect x="20" y="24" width="1" height="1" fill="rgb(240,216,124)"/>
791
+ <rect x="21" y="24" width="1" height="1" fill="rgb(239,208,119)"/>
792
+ <rect x="22" y="24" width="1" height="1" fill="rgb(240,221,126)"/>
793
+ <rect x="23" y="24" width="1" height="1" fill="rgb(239,208,119)"/>
794
+ <rect x="24" y="24" width="1" height="1" fill="rgb(239,208,119)"/>
795
+ <rect x="25" y="24" width="1" height="1" fill="rgb(183,57,45)"/>
796
+ <rect x="26" y="24" width="1" height="1" fill="rgb(148,42,61)"/>
797
+ <rect x="27" y="24" width="1" height="1" fill="rgb(150,43,60)"/>
798
+ <rect x="28" y="24" width="1" height="1" fill="rgb(157,46,57)"/>
799
+ <rect x="29" y="24" width="1" height="1" fill="rgb(167,50,53)"/>
800
+ <rect x="30" y="24" width="1" height="1" fill="rgb(162,48,55)"/>
801
+ <rect x="31" y="24" width="1" height="1" fill="rgb(238,199,114)"/>
802
+ <rect x="0" y="25" width="1" height="1" fill="rgb(179,55,48)"/>
803
+ <rect x="1" y="25" width="1" height="1" fill="rgb(160,47,56)"/>
804
+ <rect x="2" y="25" width="1" height="1" fill="rgb(239,208,119)"/>
805
+ <rect x="3" y="25" width="1" height="1" fill="rgb(239,208,119)"/>
806
+ <rect x="4" y="25" width="1" height="1" fill="rgb(242,234,134)"/>
807
+ <rect x="5" y="25" width="1" height="1" fill="rgb(239,208,119)"/>
808
+ <rect x="6" y="25" width="1" height="1" fill="rgb(239,208,119)"/>
809
+ <rect x="7" y="25" width="1" height="1" fill="rgb(183,57,45)"/>
810
+ <rect x="8" y="25" width="1" height="1" fill="rgb(181,56,47)"/>
811
+ <rect x="9" y="25" width="1" height="1" fill="rgb(183,57,45)"/>
812
+ <rect x="10" y="25" width="1" height="1" fill="rgb(216,126,77)"/>
813
+ <rect x="11" y="25" width="1" height="1" fill="rgb(219,133,80)"/>
814
+ <rect x="12" y="25" width="1" height="1" fill="rgb(196,83,57)"/>
815
+ <rect x="13" y="25" width="1" height="1" fill="rgb(196,83,57)"/>
816
+ <rect x="14" y="25" width="1" height="1" fill="rgb(209,111,71)"/>
817
+ <rect x="15" y="25" width="1" height="1" fill="rgb(206,104,67)"/>
818
+ <rect x="16" y="25" width="1" height="1" fill="rgb(238,199,114)"/>
819
+ <rect x="17" y="25" width="1" height="1" fill="rgb(238,199,114)"/>
820
+ <rect x="18" y="25" width="1" height="1" fill="rgb(238,199,114)"/>
821
+ <rect x="19" y="25" width="1" height="1" fill="rgb(239,208,119)"/>
822
+ <rect x="20" y="25" width="1" height="1" fill="rgb(236,181,104)"/>
823
+ <rect x="21" y="25" width="1" height="1" fill="rgb(239,208,119)"/>
824
+ <rect x="22" y="25" width="1" height="1" fill="rgb(239,208,119)"/>
825
+ <rect x="23" y="25" width="1" height="1" fill="rgb(239,208,119)"/>
826
+ <rect x="24" y="25" width="1" height="1" fill="rgb(236,181,104)"/>
827
+ <rect x="25" y="25" width="1" height="1" fill="rgb(239,208,119)"/>
828
+ <rect x="26" y="25" width="1" height="1" fill="rgb(239,212,121)"/>
829
+ <rect x="27" y="25" width="1" height="1" fill="rgb(148,42,61)"/>
830
+ <rect x="28" y="25" width="1" height="1" fill="rgb(157,46,57)"/>
831
+ <rect x="29" y="25" width="1" height="1" fill="rgb(164,49,54)"/>
832
+ <rect x="30" y="25" width="1" height="1" fill="rgb(160,47,56)"/>
833
+ <rect x="31" y="25" width="1" height="1" fill="rgb(238,203,116)"/>
834
+ <rect x="0" y="26" width="1" height="1" fill="rgb(160,47,56)"/>
835
+ <rect x="1" y="26" width="1" height="1" fill="rgb(155,45,58)"/>
836
+ <rect x="2" y="26" width="1" height="1" fill="rgb(239,212,121)"/>
837
+ <rect x="3" y="26" width="1" height="1" fill="rgb(242,234,134)"/>
838
+ <rect x="4" y="26" width="1" height="1" fill="rgb(240,216,124)"/>
839
+ <rect x="5" y="26" width="1" height="1" fill="rgb(242,234,134)"/>
840
+ <rect x="6" y="26" width="1" height="1" fill="rgb(239,212,121)"/>
841
+ <rect x="7" y="26" width="1" height="1" fill="rgb(148,42,61)"/>
842
+ <rect x="8" y="26" width="1" height="1" fill="rgb(150,43,60)"/>
843
+ <rect x="9" y="26" width="1" height="1" fill="rgb(179,55,48)"/>
844
+ <rect x="10" y="26" width="1" height="1" fill="rgb(176,54,49)"/>
845
+ <rect x="11" y="26" width="1" height="1" fill="rgb(167,50,53)"/>
846
+ <rect x="12" y="26" width="1" height="1" fill="rgb(206,104,67)"/>
847
+ <rect x="13" y="26" width="1" height="1" fill="rgb(206,104,67)"/>
848
+ <rect x="14" y="26" width="1" height="1" fill="rgb(183,57,45)"/>
849
+ <rect x="15" y="26" width="1" height="1" fill="rgb(181,56,47)"/>
850
+ <rect x="16" y="26" width="1" height="1" fill="rgb(150,43,60)"/>
851
+ <rect x="17" y="26" width="1" height="1" fill="rgb(241,230,131)"/>
852
+ <rect x="18" y="26" width="1" height="1" fill="rgb(239,208,119)"/>
853
+ <rect x="19" y="26" width="1" height="1" fill="rgb(239,208,119)"/>
854
+ <rect x="20" y="26" width="1" height="1" fill="rgb(239,208,119)"/>
855
+ <rect x="21" y="26" width="1" height="1" fill="rgb(235,172,99)"/>
856
+ <rect x="22" y="26" width="1" height="1" fill="rgb(239,208,119)"/>
857
+ <rect x="23" y="26" width="1" height="1" fill="rgb(235,172,99)"/>
858
+ <rect x="24" y="26" width="1" height="1" fill="rgb(239,208,119)"/>
859
+ <rect x="25" y="26" width="1" height="1" fill="rgb(239,208,119)"/>
860
+ <rect x="26" y="26" width="1" height="1" fill="rgb(242,234,134)"/>
861
+ <rect x="27" y="26" width="1" height="1" fill="rgb(242,234,134)"/>
862
+ <rect x="28" y="26" width="1" height="1" fill="rgb(238,203,116)"/>
863
+ <rect x="29" y="26" width="1" height="1" fill="rgb(164,49,54)"/>
864
+ <rect x="30" y="26" width="1" height="1" fill="rgb(162,48,55)"/>
865
+ <rect x="31" y="26" width="1" height="1" fill="rgb(164,49,54)"/>
866
+ <rect x="0" y="27" width="1" height="1" fill="rgb(148,42,61)"/>
867
+ <rect x="1" y="27" width="1" height="1" fill="rgb(160,47,56)"/>
868
+ <rect x="2" y="27" width="1" height="1" fill="rgb(160,47,56)"/>
869
+ <rect x="3" y="27" width="1" height="1" fill="rgb(242,234,134)"/>
870
+ <rect x="4" y="27" width="1" height="1" fill="rgb(240,216,124)"/>
871
+ <rect x="5" y="27" width="1" height="1" fill="rgb(242,234,134)"/>
872
+ <rect x="6" y="27" width="1" height="1" fill="rgb(148,42,61)"/>
873
+ <rect x="7" y="27" width="1" height="1" fill="rgb(150,43,60)"/>
874
+ <rect x="8" y="27" width="1" height="1" fill="rgb(150,43,60)"/>
875
+ <rect x="9" y="27" width="1" height="1" fill="rgb(150,43,60)"/>
876
+ <rect x="10" y="27" width="1" height="1" fill="rgb(150,43,60)"/>
877
+ <rect x="11" y="27" width="1" height="1" fill="rgb(148,42,61)"/>
878
+ <rect x="12" y="27" width="1" height="1" fill="rgb(162,48,55)"/>
879
+ <rect x="13" y="27" width="1" height="1" fill="rgb(162,48,55)"/>
880
+ <rect x="14" y="27" width="1" height="1" fill="rgb(157,46,57)"/>
881
+ <rect x="15" y="27" width="1" height="1" fill="rgb(162,48,55)"/>
882
+ <rect x="16" y="27" width="1" height="1" fill="rgb(241,225,129)"/>
883
+ <rect x="17" y="27" width="1" height="1" fill="rgb(241,230,131)"/>
884
+ <rect x="18" y="27" width="1" height="1" fill="rgb(241,225,129)"/>
885
+ <rect x="19" y="27" width="1" height="1" fill="rgb(239,208,119)"/>
886
+ <rect x="20" y="27" width="1" height="1" fill="rgb(239,208,119)"/>
887
+ <rect x="21" y="27" width="1" height="1" fill="rgb(239,208,119)"/>
888
+ <rect x="22" y="27" width="1" height="1" fill="rgb(213,119,74)"/>
889
+ <rect x="23" y="27" width="1" height="1" fill="rgb(239,208,119)"/>
890
+ <rect x="24" y="27" width="1" height="1" fill="rgb(239,208,119)"/>
891
+ <rect x="25" y="27" width="1" height="1" fill="rgb(242,234,134)"/>
892
+ <rect x="26" y="27" width="1" height="1" fill="rgb(240,216,124)"/>
893
+ <rect x="27" y="27" width="1" height="1" fill="rgb(240,216,124)"/>
894
+ <rect x="28" y="27" width="1" height="1" fill="rgb(242,234,134)"/>
895
+ <rect x="29" y="27" width="1" height="1" fill="rgb(239,208,119)"/>
896
+ <rect x="30" y="27" width="1" height="1" fill="rgb(162,48,55)"/>
897
+ <rect x="31" y="27" width="1" height="1" fill="rgb(162,48,55)"/>
898
+ <rect x="0" y="28" width="1" height="1" fill="rgb(150,43,60)"/>
899
+ <rect x="1" y="28" width="1" height="1" fill="rgb(162,48,55)"/>
900
+ <rect x="2" y="28" width="1" height="1" fill="rgb(160,47,56)"/>
901
+ <rect x="3" y="28" width="1" height="1" fill="rgb(238,203,116)"/>
902
+ <rect x="4" y="28" width="1" height="1" fill="rgb(242,234,134)"/>
903
+ <rect x="5" y="28" width="1" height="1" fill="rgb(238,203,116)"/>
904
+ <rect x="6" y="28" width="1" height="1" fill="rgb(157,46,57)"/>
905
+ <rect x="7" y="28" width="1" height="1" fill="rgb(157,46,57)"/>
906
+ <rect x="8" y="28" width="1" height="1" fill="rgb(160,47,56)"/>
907
+ <rect x="9" y="28" width="1" height="1" fill="rgb(150,43,60)"/>
908
+ <rect x="10" y="28" width="1" height="1" fill="rgb(150,43,60)"/>
909
+ <rect x="11" y="28" width="1" height="1" fill="rgb(148,42,61)"/>
910
+ <rect x="12" y="28" width="1" height="1" fill="rgb(150,43,60)"/>
911
+ <rect x="13" y="28" width="1" height="1" fill="rgb(150,43,60)"/>
912
+ <rect x="14" y="28" width="1" height="1" fill="rgb(148,42,61)"/>
913
+ <rect x="15" y="28" width="1" height="1" fill="rgb(148,42,61)"/>
914
+ <rect x="16" y="28" width="1" height="1" fill="rgb(240,221,126)"/>
915
+ <rect x="17" y="28" width="1" height="1" fill="rgb(240,216,124)"/>
916
+ <rect x="18" y="28" width="1" height="1" fill="rgb(240,221,126)"/>
917
+ <rect x="19" y="28" width="1" height="1" fill="rgb(239,208,119)"/>
918
+ <rect x="20" y="28" width="1" height="1" fill="rgb(239,208,119)"/>
919
+ <rect x="21" y="28" width="1" height="1" fill="rgb(235,172,99)"/>
920
+ <rect x="22" y="28" width="1" height="1" fill="rgb(239,208,119)"/>
921
+ <rect x="23" y="28" width="1" height="1" fill="rgb(235,172,99)"/>
922
+ <rect x="24" y="28" width="1" height="1" fill="rgb(239,208,119)"/>
923
+ <rect x="25" y="28" width="1" height="1" fill="rgb(239,208,119)"/>
924
+ <rect x="26" y="28" width="1" height="1" fill="rgb(242,234,134)"/>
925
+ <rect x="27" y="28" width="1" height="1" fill="rgb(242,234,134)"/>
926
+ <rect x="28" y="28" width="1" height="1" fill="rgb(238,203,116)"/>
927
+ <rect x="29" y="28" width="1" height="1" fill="rgb(162,48,55)"/>
928
+ <rect x="30" y="28" width="1" height="1" fill="rgb(162,48,55)"/>
929
+ <rect x="31" y="28" width="1" height="1" fill="rgb(196,83,57)"/>
930
+ <rect x="0" y="29" width="1" height="1" fill="rgb(150,43,60)"/>
931
+ <rect x="1" y="29" width="1" height="1" fill="rgb(150,43,60)"/>
932
+ <rect x="2" y="29" width="1" height="1" fill="rgb(148,42,61)"/>
933
+ <rect x="3" y="29" width="1" height="1" fill="rgb(162,48,55)"/>
934
+ <rect x="4" y="29" width="1" height="1" fill="rgb(239,208,119)"/>
935
+ <rect x="5" y="29" width="1" height="1" fill="rgb(164,49,54)"/>
936
+ <rect x="6" y="29" width="1" height="1" fill="rgb(164,49,54)"/>
937
+ <rect x="7" y="29" width="1" height="1" fill="rgb(167,50,53)"/>
938
+ <rect x="8" y="29" width="1" height="1" fill="rgb(164,49,54)"/>
939
+ <rect x="9" y="29" width="1" height="1" fill="rgb(162,48,55)"/>
940
+ <rect x="10" y="29" width="1" height="1" fill="rgb(148,42,61)"/>
941
+ <rect x="11" y="29" width="1" height="1" fill="rgb(148,42,61)"/>
942
+ <rect x="12" y="29" width="1" height="1" fill="rgb(150,43,60)"/>
943
+ <rect x="13" y="29" width="1" height="1" fill="rgb(148,42,61)"/>
944
+ <rect x="14" y="29" width="1" height="1" fill="rgb(157,46,57)"/>
945
+ <rect x="15" y="29" width="1" height="1" fill="rgb(148,42,61)"/>
946
+ <rect x="16" y="29" width="1" height="1" fill="rgb(203,97,64)"/>
947
+ <rect x="17" y="29" width="1" height="1" fill="rgb(206,104,67)"/>
948
+ <rect x="18" y="29" width="1" height="1" fill="rgb(239,212,121)"/>
949
+ <rect x="19" y="29" width="1" height="1" fill="rgb(239,208,119)"/>
950
+ <rect x="20" y="29" width="1" height="1" fill="rgb(236,181,104)"/>
951
+ <rect x="21" y="29" width="1" height="1" fill="rgb(239,208,119)"/>
952
+ <rect x="22" y="29" width="1" height="1" fill="rgb(239,208,119)"/>
953
+ <rect x="23" y="29" width="1" height="1" fill="rgb(239,208,119)"/>
954
+ <rect x="24" y="29" width="1" height="1" fill="rgb(236,181,104)"/>
955
+ <rect x="25" y="29" width="1" height="1" fill="rgb(239,208,119)"/>
956
+ <rect x="26" y="29" width="1" height="1" fill="rgb(239,212,121)"/>
957
+ <rect x="27" y="29" width="1" height="1" fill="rgb(160,47,56)"/>
958
+ <rect x="28" y="29" width="1" height="1" fill="rgb(160,47,56)"/>
959
+ <rect x="29" y="29" width="1" height="1" fill="rgb(148,42,61)"/>
960
+ <rect x="30" y="29" width="1" height="1" fill="rgb(162,48,55)"/>
961
+ <rect x="31" y="29" width="1" height="1" fill="rgb(183,57,45)"/>
962
+ <rect x="0" y="30" width="1" height="1" fill="rgb(157,46,57)"/>
963
+ <rect x="1" y="30" width="1" height="1" fill="rgb(148,42,61)"/>
964
+ <rect x="2" y="30" width="1" height="1" fill="rgb(162,48,55)"/>
965
+ <rect x="3" y="30" width="1" height="1" fill="rgb(162,48,55)"/>
966
+ <rect x="4" y="30" width="1" height="1" fill="rgb(162,48,55)"/>
967
+ <rect x="5" y="30" width="1" height="1" fill="rgb(162,48,55)"/>
968
+ <rect x="6" y="30" width="1" height="1" fill="rgb(160,47,56)"/>
969
+ <rect x="7" y="30" width="1" height="1" fill="rgb(162,48,55)"/>
970
+ <rect x="8" y="30" width="1" height="1" fill="rgb(164,49,54)"/>
971
+ <rect x="9" y="30" width="1" height="1" fill="rgb(148,42,61)"/>
972
+ <rect x="10" y="30" width="1" height="1" fill="rgb(150,43,60)"/>
973
+ <rect x="11" y="30" width="1" height="1" fill="rgb(150,43,60)"/>
974
+ <rect x="12" y="30" width="1" height="1" fill="rgb(153,44,59)"/>
975
+ <rect x="13" y="30" width="1" height="1" fill="rgb(160,47,56)"/>
976
+ <rect x="14" y="30" width="1" height="1" fill="rgb(160,47,56)"/>
977
+ <rect x="15" y="30" width="1" height="1" fill="rgb(155,45,58)"/>
978
+ <rect x="16" y="30" width="1" height="1" fill="rgb(181,56,47)"/>
979
+ <rect x="17" y="30" width="1" height="1" fill="rgb(181,56,47)"/>
980
+ <rect x="18" y="30" width="1" height="1" fill="rgb(190,69,51)"/>
981
+ <rect x="19" y="30" width="1" height="1" fill="rgb(190,69,51)"/>
982
+ <rect x="20" y="30" width="1" height="1" fill="rgb(239,208,119)"/>
983
+ <rect x="21" y="30" width="1" height="1" fill="rgb(239,208,119)"/>
984
+ <rect x="22" y="30" width="1" height="1" fill="rgb(242,234,134)"/>
985
+ <rect x="23" y="30" width="1" height="1" fill="rgb(239,208,119)"/>
986
+ <rect x="24" y="30" width="1" height="1" fill="rgb(239,208,119)"/>
987
+ <rect x="25" y="30" width="1" height="1" fill="rgb(160,47,56)"/>
988
+ <rect x="26" y="30" width="1" height="1" fill="rgb(155,45,58)"/>
989
+ <rect x="27" y="30" width="1" height="1" fill="rgb(160,47,56)"/>
990
+ <rect x="28" y="30" width="1" height="1" fill="rgb(162,48,55)"/>
991
+ <rect x="29" y="30" width="1" height="1" fill="rgb(150,43,60)"/>
992
+ <rect x="30" y="30" width="1" height="1" fill="rgb(148,42,61)"/>
993
+ <rect x="31" y="30" width="1" height="1" fill="rgb(181,56,47)"/>
994
+ <rect x="0" y="31" width="1" height="1" fill="rgb(183,57,45)"/>
995
+ <rect x="1" y="31" width="1" height="1" fill="rgb(181,56,47)"/>
996
+ <rect x="2" y="31" width="1" height="1" fill="rgb(183,57,45)"/>
997
+ <rect x="3" y="31" width="1" height="1" fill="rgb(196,83,57)"/>
998
+ <rect x="4" y="31" width="1" height="1" fill="rgb(162,48,55)"/>
999
+ <rect x="5" y="31" width="1" height="1" fill="rgb(164,49,54)"/>
1000
+ <rect x="6" y="31" width="1" height="1" fill="rgb(238,203,116)"/>
1001
+ <rect x="7" y="31" width="1" height="1" fill="rgb(238,199,114)"/>
1002
+ <rect x="8" y="31" width="1" height="1" fill="rgb(238,203,116)"/>
1003
+ <rect x="9" y="31" width="1" height="1" fill="rgb(148,42,61)"/>
1004
+ <rect x="10" y="31" width="1" height="1" fill="rgb(150,43,60)"/>
1005
+ <rect x="11" y="31" width="1" height="1" fill="rgb(155,45,58)"/>
1006
+ <rect x="12" y="31" width="1" height="1" fill="rgb(148,42,61)"/>
1007
+ <rect x="13" y="31" width="1" height="1" fill="rgb(157,46,57)"/>
1008
+ <rect x="14" y="31" width="1" height="1" fill="rgb(155,45,58)"/>
1009
+ <rect x="15" y="31" width="1" height="1" fill="rgb(155,45,58)"/>
1010
+ <rect x="16" y="31" width="1" height="1" fill="rgb(181,56,47)"/>
1011
+ <rect x="17" y="31" width="1" height="1" fill="rgb(176,54,49)"/>
1012
+ <rect x="18" y="31" width="1" height="1" fill="rgb(193,76,54)"/>
1013
+ <rect x="19" y="31" width="1" height="1" fill="rgb(196,83,57)"/>
1014
+ <rect x="20" y="31" width="1" height="1" fill="rgb(239,212,121)"/>
1015
+ <rect x="21" y="31" width="1" height="1" fill="rgb(242,234,134)"/>
1016
+ <rect x="22" y="31" width="1" height="1" fill="rgb(240,216,124)"/>
1017
+ <rect x="23" y="31" width="1" height="1" fill="rgb(242,234,134)"/>
1018
+ <rect x="24" y="31" width="1" height="1" fill="rgb(239,212,121)"/>
1019
+ <rect x="25" y="31" width="1" height="1" fill="rgb(179,55,48)"/>
1020
+ <rect x="26" y="31" width="1" height="1" fill="rgb(160,47,56)"/>
1021
+ <rect x="27" y="31" width="1" height="1" fill="rgb(148,42,61)"/>
1022
+ <rect x="28" y="31" width="1" height="1" fill="rgb(150,43,60)"/>
1023
+ <rect x="29" y="31" width="1" height="1" fill="rgb(150,43,60)"/>
1024
+ <rect x="30" y="31" width="1" height="1" fill="rgb(157,46,57)"/>
1025
+ <rect x="31" y="31" width="1" height="1" fill="rgb(183,57,45)"/>
1026
+ </svg>