@rvoh/dream 0.30.0 → 0.30.1

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 (176) hide show
  1. package/dist/cjs/src/bin/index.js +26 -11
  2. package/dist/cjs/src/cli/index.js +28 -0
  3. package/dist/cjs/src/cli/logger/DreamCliLogger.js +57 -0
  4. package/dist/cjs/src/cli/logger/helpers/createSpinner.js +14 -0
  5. package/dist/cjs/src/cli/logger/loggable/DreamCliLoggable.js +22 -0
  6. package/dist/cjs/src/cli/logger/loggable/DreamCliLoggableSpinner.js +31 -0
  7. package/dist/cjs/src/cli/logger/loggable/DreamCliLoggableText.js +21 -0
  8. package/dist/cjs/src/cli/logger/loggable/colorize.js +8 -0
  9. package/dist/cjs/src/cli/logger/loggable/spinners.js +1185 -0
  10. package/dist/cjs/src/helpers/db/runMigration.js +8 -3
  11. package/dist/esm/src/bin/index.js +24 -9
  12. package/dist/esm/src/cli/index.js +28 -0
  13. package/dist/esm/src/cli/logger/DreamCliLogger.js +54 -0
  14. package/dist/esm/src/cli/logger/helpers/createSpinner.js +11 -0
  15. package/dist/esm/src/cli/logger/loggable/DreamCliLoggable.js +19 -0
  16. package/dist/esm/src/cli/logger/loggable/DreamCliLoggableSpinner.js +28 -0
  17. package/dist/esm/src/cli/logger/loggable/DreamCliLoggableText.js +18 -0
  18. package/dist/esm/src/cli/logger/loggable/colorize.js +5 -0
  19. package/dist/esm/src/cli/logger/loggable/spinners.js +1183 -0
  20. package/dist/esm/src/helpers/db/runMigration.js +8 -3
  21. package/dist/types/src/cli/index.d.ts +5 -0
  22. package/dist/types/src/cli/logger/DreamCliLogger.d.ts +22 -0
  23. package/dist/types/src/cli/logger/helpers/createSpinner.d.ts +2 -0
  24. package/dist/types/src/cli/logger/loggable/DreamCliLoggable.d.ts +15 -0
  25. package/dist/types/src/cli/logger/loggable/DreamCliLoggableSpinner.d.ts +21 -0
  26. package/dist/types/src/cli/logger/loggable/DreamCliLoggableText.d.ts +16 -0
  27. package/dist/types/src/cli/logger/loggable/colorize.d.ts +5 -0
  28. package/dist/types/src/cli/logger/loggable/spinners.d.ts +355 -0
  29. package/docs/assets/search.js +1 -1
  30. package/docs/classes/Benchmark.html +2 -2
  31. package/docs/classes/CalendarDate.html +2 -2
  32. package/docs/classes/CreateOrFindByFailedToCreateAndFind.html +3 -3
  33. package/docs/classes/Decorators.html +19 -19
  34. package/docs/classes/Dream.html +126 -126
  35. package/docs/classes/DreamApplication.html +4 -4
  36. package/docs/classes/DreamBin.html +2 -2
  37. package/docs/classes/DreamCLI.html +6 -4
  38. package/docs/classes/DreamDbConnection.html +2 -2
  39. package/docs/classes/DreamImporter.html +2 -2
  40. package/docs/classes/DreamMigrationHelpers.html +7 -7
  41. package/docs/classes/DreamSerializer.html +2 -2
  42. package/docs/classes/DreamTransaction.html +2 -2
  43. package/docs/classes/Encrypt.html +2 -2
  44. package/docs/classes/Env.html +2 -2
  45. package/docs/classes/GlobalNameNotSet.html +3 -3
  46. package/docs/classes/NonLoadedAssociation.html +3 -3
  47. package/docs/classes/Query.html +50 -50
  48. package/docs/classes/Range.html +2 -2
  49. package/docs/classes/RecordNotFound.html +3 -3
  50. package/docs/classes/ValidationError.html +3 -3
  51. package/docs/functions/Attribute.html +1 -1
  52. package/docs/functions/RendersMany.html +1 -1
  53. package/docs/functions/RendersOne.html +1 -1
  54. package/docs/functions/ReplicaSafe.html +1 -1
  55. package/docs/functions/STI.html +1 -1
  56. package/docs/functions/SoftDelete.html +1 -1
  57. package/docs/functions/camelize.html +1 -1
  58. package/docs/functions/capitalize.html +1 -1
  59. package/docs/functions/closeAllDbConnections.html +1 -1
  60. package/docs/functions/compact.html +1 -1
  61. package/docs/functions/db.html +1 -1
  62. package/docs/functions/debug.html +1 -1
  63. package/docs/functions/dreamDbConnections.html +1 -1
  64. package/docs/functions/dreamPath.html +1 -1
  65. package/docs/functions/generateDream.html +1 -1
  66. package/docs/functions/globalClassNameFromFullyQualifiedModelName.html +1 -1
  67. package/docs/functions/hyphenize.html +1 -1
  68. package/docs/functions/inferSerializerFromDreamClassOrViewModelClass.html +1 -1
  69. package/docs/functions/inferSerializerFromDreamOrViewModel.html +1 -1
  70. package/docs/functions/isEmpty.html +1 -1
  71. package/docs/functions/loadRepl.html +1 -1
  72. package/docs/functions/lookupClassByGlobalName.html +1 -1
  73. package/docs/functions/pascalize.html +1 -1
  74. package/docs/functions/pgErrorType.html +1 -1
  75. package/docs/functions/range-1.html +1 -1
  76. package/docs/functions/relativeDreamPath.html +1 -1
  77. package/docs/functions/round.html +1 -1
  78. package/docs/functions/serializerNameFromFullyQualifiedModelName.html +1 -1
  79. package/docs/functions/sharedPathPrefix.html +1 -1
  80. package/docs/functions/snakeify.html +1 -1
  81. package/docs/functions/sortBy.html +1 -1
  82. package/docs/functions/standardizeFullyQualifiedModelName.html +1 -1
  83. package/docs/functions/uncapitalize.html +1 -1
  84. package/docs/functions/uniq.html +1 -1
  85. package/docs/functions/validateColumn.html +1 -1
  86. package/docs/functions/validateTable.html +1 -1
  87. package/docs/interfaces/AttributeStatement.html +2 -2
  88. package/docs/interfaces/DecoratorContext.html +2 -2
  89. package/docs/interfaces/DreamApplicationInitOptions.html +2 -2
  90. package/docs/interfaces/DreamApplicationOpts.html +2 -2
  91. package/docs/interfaces/DreamSerializerAssociationStatement.html +2 -2
  92. package/docs/interfaces/EncryptOptions.html +2 -2
  93. package/docs/interfaces/OpenapiSchemaProperties.html +1 -1
  94. package/docs/interfaces/OpenapiSchemaPropertiesShorthand.html +1 -1
  95. package/docs/interfaces/OpenapiTypeFieldObject.html +1 -1
  96. package/docs/types/Camelized.html +1 -1
  97. package/docs/types/CommonOpenapiSchemaObjectFields.html +1 -1
  98. package/docs/types/DreamAssociationMetadata.html +1 -1
  99. package/docs/types/DreamAttributes.html +1 -1
  100. package/docs/types/DreamClassColumn.html +1 -1
  101. package/docs/types/DreamColumn.html +1 -1
  102. package/docs/types/DreamColumnNames.html +1 -1
  103. package/docs/types/DreamLogLevel.html +1 -1
  104. package/docs/types/DreamLogger.html +1 -1
  105. package/docs/types/DreamOrViewModelSerializerKey.html +1 -1
  106. package/docs/types/DreamParamSafeAttributes.html +1 -1
  107. package/docs/types/DreamParamSafeColumnNames.html +1 -1
  108. package/docs/types/DreamSerializerKey.html +1 -1
  109. package/docs/types/DreamSerializers.html +1 -1
  110. package/docs/types/DreamTableSchema.html +1 -1
  111. package/docs/types/DreamVirtualColumns.html +1 -1
  112. package/docs/types/EncryptAlgorithm.html +1 -1
  113. package/docs/types/Hyphenized.html +1 -1
  114. package/docs/types/IdType.html +1 -1
  115. package/docs/types/OpenapiAllTypes.html +1 -1
  116. package/docs/types/OpenapiFormats.html +1 -1
  117. package/docs/types/OpenapiNumberFormats.html +1 -1
  118. package/docs/types/OpenapiPrimitiveTypes.html +1 -1
  119. package/docs/types/OpenapiSchemaArray.html +1 -1
  120. package/docs/types/OpenapiSchemaArrayShorthand.html +1 -1
  121. package/docs/types/OpenapiSchemaBase.html +1 -1
  122. package/docs/types/OpenapiSchemaBody.html +1 -1
  123. package/docs/types/OpenapiSchemaBodyShorthand.html +1 -1
  124. package/docs/types/OpenapiSchemaCommonFields.html +1 -1
  125. package/docs/types/OpenapiSchemaExpressionAllOf.html +1 -1
  126. package/docs/types/OpenapiSchemaExpressionAnyOf.html +1 -1
  127. package/docs/types/OpenapiSchemaExpressionOneOf.html +1 -1
  128. package/docs/types/OpenapiSchemaExpressionRef.html +1 -1
  129. package/docs/types/OpenapiSchemaExpressionRefSchemaShorthand.html +1 -1
  130. package/docs/types/OpenapiSchemaInteger.html +1 -1
  131. package/docs/types/OpenapiSchemaNull.html +1 -1
  132. package/docs/types/OpenapiSchemaNumber.html +1 -1
  133. package/docs/types/OpenapiSchemaObject.html +1 -1
  134. package/docs/types/OpenapiSchemaObjectAllOf.html +1 -1
  135. package/docs/types/OpenapiSchemaObjectAllOfShorthand.html +1 -1
  136. package/docs/types/OpenapiSchemaObjectAnyOf.html +1 -1
  137. package/docs/types/OpenapiSchemaObjectAnyOfShorthand.html +1 -1
  138. package/docs/types/OpenapiSchemaObjectBase.html +1 -1
  139. package/docs/types/OpenapiSchemaObjectBaseShorthand.html +1 -1
  140. package/docs/types/OpenapiSchemaObjectOneOf.html +1 -1
  141. package/docs/types/OpenapiSchemaObjectOneOfShorthand.html +1 -1
  142. package/docs/types/OpenapiSchemaObjectShorthand.html +1 -1
  143. package/docs/types/OpenapiSchemaPartialSegment.html +1 -1
  144. package/docs/types/OpenapiSchemaPrimitiveGeneric.html +1 -1
  145. package/docs/types/OpenapiSchemaShorthandExpressionAllOf.html +1 -1
  146. package/docs/types/OpenapiSchemaShorthandExpressionAnyOf.html +1 -1
  147. package/docs/types/OpenapiSchemaShorthandExpressionOneOf.html +1 -1
  148. package/docs/types/OpenapiSchemaShorthandExpressionSerializableRef.html +1 -1
  149. package/docs/types/OpenapiSchemaShorthandExpressionSerializerRef.html +1 -1
  150. package/docs/types/OpenapiSchemaShorthandPrimitiveGeneric.html +1 -1
  151. package/docs/types/OpenapiSchemaString.html +1 -1
  152. package/docs/types/OpenapiShorthandAllTypes.html +1 -1
  153. package/docs/types/OpenapiShorthandPrimitiveTypes.html +1 -1
  154. package/docs/types/OpenapiTypeField.html +1 -1
  155. package/docs/types/Pascalized.html +1 -1
  156. package/docs/types/PrimaryKeyType.html +1 -1
  157. package/docs/types/RoundingPrecision.html +1 -1
  158. package/docs/types/SerializableClassOrSerializerCallback.html +1 -1
  159. package/docs/types/SerializableDreamClassOrViewModelClass.html +1 -1
  160. package/docs/types/SerializableDreamOrViewModel.html +1 -1
  161. package/docs/types/SerializableTypes.html +1 -1
  162. package/docs/types/Snakeified.html +1 -1
  163. package/docs/types/Timestamp.html +1 -1
  164. package/docs/types/UpdateableAssociationProperties.html +1 -1
  165. package/docs/types/UpdateableProperties.html +1 -1
  166. package/docs/types/ValidationType.html +1 -1
  167. package/docs/types/ViewModelSerializerKey.html +1 -1
  168. package/docs/types/WhereStatementForDream.html +1 -1
  169. package/docs/types/WhereStatementForDreamClass.html +1 -1
  170. package/docs/variables/DreamConst.html +1 -1
  171. package/docs/variables/TRIGRAM_OPERATORS.html +1 -1
  172. package/docs/variables/openapiPrimitiveTypes-1.html +1 -1
  173. package/docs/variables/openapiShorthandPrimitiveTypes-1.html +1 -1
  174. package/docs/variables/ops.html +1 -1
  175. package/docs/variables/primaryKeyTypes.html +1 -1
  176. package/package.json +3 -2
@@ -0,0 +1,1185 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ dots: {
5
+ interval: 80,
6
+ frames: ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'],
7
+ },
8
+ dots2: {
9
+ interval: 80,
10
+ frames: ['⣾', '⣽', '⣻', '⢿', '⡿', '⣟', '⣯', '⣷'],
11
+ },
12
+ dots3: {
13
+ interval: 80,
14
+ frames: ['⠋', '⠙', '⠚', '⠞', '⠖', '⠦', '⠴', '⠲', '⠳', '⠓'],
15
+ },
16
+ dots4: {
17
+ interval: 80,
18
+ frames: ['⠄', '⠆', '⠇', '⠋', '⠙', '⠸', '⠰', '⠠', '⠰', '⠸', '⠙', '⠋', '⠇', '⠆'],
19
+ },
20
+ dots5: {
21
+ interval: 80,
22
+ frames: ['⠋', '⠙', '⠚', '⠒', '⠂', '⠂', '⠒', '⠲', '⠴', '⠦', '⠖', '⠒', '⠐', '⠐', '⠒', '⠓', '⠋'],
23
+ },
24
+ dots6: {
25
+ interval: 80,
26
+ frames: [
27
+ '⠁',
28
+ '⠉',
29
+ '⠙',
30
+ '⠚',
31
+ '⠒',
32
+ '⠂',
33
+ '⠂',
34
+ '⠒',
35
+ '⠲',
36
+ '⠴',
37
+ '⠤',
38
+ '⠄',
39
+ '⠄',
40
+ '⠤',
41
+ '⠴',
42
+ '⠲',
43
+ '⠒',
44
+ '⠂',
45
+ '⠂',
46
+ '⠒',
47
+ '⠚',
48
+ '⠙',
49
+ '⠉',
50
+ '⠁',
51
+ ],
52
+ },
53
+ dots7: {
54
+ interval: 80,
55
+ frames: [
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
+ dots8: {
83
+ interval: 80,
84
+ frames: [
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
+ dots9: {
117
+ interval: 80,
118
+ frames: ['⢹', '⢺', '⢼', '⣸', '⣇', '⡧', '⡗', '⡏'],
119
+ },
120
+ dots10: {
121
+ interval: 80,
122
+ frames: ['⢄', '⢂', '⢁', '⡁', '⡈', '⡐', '⡠'],
123
+ },
124
+ dots11: {
125
+ interval: 100,
126
+ frames: ['⠁', '⠂', '⠄', '⡀', '⢀', '⠠', '⠐', '⠈'],
127
+ },
128
+ dots12: {
129
+ interval: 80,
130
+ frames: [
131
+ '⢀⠀',
132
+ '⡀⠀',
133
+ '⠄⠀',
134
+ '⢂⠀',
135
+ '⡂⠀',
136
+ '⠅⠀',
137
+ '⢃⠀',
138
+ '⡃⠀',
139
+ '⠍⠀',
140
+ '⢋⠀',
141
+ '⡋⠀',
142
+ '⠍⠁',
143
+ '⢋⠁',
144
+ '⡋⠁',
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
+ dots13: {
190
+ interval: 80,
191
+ frames: ['⣼', '⣹', '⢻', '⠿', '⡟', '⣏', '⣧', '⣶'],
192
+ },
193
+ dots14: {
194
+ interval: 80,
195
+ frames: ['⠉⠉', '⠈⠙', '⠀⠹', '⠀⢸', '⠀⣰', '⢀⣠', '⣀⣀', '⣄⡀', '⣆⠀', '⡇⠀', '⠏⠀', '⠋⠁'],
196
+ },
197
+ dots8Bit: {
198
+ interval: 80,
199
+ frames: [
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
+ '⡓',
244
+ '⡔',
245
+ '⡕',
246
+ '⡖',
247
+ '⡗',
248
+ '⠘',
249
+ '⠙',
250
+ '⠚',
251
+ '⠛',
252
+ '⠜',
253
+ '⠝',
254
+ '⠞',
255
+ '⠟',
256
+ '⡘',
257
+ '⡙',
258
+ '⡚',
259
+ '⡛',
260
+ '⡜',
261
+ '⡝',
262
+ '⡞',
263
+ '⡟',
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
+ dotsCircle: {
459
+ interval: 80,
460
+ frames: ['⢎ ', '⠎⠁', '⠊⠑', '⠈⠱', ' ⡱', '⢀⡰', '⢄⡠', '⢆⡀'],
461
+ },
462
+ sand: {
463
+ interval: 80,
464
+ frames: [
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
+ line: {
503
+ interval: 130,
504
+ frames: ['-', '\\', '|', '/'],
505
+ },
506
+ line2: {
507
+ interval: 100,
508
+ frames: ['⠂', '-', '–', '—', '–', '-'],
509
+ },
510
+ pipe: {
511
+ interval: 100,
512
+ frames: ['┤', '┘', '┴', '└', '├', '┌', '┬', '┐'],
513
+ },
514
+ simpleDots: {
515
+ interval: 400,
516
+ frames: ['. ', '.. ', '...', ' '],
517
+ },
518
+ simpleDotsScrolling: {
519
+ interval: 200,
520
+ frames: ['. ', '.. ', '...', ' ..', ' .', ' '],
521
+ },
522
+ star: {
523
+ interval: 70,
524
+ frames: ['✶', '✸', '✹', '✺', '✹', '✷'],
525
+ },
526
+ star2: {
527
+ interval: 80,
528
+ frames: ['+', 'x', '*'],
529
+ },
530
+ flip: {
531
+ interval: 70,
532
+ frames: ['_', '_', '_', '-', '`', '`', "'", '´', '-', '_', '_', '_'],
533
+ },
534
+ hamburger: {
535
+ interval: 100,
536
+ frames: ['☱', '☲', '☴'],
537
+ },
538
+ growVertical: {
539
+ interval: 120,
540
+ frames: ['▁', '▃', '▄', '▅', '▆', '▇', '▆', '▅', '▄', '▃'],
541
+ },
542
+ growHorizontal: {
543
+ interval: 120,
544
+ frames: ['▏', '▎', '▍', '▌', '▋', '▊', '▉', '▊', '▋', '▌', '▍', '▎'],
545
+ },
546
+ balloon: {
547
+ interval: 140,
548
+ frames: [' ', '.', 'o', 'O', '@', '*', ' '],
549
+ },
550
+ balloon2: {
551
+ interval: 120,
552
+ frames: ['.', 'o', 'O', '°', 'O', 'o', '.'],
553
+ },
554
+ noise: {
555
+ interval: 100,
556
+ frames: ['▓', '▒', '░'],
557
+ },
558
+ bounce: {
559
+ interval: 120,
560
+ frames: ['⠁', '⠂', '⠄', '⠂'],
561
+ },
562
+ boxBounce: {
563
+ interval: 120,
564
+ frames: ['▖', '▘', '▝', '▗'],
565
+ },
566
+ boxBounce2: {
567
+ interval: 100,
568
+ frames: ['▌', '▀', '▐', '▄'],
569
+ },
570
+ triangle: {
571
+ interval: 50,
572
+ frames: ['◢', '◣', '◤', '◥'],
573
+ },
574
+ binary: {
575
+ interval: 80,
576
+ frames: [
577
+ '010010',
578
+ '001100',
579
+ '100101',
580
+ '111010',
581
+ '111101',
582
+ '010111',
583
+ '101011',
584
+ '111000',
585
+ '110011',
586
+ '110101',
587
+ ],
588
+ },
589
+ arc: {
590
+ interval: 100,
591
+ frames: ['◜', '◠', '◝', '◞', '◡', '◟'],
592
+ },
593
+ circle: {
594
+ interval: 120,
595
+ frames: ['◡', '⊙', '◠'],
596
+ },
597
+ squareCorners: {
598
+ interval: 180,
599
+ frames: ['◰', '◳', '◲', '◱'],
600
+ },
601
+ circleQuarters: {
602
+ interval: 120,
603
+ frames: ['◴', '◷', '◶', '◵'],
604
+ },
605
+ circleHalves: {
606
+ interval: 50,
607
+ frames: ['◐', '◓', '◑', '◒'],
608
+ },
609
+ squish: {
610
+ interval: 100,
611
+ frames: ['╫', '╪'],
612
+ },
613
+ toggle: {
614
+ interval: 250,
615
+ frames: ['⊶', '⊷'],
616
+ },
617
+ toggle2: {
618
+ interval: 80,
619
+ frames: ['▫', '▪'],
620
+ },
621
+ toggle3: {
622
+ interval: 120,
623
+ frames: ['□', '■'],
624
+ },
625
+ toggle4: {
626
+ interval: 100,
627
+ frames: ['■', '□', '▪', '▫'],
628
+ },
629
+ toggle5: {
630
+ interval: 100,
631
+ frames: ['▮', '▯'],
632
+ },
633
+ toggle6: {
634
+ interval: 300,
635
+ frames: ['ဝ', '၀'],
636
+ },
637
+ toggle7: {
638
+ interval: 80,
639
+ frames: ['⦾', '⦿'],
640
+ },
641
+ toggle8: {
642
+ interval: 100,
643
+ frames: ['◍', '◌'],
644
+ },
645
+ toggle9: {
646
+ interval: 100,
647
+ frames: ['◉', '◎'],
648
+ },
649
+ toggle10: {
650
+ interval: 100,
651
+ frames: ['㊂', '㊀', '㊁'],
652
+ },
653
+ toggle11: {
654
+ interval: 50,
655
+ frames: ['⧇', '⧆'],
656
+ },
657
+ toggle12: {
658
+ interval: 120,
659
+ frames: ['☗', '☖'],
660
+ },
661
+ toggle13: {
662
+ interval: 80,
663
+ frames: ['=', '*', '-'],
664
+ },
665
+ arrow: {
666
+ interval: 100,
667
+ frames: ['←', '↖', '↑', '↗', '→', '↘', '↓', '↙'],
668
+ },
669
+ arrow2: {
670
+ interval: 80,
671
+ frames: ['⬆️ ', '↗️ ', '➡️ ', '↘️ ', '⬇️ ', '↙️ ', '⬅️ ', '↖️ '],
672
+ },
673
+ arrow3: {
674
+ interval: 120,
675
+ frames: ['▹▹▹▹▹', '▸▹▹▹▹', '▹▸▹▹▹', '▹▹▸▹▹', '▹▹▹▸▹', '▹▹▹▹▸'],
676
+ },
677
+ bouncingBar: {
678
+ interval: 80,
679
+ frames: [
680
+ '[ ]',
681
+ '[= ]',
682
+ '[== ]',
683
+ '[=== ]',
684
+ '[====]',
685
+ '[ ===]',
686
+ '[ ==]',
687
+ '[ =]',
688
+ '[ ]',
689
+ '[ =]',
690
+ '[ ==]',
691
+ '[ ===]',
692
+ '[====]',
693
+ '[=== ]',
694
+ '[== ]',
695
+ '[= ]',
696
+ ],
697
+ },
698
+ bouncingBall: {
699
+ interval: 80,
700
+ frames: [
701
+ '( ● )',
702
+ '( ● )',
703
+ '( ● )',
704
+ '( ● )',
705
+ '( ●)',
706
+ '( ● )',
707
+ '( ● )',
708
+ '( ● )',
709
+ '( ● )',
710
+ '(● )',
711
+ ],
712
+ },
713
+ smiley: {
714
+ interval: 200,
715
+ frames: ['😄 ', '😝 '],
716
+ },
717
+ monkey: {
718
+ interval: 300,
719
+ frames: ['🙈 ', '🙈 ', '🙉 ', '🙊 '],
720
+ },
721
+ hearts: {
722
+ interval: 100,
723
+ frames: ['💛 ', '💙 ', '💜 ', '💚 ', '❤️ '],
724
+ },
725
+ clock: {
726
+ interval: 100,
727
+ frames: ['🕛 ', '🕐 ', '🕑 ', '🕒 ', '🕓 ', '🕔 ', '🕕 ', '🕖 ', '🕗 ', '🕘 ', '🕙 ', '🕚 '],
728
+ },
729
+ earth: {
730
+ interval: 180,
731
+ frames: ['🌍 ', '🌎 ', '🌏 '],
732
+ },
733
+ material: {
734
+ interval: 17,
735
+ frames: [
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
+ moon: {
831
+ interval: 80,
832
+ frames: ['🌑 ', '🌒 ', '🌓 ', '🌔 ', '🌕 ', '🌖 ', '🌗 ', '🌘 '],
833
+ },
834
+ runner: {
835
+ interval: 140,
836
+ frames: ['🚶 ', '🏃 '],
837
+ },
838
+ pong: {
839
+ interval: 80,
840
+ frames: [
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
+ shark: {
874
+ interval: 120,
875
+ frames: [
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
+ dqpb: {
905
+ interval: 100,
906
+ frames: ['d', 'q', 'p', 'b'],
907
+ },
908
+ weather: {
909
+ interval: 100,
910
+ frames: [
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
+ christmas: {
937
+ interval: 400,
938
+ frames: ['🌲', '🎄'],
939
+ },
940
+ grenade: {
941
+ interval: 80,
942
+ frames: [
943
+ '، ',
944
+ '′ ',
945
+ ' ´ ',
946
+ ' ‾ ',
947
+ ' ⸌',
948
+ ' ⸊',
949
+ ' |',
950
+ ' ⁎',
951
+ ' ⁕',
952
+ ' ෴ ',
953
+ ' ⁓',
954
+ ' ',
955
+ ' ',
956
+ ' ',
957
+ ],
958
+ },
959
+ point: {
960
+ interval: 125,
961
+ frames: ['∙∙∙', '●∙∙', '∙●∙', '∙∙●', '∙∙∙'],
962
+ },
963
+ layer: {
964
+ interval: 150,
965
+ frames: ['-', '=', '≡'],
966
+ },
967
+ betaWave: {
968
+ interval: 80,
969
+ frames: ['ρββββββ', 'βρβββββ', 'ββρββββ', 'βββρβββ', 'ββββρββ', 'βββββρβ', 'ββββββρ'],
970
+ },
971
+ fingerDance: {
972
+ interval: 160,
973
+ frames: ['🤘 ', '🤟 ', '🖖 ', '✋ ', '🤚 ', '👆 '],
974
+ },
975
+ fistBump: {
976
+ interval: 80,
977
+ frames: [
978
+ '🤜\u3000\u3000\u3000\u3000🤛 ',
979
+ '🤜\u3000\u3000\u3000\u3000🤛 ',
980
+ '🤜\u3000\u3000\u3000\u3000🤛 ',
981
+ '\u3000🤜\u3000\u3000🤛\u3000 ',
982
+ '\u3000\u3000🤜🤛\u3000\u3000 ',
983
+ '\u3000🤜✨🤛\u3000\u3000 ',
984
+ '🤜\u3000✨\u3000🤛\u3000 ',
985
+ ],
986
+ },
987
+ soccerHeader: {
988
+ interval: 80,
989
+ frames: [
990
+ ' 🧑⚽️ 🧑 ',
991
+ '🧑 ⚽️ 🧑 ',
992
+ '🧑 ⚽️ 🧑 ',
993
+ '🧑 ⚽️ 🧑 ',
994
+ '🧑 ⚽️ 🧑 ',
995
+ '🧑 ⚽️ 🧑 ',
996
+ '🧑 ⚽️🧑 ',
997
+ '🧑 ⚽️ 🧑 ',
998
+ '🧑 ⚽️ 🧑 ',
999
+ '🧑 ⚽️ 🧑 ',
1000
+ '🧑 ⚽️ 🧑 ',
1001
+ '🧑 ⚽️ 🧑 ',
1002
+ ],
1003
+ },
1004
+ mindblown: {
1005
+ interval: 160,
1006
+ frames: [
1007
+ '😐 ',
1008
+ '😐 ',
1009
+ '😮 ',
1010
+ '😮 ',
1011
+ '😦 ',
1012
+ '😦 ',
1013
+ '😧 ',
1014
+ '😧 ',
1015
+ '🤯 ',
1016
+ '💥 ',
1017
+ '✨ ',
1018
+ '\u3000 ',
1019
+ '\u3000 ',
1020
+ '\u3000 ',
1021
+ ],
1022
+ },
1023
+ speaker: {
1024
+ interval: 160,
1025
+ frames: ['🔈 ', '🔉 ', '🔊 ', '🔉 '],
1026
+ },
1027
+ orangePulse: {
1028
+ interval: 100,
1029
+ frames: ['🔸 ', '🔶 ', '🟠 ', '🟠 ', '🔶 '],
1030
+ },
1031
+ bluePulse: {
1032
+ interval: 100,
1033
+ frames: ['🔹 ', '🔷 ', '🔵 ', '🔵 ', '🔷 '],
1034
+ },
1035
+ orangeBluePulse: {
1036
+ interval: 100,
1037
+ frames: ['🔸 ', '🔶 ', '🟠 ', '🟠 ', '🔶 ', '🔹 ', '🔷 ', '🔵 ', '🔵 ', '🔷 '],
1038
+ },
1039
+ timeTravel: {
1040
+ interval: 100,
1041
+ frames: ['🕛 ', '🕚 ', '🕙 ', '🕘 ', '🕗 ', '🕖 ', '🕕 ', '🕔 ', '🕓 ', '🕒 ', '🕑 ', '🕐 '],
1042
+ },
1043
+ aesthetic: {
1044
+ interval: 80,
1045
+ frames: ['▰▱▱▱▱▱▱', '▰▰▱▱▱▱▱', '▰▰▰▱▱▱▱', '▰▰▰▰▱▱▱', '▰▰▰▰▰▱▱', '▰▰▰▰▰▰▱', '▰▰▰▰▰▰▰', '▰▱▱▱▱▱▱'],
1046
+ },
1047
+ dwarfFortress: {
1048
+ interval: 80,
1049
+ frames: [
1050
+ ' ██████£££ ',
1051
+ '☺██████£££ ',
1052
+ '☺██████£££ ',
1053
+ '☺▓█████£££ ',
1054
+ '☺▓█████£££ ',
1055
+ '☺▒█████£££ ',
1056
+ '☺▒█████£££ ',
1057
+ '☺░█████£££ ',
1058
+ '☺░█████£££ ',
1059
+ '☺ █████£££ ',
1060
+ ' ☺█████£££ ',
1061
+ ' ☺█████£££ ',
1062
+ ' ☺▓████£££ ',
1063
+ ' ☺▓████£££ ',
1064
+ ' ☺▒████£££ ',
1065
+ ' ☺▒████£££ ',
1066
+ ' ☺░████£££ ',
1067
+ ' ☺░████£££ ',
1068
+ ' ☺ ████£££ ',
1069
+ ' ☺████£££ ',
1070
+ ' ☺████£££ ',
1071
+ ' ☺▓███£££ ',
1072
+ ' ☺▓███£££ ',
1073
+ ' ☺▒███£££ ',
1074
+ ' ☺▒███£££ ',
1075
+ ' ☺░███£££ ',
1076
+ ' ☺░███£££ ',
1077
+ ' ☺ ███£££ ',
1078
+ ' ☺███£££ ',
1079
+ ' ☺███£££ ',
1080
+ ' ☺▓██£££ ',
1081
+ ' ☺▓██£££ ',
1082
+ ' ☺▒██£££ ',
1083
+ ' ☺▒██£££ ',
1084
+ ' ☺░██£££ ',
1085
+ ' ☺░██£££ ',
1086
+ ' ☺ ██£££ ',
1087
+ ' ☺██£££ ',
1088
+ ' ☺██£££ ',
1089
+ ' ☺▓█£££ ',
1090
+ ' ☺▓█£££ ',
1091
+ ' ☺▒█£££ ',
1092
+ ' ☺▒█£££ ',
1093
+ ' ☺░█£££ ',
1094
+ ' ☺░█£££ ',
1095
+ ' ☺ █£££ ',
1096
+ ' ☺█£££ ',
1097
+ ' ☺█£££ ',
1098
+ ' ☺▓£££ ',
1099
+ ' ☺▓£££ ',
1100
+ ' ☺▒£££ ',
1101
+ ' ☺▒£££ ',
1102
+ ' ☺░£££ ',
1103
+ ' ☺░£££ ',
1104
+ ' ☺ £££ ',
1105
+ ' ☺£££ ',
1106
+ ' ☺£££ ',
1107
+ ' ☺▓££ ',
1108
+ ' ☺▓££ ',
1109
+ ' ☺▒££ ',
1110
+ ' ☺▒££ ',
1111
+ ' ☺░££ ',
1112
+ ' ☺░££ ',
1113
+ ' ☺ ££ ',
1114
+ ' ☺££ ',
1115
+ ' ☺££ ',
1116
+ ' ☺▓£ ',
1117
+ ' ☺▓£ ',
1118
+ ' ☺▒£ ',
1119
+ ' ☺▒£ ',
1120
+ ' ☺░£ ',
1121
+ ' ☺░£ ',
1122
+ ' ☺ £ ',
1123
+ ' ☺£ ',
1124
+ ' ☺£ ',
1125
+ ' ☺▓ ',
1126
+ ' ☺▓ ',
1127
+ ' ☺▒ ',
1128
+ ' ☺▒ ',
1129
+ ' ☺░ ',
1130
+ ' ☺░ ',
1131
+ ' ☺ ',
1132
+ ' ☺ &',
1133
+ ' ☺ ☼&',
1134
+ ' ☺ ☼ &',
1135
+ ' ☺☼ &',
1136
+ ' ☺☼ & ',
1137
+ ' ‼ & ',
1138
+ ' ☺ & ',
1139
+ ' ‼ & ',
1140
+ ' ☺ & ',
1141
+ ' ‼ & ',
1142
+ ' ☺ & ',
1143
+ '‼ & ',
1144
+ ' & ',
1145
+ ' & ',
1146
+ ' & ░ ',
1147
+ ' & ▒ ',
1148
+ ' & ▓ ',
1149
+ ' & £ ',
1150
+ ' & ░£ ',
1151
+ ' & ▒£ ',
1152
+ ' & ▓£ ',
1153
+ ' & ££ ',
1154
+ ' & ░££ ',
1155
+ ' & ▒££ ',
1156
+ '& ▓££ ',
1157
+ '& £££ ',
1158
+ ' ░£££ ',
1159
+ ' ▒£££ ',
1160
+ ' ▓£££ ',
1161
+ ' █£££ ',
1162
+ ' ░█£££ ',
1163
+ ' ▒█£££ ',
1164
+ ' ▓█£££ ',
1165
+ ' ██£££ ',
1166
+ ' ░██£££ ',
1167
+ ' ▒██£££ ',
1168
+ ' ▓██£££ ',
1169
+ ' ███£££ ',
1170
+ ' ░███£££ ',
1171
+ ' ▒███£££ ',
1172
+ ' ▓███£££ ',
1173
+ ' ████£££ ',
1174
+ ' ░████£££ ',
1175
+ ' ▒████£££ ',
1176
+ ' ▓████£££ ',
1177
+ ' █████£££ ',
1178
+ ' ░█████£££ ',
1179
+ ' ▒█████£££ ',
1180
+ ' ▓█████£££ ',
1181
+ ' ██████£££ ',
1182
+ ' ██████£££ ',
1183
+ ],
1184
+ },
1185
+ };