rucaptcha 2.5.5 → 3.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md DELETED
@@ -1,304 +0,0 @@
1
- ## 2.5.5
2
-
3
- - Improved image for thicker interference lines.
4
- - Add more colors.
5
-
6
- ## 2.5.4
7
-
8
- - Fix: rucaptcha input maxlength attribute with config value.
9
-
10
- 2.5.3
11
-
12
- ---
13
-
14
- - Fix session invalid warning, only for development env;
15
-
16
- 2.5.2
17
-
18
- ---
19
-
20
- - Fix session.id error with upgrade Rails 6.0.2.1 or Rack 2.0.8 (#84)
21
-
22
- 2.5.1
23
-
24
- ---
25
-
26
- - Fix invalid module name error. (#78)
27
-
28
- 2.5.0
29
-
30
- ---
31
-
32
- - Support click captcha image to refresh new one by default.
33
- - Use simple tag helper generate captcha img html, for avoid asset_host (#73).
34
-
35
- 2.4.0
36
-
37
- ---
38
-
39
- - Add skip_cache_store_check configuration. (#63)
40
- - Fix for generate captcha with relative path, not url. (#58)
41
-
42
- 2.3.2
43
-
44
- ---
45
-
46
- - Change Yellow and Green colors to Pink and Deep Purple to pass WCAG 2.0's contrast test. (#70)
47
-
48
- 2.3.1
49
-
50
- ---
51
-
52
- - Fix #67 a y chars will invalid error (only in 2.3.0).
53
-
54
- 2.3.0
55
-
56
- ---
57
-
58
- - Add `config.outline` for use outline style.
59
- - Reduce colors down to 5 (red, blue, green, yellow and black).
60
-
61
- 2.2.0
62
-
63
- ---
64
-
65
- - Add option `config.length` for support change number chars. (#57)
66
- - Add option `config.strikethrough` for enable or disable strikethrough. (#57)
67
-
68
- 2.1.3
69
-
70
- ---
71
-
72
- - Windows support fixed with `send_data` method. (#45)
73
-
74
- 2.1.2
75
-
76
- ---
77
-
78
- - Do not change captcha when `HEAD /rucaptcha`.
79
-
80
- 2.1.1
81
-
82
- ---
83
-
84
- - Mount engine use `prepend` method to get high priority in config/routes.rb.
85
-
86
- 2.1.0
87
-
88
- ---
89
-
90
- - Mount Router by default, not need config now.
91
-
92
- > IMPORTANT: Wen you upgrade this version, you need remove `mount RuCaptcha::Engine` line from your `config/routes.rb`
93
-
94
- - Default use [:file_store, 'tmp/cache/rucaptcha/session'] as RuCaptcha.config.cache_store, now it can work without any configurations.
95
-
96
- > NOTE: But you still need care about `config.cache_store` to setup on a right way.
97
-
98
- ## 2.0.3
99
-
100
- - Use `ActiveSupport.on_load` to extend ActionController and ActionView.
101
-
102
- 2.0.1
103
-
104
- ---
105
-
106
- - Fix `/rucaptcha` path issue when `config.action_controller.asset_host` has setup with CDN url.
107
-
108
- 2.0.0
109
-
110
- ---
111
-
112
- _Break Changes!_
113
-
114
- WARNING!: This version have so many break changes!
115
-
116
- - Use C ext instead of ImageMagick, now it's no dependencies!
117
- - New captcha style.
118
- - Remove `len`, `font_size`, `cache_limit` config key, no support now.
119
- - Output `GIF` format.
120
-
121
- 1.2.0
122
-
123
- ---
124
-
125
- - Add an `:keep_session` option for `verify_rucaptcha?` method to giva a way for let you keep session on verify, if true, RuCaptcha will not delete the captcha code session after validation.
126
-
127
- 1.1.4
128
-
129
- ---
130
-
131
- - Fix #35 just give a warning message if not setup a right cache_store, only raise on :null_store.
132
-
133
- 1.1.2
134
-
135
- ---
136
-
137
- - Fix #34 rucaptcha.root_url -> root_path, to avoid generate a http url in a https application.
138
- - Fix spec to require Ruby 2.0.0, because there have a `Module#prepend` method called.
139
-
140
- 1.1.1
141
-
142
- ---
143
-
144
- - Remove inspect log on verify_rucaptcha
145
-
146
- 1.1.0
147
-
148
- ---
149
-
150
- - Add `cache_store` config key to setup a cache store location for RuCaptcha.
151
- - Store captcha in custom cache store.
152
-
153
- ## Security Notes
154
-
155
- - Fix Session replay secure issue that when Rails application use CookieStore.
156
-
157
- 1.0.0
158
-
159
- ---
160
-
161
- - Adjust to avoid lighter colors.
162
- - Avoid continuous chars have same color.
163
- - Use same color for each chars in :black_white mode.
164
-
165
- 0.5.1
166
-
167
- ---
168
-
169
- - Make sure it will render image when ImageMagick stderr have warning messages. (#26)
170
-
171
- 0.5.0
172
-
173
- ---
174
-
175
- - Fix cache with Rails 5.
176
-
177
- 0.4.5
178
-
179
- ---
180
-
181
- - Removed `posix-spawn` dependency, used open3 instead (core funciontality), JRuby compatible (#24)
182
-
183
- 0.4.4
184
-
185
- ---
186
-
187
- - Remove deprecated `width`, `height` config.
188
- - Delete session key after verify (#23).
189
- - Lighter text color, improve style.
190
-
191
- 0.4.2
192
-
193
- ---
194
-
195
- - Fix NoMethodError bug when params[:_rucaptha] is nil.
196
-
197
- 0.4.1
198
-
199
- ---
200
-
201
- - Add error message to resource when captcha code expired.
202
-
203
- 0.4.0
204
-
205
- ---
206
-
207
- - Add `config.colorize` option, to allow use black text theme.
208
-
209
- 0.3.3
210
-
211
- ---
212
-
213
- - Add `config.expires_in` to allow change captcha code expire time.
214
-
215
- 0.3.2.1
216
-
217
- ---
218
-
219
- - Add Windows development env support.
220
-
221
- 0.3.2
222
-
223
- ---
224
-
225
- - Make better render positions;
226
- - Trim blank space.
227
-
228
- 0.3.1
229
-
230
- ---
231
-
232
- - More complex Image render: compact text, strong lines, +/-5 rotate...
233
- - [DEPRECATION] config.width, config.height removed, use config.font_size.
234
- - Fix the render position in difference font sizes.
235
- - Fix input field type, and disable autocorrect, autocapitalize, and limit maxlength with char length;
236
-
237
- 0.2.5
238
-
239
- ---
240
-
241
- - Add `session[:_rucaptcha]` expire time, for protect Rails CookieSession Replay Attack.
242
- - Captcha input field disable autocomplete, and set field type as `email` for shown correct keyboard on mobile view.
243
-
244
- 0.2.3
245
-
246
- ---
247
-
248
- - It will raise error when call ImageMagick failed.
249
-
250
- 0.2.2
251
-
252
- ---
253
-
254
- - Added locale for pt-BR language; @ramirovjr
255
-
256
- 0.2.1
257
-
258
- ---
259
-
260
- - Fix issue when cache dir not exist.
261
-
262
- 0.2.0
263
-
264
- ---
265
-
266
- - Added file cache, can setup how many images you want generate by `config.cache_limit`,
267
- RuCaptcha will use cache for next requests.
268
- When you restart Rails processes it will generate new again and clean the old caches.
269
-
270
- 0.1.4
271
-
272
- ---
273
-
274
- - Fix `verify_rucaptcha?` logic in somecase.
275
- - Locales fixed.
276
-
277
- 0.1.3
278
-
279
- ---
280
-
281
- - `zh-TW` translate file fixed.
282
- - Use xxx_url to fix bad captcha URL for `config.action_controller.asset_host` enabled case.
283
-
284
- 0.1.2
285
-
286
- ---
287
-
288
- - No case sensitive;
289
- - Export config.implode;
290
- - Improve image color and style;
291
- - Don't generate chars in 'l,o,0,1'.
292
- - Render lower case chars on image.
293
-
294
- 0.1.1
295
-
296
- ---
297
-
298
- - Include default validation I18n messages (en, zh-CN, zh-TW).
299
-
300
- 0.1.0
301
-
302
- ---
303
-
304
- - First release.
@@ -1,13 +0,0 @@
1
- module RuCaptcha
2
- class CaptchaController < ActionController::Base
3
- def index
4
- return head :ok if request.head?
5
-
6
- headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
7
- headers["Pragma"] = "no-cache"
8
- data = generate_rucaptcha
9
- opts = { disposition: "inline", type: "image/gif" }
10
- send_data data, opts
11
- end
12
- end
13
- end
@@ -1,3 +0,0 @@
1
- en:
2
- rucaptcha:
3
- invalid: "The captcha code is incorrect (if you can't read, you can click image to refresh it)"
@@ -1,3 +0,0 @@
1
- 'pt-BR':
2
- rucaptcha:
3
- invalid: "Código inválido!"
@@ -1,3 +0,0 @@
1
- 'zh-CN':
2
- rucaptcha:
3
- invalid: "验证码不正确(如无法识别,可以点击刷新验证码)"
@@ -1,3 +0,0 @@
1
- 'zh-TW':
2
- rucaptcha:
3
- invalid: "驗證碼不正確(如無法識別,可以點擊刷新驗證碼)"
data/config/routes.rb DELETED
@@ -1,3 +0,0 @@
1
- RuCaptcha::Engine.routes.draw do
2
- root to: "captcha#index"
3
- end
@@ -1,365 +0,0 @@
1
- // Colors from
2
- // https://material.io/guidelines/style/color.html#color-ui-color-palette
3
- // Color covert HEX RGB to \x??\x??\x??
4
- static char *colors[] = {
5
- // Black 500 #000000
6
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
7
- "\x00\x00\x00"
8
- "\x00\x00\x00"
9
- "\x00\x00\x00"
10
- "\x00\x00\x00"
11
- "\x00\x00\x00"
12
- "\x00\x00\x00"
13
- "\x00\x00\x00"
14
- "\x00\x00\x00"
15
- "\x00\x00\x00"
16
- "\x00\x00\x00"
17
- "\x00\x00\x00"
18
- "\x00\x00\x00"
19
- "\x00\x00\x00"
20
- "\x00\x00\x00"
21
- "\x00\x00\x00"
22
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
23
-
24
- // Red A700 #D50000
25
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
26
- "\xD5\x00\x00"
27
- "\xD5\x00\x00"
28
- "\xD5\x00\x00"
29
- "\xD5\x00\x00"
30
- "\xD5\x00\x00"
31
- "\xD5\x00\x00"
32
- "\xD5\x00\x00"
33
- "\xD5\x00\x00"
34
- "\xD5\x00\x00"
35
- "\xD5\x00\x00"
36
- "\xD5\x00\x00"
37
- "\xD5\x00\x00"
38
- "\xD5\x00\x00"
39
- "\xD5\x00\x00"
40
- "\xD5\x00\x00"
41
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
42
-
43
- // Red #B71C1C
44
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
45
- "\xB7\x1C\x1C"
46
- "\xB7\x1C\x1C"
47
- "\xB7\x1C\x1C"
48
- "\xB7\x1C\x1C"
49
- "\xB7\x1C\x1C"
50
- "\xB7\x1C\x1C"
51
- "\xB7\x1C\x1C"
52
- "\xB7\x1C\x1C"
53
- "\xB7\x1C\x1C"
54
- "\xB7\x1C\x1C"
55
- "\xB7\x1C\x1C"
56
- "\xB7\x1C\x1C"
57
- "\xB7\x1C\x1C"
58
- "\xB7\x1C\x1C"
59
- "\xB7\x1C\x1C"
60
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
61
-
62
- // Red #E53935
63
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
64
- "\xE5\x39\x35"
65
- "\xE5\x39\x35"
66
- "\xE5\x39\x35"
67
- "\xE5\x39\x35"
68
- "\xE5\x39\x35"
69
- "\xE5\x39\x35"
70
- "\xE5\x39\x35"
71
- "\xE5\x39\x35"
72
- "\xE5\x39\x35"
73
- "\xE5\x39\x35"
74
- "\xE5\x39\x35"
75
- "\xE5\x39\x35"
76
- "\xE5\x39\x35"
77
- "\xE5\x39\x35"
78
- "\xE5\x39\x35"
79
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
80
-
81
- // Orange A700 #DD2C00
82
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
83
- "\xDD\x2C\x00"
84
- "\xDD\x2C\x00"
85
- "\xDD\x2C\x00"
86
- "\xDD\x2C\x00"
87
- "\xDD\x2C\x00"
88
- "\xDD\x2C\x00"
89
- "\xDD\x2C\x00"
90
- "\xDD\x2C\x00"
91
- "\xDD\x2C\x00"
92
- "\xDD\x2C\x00"
93
- "\xDD\x2C\x00"
94
- "\xDD\x2C\x00"
95
- "\xDD\x2C\x00"
96
- "\xDD\x2C\x00"
97
- "\xDD\x2C\x00"
98
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
99
-
100
- // Orange #FF3D00
101
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
102
- "\xFF\x3D\x00"
103
- "\xFF\x3D\x00"
104
- "\xFF\x3D\x00"
105
- "\xFF\x3D\x00"
106
- "\xFF\x3D\x00"
107
- "\xFF\x3D\x00"
108
- "\xFF\x3D\x00"
109
- "\xFF\x3D\x00"
110
- "\xFF\x3D\x00"
111
- "\xFF\x3D\x00"
112
- "\xFF\x3D\x00"
113
- "\xFF\x3D\x00"
114
- "\xFF\x3D\x00"
115
- "\xFF\x3D\x00"
116
- "\xFF\x3D\x00"
117
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
118
-
119
- // Orange #BF360C
120
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
121
- "\xBF\x36\x0C"
122
- "\xBF\x36\x0C"
123
- "\xBF\x36\x0C"
124
- "\xBF\x36\x0C"
125
- "\xBF\x36\x0C"
126
- "\xBF\x36\x0C"
127
- "\xBF\x36\x0C"
128
- "\xBF\x36\x0C"
129
- "\xBF\x36\x0C"
130
- "\xBF\x36\x0C"
131
- "\xBF\x36\x0C"
132
- "\xBF\x36\x0C"
133
- "\xBF\x36\x0C"
134
- "\xBF\x36\x0C"
135
- "\xBF\x36\x0C"
136
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
137
-
138
- // Orange #FF6D00
139
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
140
- "\xFF\x6D\x00"
141
- "\xFF\x6D\x00"
142
- "\xFF\x6D\x00"
143
- "\xFF\x6D\x00"
144
- "\xFF\x6D\x00"
145
- "\xFF\x6D\x00"
146
- "\xFF\x6D\x00"
147
- "\xFF\x6D\x00"
148
- "\xFF\x6D\x00"
149
- "\xFF\x6D\x00"
150
- "\xFF\x6D\x00"
151
- "\xFF\x6D\x00"
152
- "\xFF\x6D\x00"
153
- "\xFF\x6D\x00"
154
- "\xFF\x6D\x00"
155
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
156
-
157
- // Green #00C853
158
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
159
- "\x00\xC8\x53"
160
- "\x00\xC8\x53"
161
- "\x00\xC8\x53"
162
- "\x00\xC8\x53"
163
- "\x00\xC8\x53"
164
- "\x00\xC8\x53"
165
- "\x00\xC8\x53"
166
- "\x00\xC8\x53"
167
- "\x00\xC8\x53"
168
- "\x00\xC8\x53"
169
- "\x00\xC8\x53"
170
- "\x00\xC8\x53"
171
- "\x00\xC8\x53"
172
- "\x00\xC8\x53"
173
- "\x00\xC8\x53"
174
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
175
-
176
- // Green #00C853
177
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
178
- "\x00\xC8\x53"
179
- "\x00\xC8\x53"
180
- "\x00\xC8\x53"
181
- "\x00\xC8\x53"
182
- "\x00\xC8\x53"
183
- "\x00\xC8\x53"
184
- "\x00\xC8\x53"
185
- "\x00\xC8\x53"
186
- "\x00\xC8\x53"
187
- "\x00\xC8\x53"
188
- "\x00\xC8\x53"
189
- "\x00\xC8\x53"
190
- "\x00\xC8\x53"
191
- "\x00\xC8\x53"
192
- "\x00\xC8\x53"
193
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
194
-
195
- // Green #64DD17
196
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
197
- "\x64\xDD\x17"
198
- "\x64\xDD\x17"
199
- "\x64\xDD\x17"
200
- "\x64\xDD\x17"
201
- "\x64\xDD\x17"
202
- "\x64\xDD\x17"
203
- "\x64\xDD\x17"
204
- "\x64\xDD\x17"
205
- "\x64\xDD\x17"
206
- "\x64\xDD\x17"
207
- "\x64\xDD\x17"
208
- "\x64\xDD\x17"
209
- "\x64\xDD\x17"
210
- "\x64\xDD\x17"
211
- "\x64\xDD\x17"
212
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
213
-
214
- // Blue #2E7D32
215
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
216
- "\x2E\x7D\x32"
217
- "\x2E\x7D\x32"
218
- "\x2E\x7D\x32"
219
- "\x2E\x7D\x32"
220
- "\x2E\x7D\x32"
221
- "\x2E\x7D\x32"
222
- "\x2E\x7D\x32"
223
- "\x2E\x7D\x32"
224
- "\x2E\x7D\x32"
225
- "\x2E\x7D\x32"
226
- "\x2E\x7D\x32"
227
- "\x2E\x7D\x32"
228
- "\x2E\x7D\x32"
229
- "\x2E\x7D\x32"
230
- "\x2E\x7D\x32"
231
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
232
-
233
- // Blue #2962FF
234
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
235
- "\x29\x62\xFF"
236
- "\x29\x62\xFF"
237
- "\x29\x62\xFF"
238
- "\x29\x62\xFF"
239
- "\x29\x62\xFF"
240
- "\x29\x62\xFF"
241
- "\x29\x62\xFF"
242
- "\x29\x62\xFF"
243
- "\x29\x62\xFF"
244
- "\x29\x62\xFF"
245
- "\x29\x62\xFF"
246
- "\x29\x62\xFF"
247
- "\x29\x62\xFF"
248
- "\x29\x62\xFF"
249
- "\x29\x62\xFF"
250
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
251
-
252
- // Blue #0D47A1
253
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
254
- "\x0D\x47\xA1"
255
- "\x0D\x47\xA1"
256
- "\x0D\x47\xA1"
257
- "\x0D\x47\xA1"
258
- "\x0D\x47\xA1"
259
- "\x0D\x47\xA1"
260
- "\x0D\x47\xA1"
261
- "\x0D\x47\xA1"
262
- "\x0D\x47\xA1"
263
- "\x0D\x47\xA1"
264
- "\x0D\x47\xA1"
265
- "\x0D\x47\xA1"
266
- "\x0D\x47\xA1"
267
- "\x0D\x47\xA1"
268
- "\x0D\x47\xA1"
269
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
270
-
271
- // Blue #1A237E
272
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
273
- "\x1A\x23\x7E"
274
- "\x1A\x23\x7E"
275
- "\x1A\x23\x7E"
276
- "\x1A\x23\x7E"
277
- "\x1A\x23\x7E"
278
- "\x1A\x23\x7E"
279
- "\x1A\x23\x7E"
280
- "\x1A\x23\x7E"
281
- "\x1A\x23\x7E"
282
- "\x1A\x23\x7E"
283
- "\x1A\x23\x7E"
284
- "\x1A\x23\x7E"
285
- "\x1A\x23\x7E"
286
- "\x1A\x23\x7E"
287
- "\x1A\x23\x7E"
288
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
289
-
290
- // Blue #0091EA
291
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
292
- "\x00\x91\xEA"
293
- "\x00\x91\xEA"
294
- "\x00\x91\xEA"
295
- "\x00\x91\xEA"
296
- "\x00\x91\xEA"
297
- "\x00\x91\xEA"
298
- "\x00\x91\xEA"
299
- "\x00\x91\xEA"
300
- "\x00\x91\xEA"
301
- "\x00\x91\xEA"
302
- "\x00\x91\xEA"
303
- "\x00\x91\xEA"
304
- "\x00\x91\xEA"
305
- "\x00\x91\xEA"
306
- "\x00\x91\xEA"
307
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
308
-
309
- // Deep Purple A700 #6200EA
310
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
311
- "\x62\x00\xEA"
312
- "\x62\x00\xEA"
313
- "\x62\x00\xEA"
314
- "\x62\x00\xEA"
315
- "\x62\x00\xEA"
316
- "\x62\x00\xEA"
317
- "\x62\x00\xEA"
318
- "\x62\x00\xEA"
319
- "\x62\x00\xEA"
320
- "\x62\x00\xEA"
321
- "\x62\x00\xEA"
322
- "\x62\x00\xEA"
323
- "\x62\x00\xEA"
324
- "\x62\x00\xEA"
325
- "\x62\x00\xEA"
326
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
327
-
328
- // Pink #F50057
329
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
330
- "\xF5\x00\x57"
331
- "\xF5\x00\x57"
332
- "\xF5\x00\x57"
333
- "\xF5\x00\x57"
334
- "\xF5\x00\x57"
335
- "\xF5\x00\x57"
336
- "\xF5\x00\x57"
337
- "\xF5\x00\x57"
338
- "\xF5\x00\x57"
339
- "\xF5\x00\x57"
340
- "\xF5\x00\x57"
341
- "\xF5\x00\x57"
342
- "\xF5\x00\x57"
343
- "\xF5\x00\x57"
344
- "\xF5\x00\x57"
345
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04",
346
-
347
- // Deep Purple A700 #4A148C
348
- "GIF89a" "\xc8\0\x46\0" "\x83" "\0\0"
349
- "\x49\x14\x8C"
350
- "\x49\x14\x8C"
351
- "\x49\x14\x8C"
352
- "\x49\x14\x8C"
353
- "\x49\x14\x8C"
354
- "\x49\x14\x8C"
355
- "\x49\x14\x8C"
356
- "\x49\x14\x8C"
357
- "\x49\x14\x8C"
358
- "\x49\x14\x8C"
359
- "\x49\x14\x8C"
360
- "\x49\x14\x8C"
361
- "\x49\x14\x8C"
362
- "\x49\x14\x8C"
363
- "\x49\x14\x8C"
364
- "\xff\xff\xff" "," "\0\0\0\0" "\xc8\0\x46\0" "\0" "\x04"
365
- };