shortcuts-playground 1.2.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 (68) hide show
  1. package/README.md +54 -0
  2. package/agents/shortcut-builder.md +172 -0
  3. package/agents/shortcut-remixer.md +239 -0
  4. package/commands/build-shortcut.md +32 -0
  5. package/commands/remix-shortcut.md +34 -0
  6. package/opencode.json +30 -0
  7. package/package.json +47 -0
  8. package/plugin/validator.ts +179 -0
  9. package/skills/shortcuts-playground/ACTIONS.md +713 -0
  10. package/skills/shortcuts-playground/APPINTENTS.md +2760 -0
  11. package/skills/shortcuts-playground/AUTOMATION_TRIGGERS.md +133 -0
  12. package/skills/shortcuts-playground/BEST_PRACTICES.md +357 -0
  13. package/skills/shortcuts-playground/CHANGELOG.md +585 -0
  14. package/skills/shortcuts-playground/CONTROL_FLOW.md +777 -0
  15. package/skills/shortcuts-playground/DATE_TIME.md +75 -0
  16. package/skills/shortcuts-playground/EXAMPLES.md +738 -0
  17. package/skills/shortcuts-playground/FILTERS.md +697 -0
  18. package/skills/shortcuts-playground/HEALTHKIT.md +317 -0
  19. package/skills/shortcuts-playground/ICONS_AND_COLORS.md +89 -0
  20. package/skills/shortcuts-playground/JAVASCRIPT_WEBPAGE.md +51 -0
  21. package/skills/shortcuts-playground/PARAMETER_TYPES.md +1117 -0
  22. package/skills/shortcuts-playground/PLIST_FORMAT.md +296 -0
  23. package/skills/shortcuts-playground/README.md +77 -0
  24. package/skills/shortcuts-playground/SKILL.md +459 -0
  25. package/skills/shortcuts-playground/THIRD_PARTY_ACTIONS.md +77 -0
  26. package/skills/shortcuts-playground/TOOLKIT_SNAPSHOT.md +62 -0
  27. package/skills/shortcuts-playground/URL_SCHEMES.md +59 -0
  28. package/skills/shortcuts-playground/VARIABLES.md +569 -0
  29. package/skills/shortcuts-playground/assets/shortcuts-small.svg +14 -0
  30. package/skills/shortcuts-playground/assets/shortcuts.png +0 -0
  31. package/skills/shortcuts-playground/data/healthkit-ios26.2-reference.json +2603 -0
  32. package/skills/shortcuts-playground/data/macos27-shortpy-grounding.json +4085 -0
  33. package/skills/shortcuts-playground/data/macos27-workflow-trigger-samples.json +1 -0
  34. package/skills/shortcuts-playground/data/shortcuts-glyph-synonyms.json +5102 -0
  35. package/skills/shortcuts-playground/data/shortcuts-icon-colors.json +107 -0
  36. package/skills/shortcuts-playground/data/shortcuts-official-glyph-mapping.json +509 -0
  37. package/skills/shortcuts-playground/data/toolkit-v63-tool-ids.json +1806 -0
  38. package/skills/shortcuts-playground/data/toolkit-v78-first-party-enum-cases.json +1 -0
  39. package/skills/shortcuts-playground/data/toolkit-v78-first-party-parameter-keys.json +1 -0
  40. package/skills/shortcuts-playground/data/toolkit-v78-ios27-tool-ids.json +1222 -0
  41. package/skills/shortcuts-playground/data/toolkit-v78-tool-ids.json +2745 -0
  42. package/skills/shortcuts-playground/data/toolkit-v78-trigger-parameter-keys.json +1051 -0
  43. package/skills/shortcuts-playground/golden-shortcuts/index.jsonl +19 -0
  44. package/skills/shortcuts-playground/golden-shortcuts/xml/1be4dde95b794253bf82438e201b33e7.xml +174 -0
  45. package/skills/shortcuts-playground/golden-shortcuts/xml/2e0fb675e45948aaacee7e534f910492.xml +1016 -0
  46. package/skills/shortcuts-playground/golden-shortcuts/xml/332c12a0060043b388b22b806be7ab58.xml +1924 -0
  47. package/skills/shortcuts-playground/golden-shortcuts/xml/3dd4ee24e43f464f92adaa70a0311eaa.xml +1177 -0
  48. package/skills/shortcuts-playground/golden-shortcuts/xml/4d102301c6e646faa7a8a221f4f4ec98.xml +321 -0
  49. package/skills/shortcuts-playground/golden-shortcuts/xml/51cc4e26d1044893a0c3f2f3630cf2d2.xml +1933 -0
  50. package/skills/shortcuts-playground/golden-shortcuts/xml/623e7f1ca5f948e2bd53811fec63e544.xml +136 -0
  51. package/skills/shortcuts-playground/golden-shortcuts/xml/6a18b76843ac45c384ac3400f3740997.xml +1791 -0
  52. package/skills/shortcuts-playground/golden-shortcuts/xml/71f0cacb0f604b399b76c5dcb7286e7c.xml +2228 -0
  53. package/skills/shortcuts-playground/golden-shortcuts/xml/807525ed9f974829bc8494defac923a8.xml +259 -0
  54. package/skills/shortcuts-playground/golden-shortcuts/xml/8ab0d39826ab4249be58672763caa3ba.xml +420 -0
  55. package/skills/shortcuts-playground/golden-shortcuts/xml/91c45fd3fd3b427897d9ba485efb1227.xml +800 -0
  56. package/skills/shortcuts-playground/golden-shortcuts/xml/97be626bb25c41709d175646a7f6d8f2.xml +424 -0
  57. package/skills/shortcuts-playground/golden-shortcuts/xml/ae59e10d409348f9bd33894f03f9beb4.xml +568 -0
  58. package/skills/shortcuts-playground/golden-shortcuts/xml/afa83b6be811483b9c32189c41eb9312.xml +391 -0
  59. package/skills/shortcuts-playground/golden-shortcuts/xml/cfdb083b857e4ac189629fa386d27cdc.xml +193 -0
  60. package/skills/shortcuts-playground/golden-shortcuts/xml/e01cebe192d64b2fbca80204d03d92ab.xml +111 -0
  61. package/skills/shortcuts-playground/golden-shortcuts/xml/ef669bcf8bad489d9ef4b88bfaf5772f.xml +780 -0
  62. package/skills/shortcuts-playground/golden-shortcuts/xml/f44f5caf5e3e48d4817e73af450c4404.xml +570 -0
  63. package/skills/shortcuts-playground/scripts/generate_healthkit_reference.py +394 -0
  64. package/skills/shortcuts-playground/scripts/lookup_action_grounding.py +1164 -0
  65. package/skills/shortcuts-playground/scripts/select_shortcut_icon_color.py +597 -0
  66. package/skills/shortcuts-playground/scripts/test_random_mixed_shortcuts.py +1067 -0
  67. package/skills/shortcuts-playground/scripts/test_wiring_regressions.py +2247 -0
  68. package/skills/shortcuts-playground/scripts/validate_shortcut.py +4526 -0
@@ -0,0 +1,1933 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>WFQuickActionSurfaces</key>
6
+ <array/>
7
+ <key>WFWorkflowActions</key>
8
+ <array>
9
+ <dict>
10
+ <key>WFWorkflowActionIdentifier</key>
11
+ <string>is.workflow.actions.comment</string>
12
+ <key>WFWorkflowActionParameters</key>
13
+ <dict>
14
+ <key>WFCommentActionText</key>
15
+ <string>Reformat results for a completed Wordle game to include scores for partial and perfect guesses on each line. The shortcut can ouput results as reformatted emoji or as a single image saved to the Photos app.</string>
16
+ </dict>
17
+ </dict>
18
+ <dict>
19
+ <key>WFWorkflowActionIdentifier</key>
20
+ <string>is.workflow.actions.gettext</string>
21
+ <key>WFWorkflowActionParameters</key>
22
+ <dict>
23
+ <key>UUID</key>
24
+ <string>292A7003-15E3-46FA-B74E-2062E53BFD9E</string>
25
+ <key>WFTextActionText</key>
26
+ <dict>
27
+ <key>Value</key>
28
+ <dict>
29
+ <key>attachmentsByRange</key>
30
+ <dict>
31
+ <key>{0, 1}</key>
32
+ <dict>
33
+ <key>Type</key>
34
+ <string>ExtensionInput</string>
35
+ </dict>
36
+ </dict>
37
+ <key>string</key>
38
+ <string></string>
39
+ </dict>
40
+ <key>WFSerializationType</key>
41
+ <string>WFTextTokenString</string>
42
+ </dict>
43
+ </dict>
44
+ </dict>
45
+ <dict>
46
+ <key>WFWorkflowActionIdentifier</key>
47
+ <string>is.workflow.actions.setvariable</string>
48
+ <key>WFWorkflowActionParameters</key>
49
+ <dict>
50
+ <key>WFInput</key>
51
+ <dict>
52
+ <key>Value</key>
53
+ <dict>
54
+ <key>OutputName</key>
55
+ <string>Text</string>
56
+ <key>OutputUUID</key>
57
+ <string>292A7003-15E3-46FA-B74E-2062E53BFD9E</string>
58
+ <key>Type</key>
59
+ <string>ActionOutput</string>
60
+ </dict>
61
+ <key>WFSerializationType</key>
62
+ <string>WFTextTokenAttachment</string>
63
+ </dict>
64
+ <key>WFVariableName</key>
65
+ <string>Wordle Blurb</string>
66
+ </dict>
67
+ </dict>
68
+ <dict>
69
+ <key>WFWorkflowActionIdentifier</key>
70
+ <string>is.workflow.actions.comment</string>
71
+ <key>WFWorkflowActionParameters</key>
72
+ <dict>
73
+ <key>WFCommentActionText</key>
74
+ <string>If you want to use different emoji for Wordle results or different word meanings for each emoji, you can edit the action below.</string>
75
+ </dict>
76
+ </dict>
77
+ <dict>
78
+ <key>WFWorkflowActionIdentifier</key>
79
+ <string>is.workflow.actions.dictionary</string>
80
+ <key>WFWorkflowActionParameters</key>
81
+ <dict>
82
+ <key>UUID</key>
83
+ <string>CAB1C18C-C811-4A29-94B8-E3DDD539D9FB</string>
84
+ <key>WFItems</key>
85
+ <dict>
86
+ <key>Value</key>
87
+ <dict>
88
+ <key>WFDictionaryFieldValueItems</key>
89
+ <array>
90
+ <dict>
91
+ <key>WFItemType</key>
92
+ <integer>0</integer>
93
+ <key>WFKey</key>
94
+ <dict>
95
+ <key>Value</key>
96
+ <dict>
97
+ <key>string</key>
98
+ <string>🟨</string>
99
+ </dict>
100
+ <key>WFSerializationType</key>
101
+ <string>WFTextTokenString</string>
102
+ </dict>
103
+ <key>WFValue</key>
104
+ <dict>
105
+ <key>Value</key>
106
+ <dict>
107
+ <key>string</key>
108
+ <string>partial</string>
109
+ </dict>
110
+ <key>WFSerializationType</key>
111
+ <string>WFTextTokenString</string>
112
+ </dict>
113
+ </dict>
114
+ <dict>
115
+ <key>WFItemType</key>
116
+ <integer>0</integer>
117
+ <key>WFKey</key>
118
+ <dict>
119
+ <key>Value</key>
120
+ <dict>
121
+ <key>string</key>
122
+ <string>🟩</string>
123
+ </dict>
124
+ <key>WFSerializationType</key>
125
+ <string>WFTextTokenString</string>
126
+ </dict>
127
+ <key>WFValue</key>
128
+ <dict>
129
+ <key>Value</key>
130
+ <dict>
131
+ <key>string</key>
132
+ <string>perfect</string>
133
+ </dict>
134
+ <key>WFSerializationType</key>
135
+ <string>WFTextTokenString</string>
136
+ </dict>
137
+ </dict>
138
+ </array>
139
+ </dict>
140
+ <key>WFSerializationType</key>
141
+ <string>WFDictionaryFieldValue</string>
142
+ </dict>
143
+ </dict>
144
+ </dict>
145
+ <dict>
146
+ <key>WFWorkflowActionIdentifier</key>
147
+ <string>is.workflow.actions.setvariable</string>
148
+ <key>WFWorkflowActionParameters</key>
149
+ <dict>
150
+ <key>WFInput</key>
151
+ <dict>
152
+ <key>Value</key>
153
+ <dict>
154
+ <key>OutputName</key>
155
+ <string>Dictionary</string>
156
+ <key>OutputUUID</key>
157
+ <string>CAB1C18C-C811-4A29-94B8-E3DDD539D9FB</string>
158
+ <key>Type</key>
159
+ <string>ActionOutput</string>
160
+ </dict>
161
+ <key>WFSerializationType</key>
162
+ <string>WFTextTokenAttachment</string>
163
+ </dict>
164
+ <key>WFVariableName</key>
165
+ <string>Emoji Meanings</string>
166
+ </dict>
167
+ </dict>
168
+ <dict>
169
+ <key>WFWorkflowActionIdentifier</key>
170
+ <string>is.workflow.actions.comment</string>
171
+ <key>WFWorkflowActionParameters</key>
172
+ <dict>
173
+ <key>WFCommentActionText</key>
174
+ <string>Match the first line of text in Wordle's default shared results</string>
175
+ </dict>
176
+ </dict>
177
+ <dict>
178
+ <key>WFWorkflowActionIdentifier</key>
179
+ <string>is.workflow.actions.text.match</string>
180
+ <key>WFWorkflowActionParameters</key>
181
+ <dict>
182
+ <key>UUID</key>
183
+ <string>0492CFC1-FD3F-40FE-80E7-2050367265F5</string>
184
+ <key>WFMatchTextPattern</key>
185
+ <string>^Wordle\s(\d+)\s(\d)\/(\d)</string>
186
+ <key>text</key>
187
+ <dict>
188
+ <key>Value</key>
189
+ <dict>
190
+ <key>attachmentsByRange</key>
191
+ <dict>
192
+ <key>{0, 1}</key>
193
+ <dict>
194
+ <key>Type</key>
195
+ <string>Variable</string>
196
+ <key>VariableName</key>
197
+ <string>Wordle Blurb</string>
198
+ </dict>
199
+ </dict>
200
+ <key>string</key>
201
+ <string></string>
202
+ </dict>
203
+ <key>WFSerializationType</key>
204
+ <string>WFTextTokenString</string>
205
+ </dict>
206
+ </dict>
207
+ </dict>
208
+ <dict>
209
+ <key>WFWorkflowActionIdentifier</key>
210
+ <string>is.workflow.actions.setvariable</string>
211
+ <key>WFWorkflowActionParameters</key>
212
+ <dict>
213
+ <key>WFInput</key>
214
+ <dict>
215
+ <key>Value</key>
216
+ <dict>
217
+ <key>OutputName</key>
218
+ <string>Matches</string>
219
+ <key>OutputUUID</key>
220
+ <string>0492CFC1-FD3F-40FE-80E7-2050367265F5</string>
221
+ <key>Type</key>
222
+ <string>ActionOutput</string>
223
+ </dict>
224
+ <key>WFSerializationType</key>
225
+ <string>WFTextTokenAttachment</string>
226
+ </dict>
227
+ <key>WFVariableName</key>
228
+ <string>First Wordle Line</string>
229
+ </dict>
230
+ </dict>
231
+ <dict>
232
+ <key>WFWorkflowActionIdentifier</key>
233
+ <string>is.workflow.actions.text.match.getgroup</string>
234
+ <key>WFWorkflowActionParameters</key>
235
+ <dict>
236
+ <key>UUID</key>
237
+ <string>E329D447-DE7D-4B71-AA8B-76F01CFCA9E3</string>
238
+ <key>WFGetGroupType</key>
239
+ <string>Group At Index</string>
240
+ <key>matches</key>
241
+ <dict>
242
+ <key>Value</key>
243
+ <dict>
244
+ <key>OutputName</key>
245
+ <string>Matches</string>
246
+ <key>OutputUUID</key>
247
+ <string>0492CFC1-FD3F-40FE-80E7-2050367265F5</string>
248
+ <key>Type</key>
249
+ <string>ActionOutput</string>
250
+ </dict>
251
+ <key>WFSerializationType</key>
252
+ <string>WFTextTokenAttachment</string>
253
+ </dict>
254
+ </dict>
255
+ </dict>
256
+ <dict>
257
+ <key>WFWorkflowActionIdentifier</key>
258
+ <string>is.workflow.actions.setvariable</string>
259
+ <key>WFWorkflowActionParameters</key>
260
+ <dict>
261
+ <key>WFInput</key>
262
+ <dict>
263
+ <key>Value</key>
264
+ <dict>
265
+ <key>OutputName</key>
266
+ <string>Text</string>
267
+ <key>OutputUUID</key>
268
+ <string>E329D447-DE7D-4B71-AA8B-76F01CFCA9E3</string>
269
+ <key>Type</key>
270
+ <string>ActionOutput</string>
271
+ </dict>
272
+ <key>WFSerializationType</key>
273
+ <string>WFTextTokenAttachment</string>
274
+ </dict>
275
+ <key>WFVariableName</key>
276
+ <string>Wordle Number</string>
277
+ </dict>
278
+ </dict>
279
+ <dict>
280
+ <key>WFWorkflowActionIdentifier</key>
281
+ <string>is.workflow.actions.text.match.getgroup</string>
282
+ <key>WFWorkflowActionParameters</key>
283
+ <dict>
284
+ <key>UUID</key>
285
+ <string>BCC59443-4A93-4406-B66B-7A5E2B22513C</string>
286
+ <key>WFGroupIndex</key>
287
+ <string>2</string>
288
+ <key>matches</key>
289
+ <dict>
290
+ <key>Value</key>
291
+ <dict>
292
+ <key>OutputName</key>
293
+ <string>Matches</string>
294
+ <key>OutputUUID</key>
295
+ <string>0492CFC1-FD3F-40FE-80E7-2050367265F5</string>
296
+ <key>Type</key>
297
+ <string>ActionOutput</string>
298
+ </dict>
299
+ <key>WFSerializationType</key>
300
+ <string>WFTextTokenAttachment</string>
301
+ </dict>
302
+ </dict>
303
+ </dict>
304
+ <dict>
305
+ <key>WFWorkflowActionIdentifier</key>
306
+ <string>is.workflow.actions.setvariable</string>
307
+ <key>WFWorkflowActionParameters</key>
308
+ <dict>
309
+ <key>WFInput</key>
310
+ <dict>
311
+ <key>Value</key>
312
+ <dict>
313
+ <key>OutputName</key>
314
+ <string>Text</string>
315
+ <key>OutputUUID</key>
316
+ <string>BCC59443-4A93-4406-B66B-7A5E2B22513C</string>
317
+ <key>Type</key>
318
+ <string>ActionOutput</string>
319
+ </dict>
320
+ <key>WFSerializationType</key>
321
+ <string>WFTextTokenAttachment</string>
322
+ </dict>
323
+ <key>WFVariableName</key>
324
+ <string>Attempts</string>
325
+ </dict>
326
+ </dict>
327
+ <dict>
328
+ <key>WFWorkflowActionIdentifier</key>
329
+ <string>is.workflow.actions.comment</string>
330
+ <key>WFWorkflowActionParameters</key>
331
+ <dict>
332
+ <key>WFCommentActionText</key>
333
+ <string>This is the line where the game was completed</string>
334
+ </dict>
335
+ </dict>
336
+ <dict>
337
+ <key>WFWorkflowActionIdentifier</key>
338
+ <string>is.workflow.actions.text.match.getgroup</string>
339
+ <key>WFWorkflowActionParameters</key>
340
+ <dict>
341
+ <key>UUID</key>
342
+ <string>0498DFF8-8E4C-4EB1-8C6D-5FD986EB5453</string>
343
+ <key>WFGroupIndex</key>
344
+ <string>3</string>
345
+ <key>matches</key>
346
+ <dict>
347
+ <key>Value</key>
348
+ <dict>
349
+ <key>OutputName</key>
350
+ <string>Matches</string>
351
+ <key>OutputUUID</key>
352
+ <string>0492CFC1-FD3F-40FE-80E7-2050367265F5</string>
353
+ <key>Type</key>
354
+ <string>ActionOutput</string>
355
+ </dict>
356
+ <key>WFSerializationType</key>
357
+ <string>WFTextTokenAttachment</string>
358
+ </dict>
359
+ </dict>
360
+ </dict>
361
+ <dict>
362
+ <key>WFWorkflowActionIdentifier</key>
363
+ <string>is.workflow.actions.setvariable</string>
364
+ <key>WFWorkflowActionParameters</key>
365
+ <dict>
366
+ <key>WFInput</key>
367
+ <dict>
368
+ <key>Value</key>
369
+ <dict>
370
+ <key>OutputName</key>
371
+ <string>Text</string>
372
+ <key>OutputUUID</key>
373
+ <string>0498DFF8-8E4C-4EB1-8C6D-5FD986EB5453</string>
374
+ <key>Type</key>
375
+ <string>ActionOutput</string>
376
+ </dict>
377
+ <key>WFSerializationType</key>
378
+ <string>WFTextTokenAttachment</string>
379
+ </dict>
380
+ <key>WFVariableName</key>
381
+ <string>Turns</string>
382
+ </dict>
383
+ </dict>
384
+ <dict>
385
+ <key>WFWorkflowActionIdentifier</key>
386
+ <string>is.workflow.actions.text.match</string>
387
+ <key>WFWorkflowActionParameters</key>
388
+ <dict>
389
+ <key>UUID</key>
390
+ <string>66C3E99C-E444-418E-B604-A4EBDAE82906</string>
391
+ <key>WFMatchTextPattern</key>
392
+ <string>(?s)^Wordle\s(\d+)\s(\d)\/(\d)(.+)</string>
393
+ <key>text</key>
394
+ <dict>
395
+ <key>Value</key>
396
+ <dict>
397
+ <key>attachmentsByRange</key>
398
+ <dict>
399
+ <key>{0, 1}</key>
400
+ <dict>
401
+ <key>Type</key>
402
+ <string>Variable</string>
403
+ <key>VariableName</key>
404
+ <string>Wordle Blurb</string>
405
+ </dict>
406
+ </dict>
407
+ <key>string</key>
408
+ <string></string>
409
+ </dict>
410
+ <key>WFSerializationType</key>
411
+ <string>WFTextTokenString</string>
412
+ </dict>
413
+ </dict>
414
+ </dict>
415
+ <dict>
416
+ <key>WFWorkflowActionIdentifier</key>
417
+ <string>is.workflow.actions.text.match.getgroup</string>
418
+ <key>WFWorkflowActionParameters</key>
419
+ <dict>
420
+ <key>UUID</key>
421
+ <string>6E47EB56-D943-4EF3-91DD-D365C159A63A</string>
422
+ <key>WFGroupIndex</key>
423
+ <string>4</string>
424
+ <key>matches</key>
425
+ <dict>
426
+ <key>Value</key>
427
+ <dict>
428
+ <key>OutputName</key>
429
+ <string>Matches</string>
430
+ <key>OutputUUID</key>
431
+ <string>66C3E99C-E444-418E-B604-A4EBDAE82906</string>
432
+ <key>Type</key>
433
+ <string>ActionOutput</string>
434
+ </dict>
435
+ <key>WFSerializationType</key>
436
+ <string>WFTextTokenAttachment</string>
437
+ </dict>
438
+ </dict>
439
+ </dict>
440
+ <dict>
441
+ <key>WFWorkflowActionIdentifier</key>
442
+ <string>is.workflow.actions.text.split</string>
443
+ <key>WFWorkflowActionParameters</key>
444
+ <dict>
445
+ <key>Show-text</key>
446
+ <true/>
447
+ <key>UUID</key>
448
+ <string>E7C4458C-4167-416C-BF22-45C83B3FCA40</string>
449
+ <key>text</key>
450
+ <dict>
451
+ <key>Value</key>
452
+ <dict>
453
+ <key>OutputName</key>
454
+ <string>Text</string>
455
+ <key>OutputUUID</key>
456
+ <string>6E47EB56-D943-4EF3-91DD-D365C159A63A</string>
457
+ <key>Type</key>
458
+ <string>ActionOutput</string>
459
+ </dict>
460
+ <key>WFSerializationType</key>
461
+ <string>WFTextTokenAttachment</string>
462
+ </dict>
463
+ </dict>
464
+ </dict>
465
+ <dict>
466
+ <key>WFWorkflowActionIdentifier</key>
467
+ <string>is.workflow.actions.repeat.each</string>
468
+ <key>WFWorkflowActionParameters</key>
469
+ <dict>
470
+ <key>GroupingIdentifier</key>
471
+ <string>36341333-53DD-4EC4-B6E4-23DBA3793ADB</string>
472
+ <key>WFControlFlowMode</key>
473
+ <integer>0</integer>
474
+ <key>WFInput</key>
475
+ <dict>
476
+ <key>Value</key>
477
+ <dict>
478
+ <key>OutputName</key>
479
+ <string>Split Text</string>
480
+ <key>OutputUUID</key>
481
+ <string>E7C4458C-4167-416C-BF22-45C83B3FCA40</string>
482
+ <key>Type</key>
483
+ <string>ActionOutput</string>
484
+ </dict>
485
+ <key>WFSerializationType</key>
486
+ <string>WFTextTokenAttachment</string>
487
+ </dict>
488
+ </dict>
489
+ </dict>
490
+ <dict>
491
+ <key>WFWorkflowActionIdentifier</key>
492
+ <string>is.workflow.actions.conditional</string>
493
+ <key>WFWorkflowActionParameters</key>
494
+ <dict>
495
+ <key>GroupingIdentifier</key>
496
+ <string>36B12886-81A9-4048-A503-612B86860574</string>
497
+ <key>WFCondition</key>
498
+ <integer>100</integer>
499
+ <key>WFControlFlowMode</key>
500
+ <integer>0</integer>
501
+ <key>WFInput</key>
502
+ <dict>
503
+ <key>Type</key>
504
+ <string>Variable</string>
505
+ <key>Variable</key>
506
+ <dict>
507
+ <key>Value</key>
508
+ <dict>
509
+ <key>Type</key>
510
+ <string>Variable</string>
511
+ <key>VariableName</key>
512
+ <string>Repeat Item</string>
513
+ </dict>
514
+ <key>WFSerializationType</key>
515
+ <string>WFTextTokenAttachment</string>
516
+ </dict>
517
+ </dict>
518
+ </dict>
519
+ </dict>
520
+ <dict>
521
+ <key>WFWorkflowActionIdentifier</key>
522
+ <string>is.workflow.actions.appendvariable</string>
523
+ <key>WFWorkflowActionParameters</key>
524
+ <dict>
525
+ <key>WFInput</key>
526
+ <dict>
527
+ <key>Value</key>
528
+ <dict>
529
+ <key>Type</key>
530
+ <string>Variable</string>
531
+ <key>VariableName</key>
532
+ <string>Repeat Item</string>
533
+ </dict>
534
+ <key>WFSerializationType</key>
535
+ <string>WFTextTokenAttachment</string>
536
+ </dict>
537
+ <key>WFVariableName</key>
538
+ <string>Emoji</string>
539
+ </dict>
540
+ </dict>
541
+ <dict>
542
+ <key>WFWorkflowActionIdentifier</key>
543
+ <string>is.workflow.actions.conditional</string>
544
+ <key>WFWorkflowActionParameters</key>
545
+ <dict>
546
+ <key>GroupingIdentifier</key>
547
+ <string>36B12886-81A9-4048-A503-612B86860574</string>
548
+ <key>WFControlFlowMode</key>
549
+ <integer>1</integer>
550
+ </dict>
551
+ </dict>
552
+ <dict>
553
+ <key>WFWorkflowActionIdentifier</key>
554
+ <string>is.workflow.actions.conditional</string>
555
+ <key>WFWorkflowActionParameters</key>
556
+ <dict>
557
+ <key>GroupingIdentifier</key>
558
+ <string>36B12886-81A9-4048-A503-612B86860574</string>
559
+ <key>UUID</key>
560
+ <string>B7D9A5B5-C0D8-4A2B-BB1D-1B4DD1F50F22</string>
561
+ <key>WFControlFlowMode</key>
562
+ <integer>2</integer>
563
+ </dict>
564
+ </dict>
565
+ <dict>
566
+ <key>WFWorkflowActionIdentifier</key>
567
+ <string>is.workflow.actions.repeat.each</string>
568
+ <key>WFWorkflowActionParameters</key>
569
+ <dict>
570
+ <key>GroupingIdentifier</key>
571
+ <string>36341333-53DD-4EC4-B6E4-23DBA3793ADB</string>
572
+ <key>UUID</key>
573
+ <string>A67AD785-2C1D-404C-904D-A1CFF1637170</string>
574
+ <key>WFControlFlowMode</key>
575
+ <integer>2</integer>
576
+ </dict>
577
+ </dict>
578
+ <dict>
579
+ <key>WFWorkflowActionIdentifier</key>
580
+ <string>is.workflow.actions.text.combine</string>
581
+ <key>WFWorkflowActionParameters</key>
582
+ <dict>
583
+ <key>Show-text</key>
584
+ <true/>
585
+ <key>UUID</key>
586
+ <string>B20DF477-4CE2-4DDE-9F33-1F79F41EA3B0</string>
587
+ <key>text</key>
588
+ <dict>
589
+ <key>Value</key>
590
+ <dict>
591
+ <key>Type</key>
592
+ <string>Variable</string>
593
+ <key>VariableName</key>
594
+ <string>Emoji</string>
595
+ </dict>
596
+ <key>WFSerializationType</key>
597
+ <string>WFTextTokenAttachment</string>
598
+ </dict>
599
+ </dict>
600
+ </dict>
601
+ <dict>
602
+ <key>WFWorkflowActionIdentifier</key>
603
+ <string>is.workflow.actions.setvariable</string>
604
+ <key>WFWorkflowActionParameters</key>
605
+ <dict>
606
+ <key>WFInput</key>
607
+ <dict>
608
+ <key>Value</key>
609
+ <dict>
610
+ <key>OutputName</key>
611
+ <string>Combined Text</string>
612
+ <key>OutputUUID</key>
613
+ <string>B20DF477-4CE2-4DDE-9F33-1F79F41EA3B0</string>
614
+ <key>Type</key>
615
+ <string>ActionOutput</string>
616
+ </dict>
617
+ <key>WFSerializationType</key>
618
+ <string>WFTextTokenAttachment</string>
619
+ </dict>
620
+ <key>WFVariableName</key>
621
+ <string>Emoji</string>
622
+ </dict>
623
+ </dict>
624
+ <dict>
625
+ <key>WFWorkflowActionIdentifier</key>
626
+ <string>is.workflow.actions.text.split</string>
627
+ <key>WFWorkflowActionParameters</key>
628
+ <dict>
629
+ <key>CustomOutputName</key>
630
+ <string>Emoji as Individual Lines</string>
631
+ <key>Show-text</key>
632
+ <true/>
633
+ <key>UUID</key>
634
+ <string>C3A28B63-0E99-4E3F-9FF8-F0588CB8FA61</string>
635
+ <key>text</key>
636
+ <dict>
637
+ <key>Value</key>
638
+ <dict>
639
+ <key>Type</key>
640
+ <string>Variable</string>
641
+ <key>VariableName</key>
642
+ <string>Emoji</string>
643
+ </dict>
644
+ <key>WFSerializationType</key>
645
+ <string>WFTextTokenAttachment</string>
646
+ </dict>
647
+ </dict>
648
+ </dict>
649
+ <dict>
650
+ <key>WFWorkflowActionIdentifier</key>
651
+ <string>is.workflow.actions.comment</string>
652
+ <key>WFWorkflowActionParameters</key>
653
+ <dict>
654
+ <key>WFCommentActionText</key>
655
+ <string>iterate on single lines</string>
656
+ </dict>
657
+ </dict>
658
+ <dict>
659
+ <key>WFWorkflowActionIdentifier</key>
660
+ <string>is.workflow.actions.repeat.each</string>
661
+ <key>WFWorkflowActionParameters</key>
662
+ <dict>
663
+ <key>GroupingIdentifier</key>
664
+ <string>6CFCFB68-53E7-4553-BA22-CB35852BE46E</string>
665
+ <key>WFControlFlowMode</key>
666
+ <integer>0</integer>
667
+ <key>WFInput</key>
668
+ <dict>
669
+ <key>Value</key>
670
+ <dict>
671
+ <key>OutputName</key>
672
+ <string>Emoji as Individual Lines</string>
673
+ <key>OutputUUID</key>
674
+ <string>C3A28B63-0E99-4E3F-9FF8-F0588CB8FA61</string>
675
+ <key>Type</key>
676
+ <string>ActionOutput</string>
677
+ </dict>
678
+ <key>WFSerializationType</key>
679
+ <string>WFTextTokenAttachment</string>
680
+ </dict>
681
+ </dict>
682
+ </dict>
683
+ <dict>
684
+ <key>WFWorkflowActionIdentifier</key>
685
+ <string>is.workflow.actions.getvalueforkey</string>
686
+ <key>WFWorkflowActionParameters</key>
687
+ <dict>
688
+ <key>CustomOutputName</key>
689
+ <string>Emoji</string>
690
+ <key>UUID</key>
691
+ <string>E417C403-4160-4129-9684-01CFF015652C</string>
692
+ <key>WFGetDictionaryValueType</key>
693
+ <string>All Keys</string>
694
+ <key>WFInput</key>
695
+ <dict>
696
+ <key>Value</key>
697
+ <dict>
698
+ <key>Type</key>
699
+ <string>Variable</string>
700
+ <key>VariableName</key>
701
+ <string>Emoji Meanings</string>
702
+ </dict>
703
+ <key>WFSerializationType</key>
704
+ <string>WFTextTokenAttachment</string>
705
+ </dict>
706
+ </dict>
707
+ </dict>
708
+ <dict>
709
+ <key>WFWorkflowActionIdentifier</key>
710
+ <string>is.workflow.actions.comment</string>
711
+ <key>WFWorkflowActionParameters</key>
712
+ <dict>
713
+ <key>WFCommentActionText</key>
714
+ <string>Match each of the emoji for each line, and count the results for each emoji</string>
715
+ </dict>
716
+ </dict>
717
+ <dict>
718
+ <key>WFWorkflowActionIdentifier</key>
719
+ <string>is.workflow.actions.repeat.each</string>
720
+ <key>WFWorkflowActionParameters</key>
721
+ <dict>
722
+ <key>GroupingIdentifier</key>
723
+ <string>FA55CA2A-A5DD-4D4A-8648-6DE99799EDEB</string>
724
+ <key>WFControlFlowMode</key>
725
+ <integer>0</integer>
726
+ <key>WFInput</key>
727
+ <dict>
728
+ <key>Value</key>
729
+ <dict>
730
+ <key>OutputName</key>
731
+ <string>Emoji</string>
732
+ <key>OutputUUID</key>
733
+ <string>E417C403-4160-4129-9684-01CFF015652C</string>
734
+ <key>Type</key>
735
+ <string>ActionOutput</string>
736
+ </dict>
737
+ <key>WFSerializationType</key>
738
+ <string>WFTextTokenAttachment</string>
739
+ </dict>
740
+ </dict>
741
+ </dict>
742
+ <dict>
743
+ <key>WFWorkflowActionIdentifier</key>
744
+ <string>is.workflow.actions.text.match</string>
745
+ <key>WFWorkflowActionParameters</key>
746
+ <dict>
747
+ <key>UUID</key>
748
+ <string>04E26F68-70A9-4EFE-90C8-FAFF329598AB</string>
749
+ <key>WFMatchTextPattern</key>
750
+ <dict>
751
+ <key>Value</key>
752
+ <dict>
753
+ <key>attachmentsByRange</key>
754
+ <dict>
755
+ <key>{0, 1}</key>
756
+ <dict>
757
+ <key>Type</key>
758
+ <string>Variable</string>
759
+ <key>VariableName</key>
760
+ <string>Repeat Item 2</string>
761
+ </dict>
762
+ </dict>
763
+ <key>string</key>
764
+ <string></string>
765
+ </dict>
766
+ <key>WFSerializationType</key>
767
+ <string>WFTextTokenString</string>
768
+ </dict>
769
+ <key>text</key>
770
+ <dict>
771
+ <key>Value</key>
772
+ <dict>
773
+ <key>attachmentsByRange</key>
774
+ <dict>
775
+ <key>{0, 1}</key>
776
+ <dict>
777
+ <key>Type</key>
778
+ <string>Variable</string>
779
+ <key>VariableName</key>
780
+ <string>Repeat Item</string>
781
+ </dict>
782
+ </dict>
783
+ <key>string</key>
784
+ <string></string>
785
+ </dict>
786
+ <key>WFSerializationType</key>
787
+ <string>WFTextTokenString</string>
788
+ </dict>
789
+ </dict>
790
+ </dict>
791
+ <dict>
792
+ <key>WFWorkflowActionIdentifier</key>
793
+ <string>is.workflow.actions.conditional</string>
794
+ <key>WFWorkflowActionParameters</key>
795
+ <dict>
796
+ <key>GroupingIdentifier</key>
797
+ <string>FB112854-BEF0-4089-92BD-8407B86EB64D</string>
798
+ <key>WFCondition</key>
799
+ <integer>100</integer>
800
+ <key>WFControlFlowMode</key>
801
+ <integer>0</integer>
802
+ <key>WFInput</key>
803
+ <dict>
804
+ <key>Type</key>
805
+ <string>Variable</string>
806
+ <key>Variable</key>
807
+ <dict>
808
+ <key>Value</key>
809
+ <dict>
810
+ <key>OutputName</key>
811
+ <string>Matches</string>
812
+ <key>OutputUUID</key>
813
+ <string>04E26F68-70A9-4EFE-90C8-FAFF329598AB</string>
814
+ <key>Type</key>
815
+ <string>ActionOutput</string>
816
+ </dict>
817
+ <key>WFSerializationType</key>
818
+ <string>WFTextTokenAttachment</string>
819
+ </dict>
820
+ </dict>
821
+ </dict>
822
+ </dict>
823
+ <dict>
824
+ <key>WFWorkflowActionIdentifier</key>
825
+ <string>is.workflow.actions.count</string>
826
+ <key>WFWorkflowActionParameters</key>
827
+ <dict>
828
+ <key>Input</key>
829
+ <dict>
830
+ <key>Value</key>
831
+ <dict>
832
+ <key>OutputName</key>
833
+ <string>Matches</string>
834
+ <key>OutputUUID</key>
835
+ <string>04E26F68-70A9-4EFE-90C8-FAFF329598AB</string>
836
+ <key>Type</key>
837
+ <string>ActionOutput</string>
838
+ </dict>
839
+ <key>WFSerializationType</key>
840
+ <string>WFTextTokenAttachment</string>
841
+ </dict>
842
+ <key>UUID</key>
843
+ <string>B18B0452-FF48-4B77-97E4-F0FE79FECCEC</string>
844
+ </dict>
845
+ </dict>
846
+ <dict>
847
+ <key>WFWorkflowActionIdentifier</key>
848
+ <string>is.workflow.actions.getvalueforkey</string>
849
+ <key>WFWorkflowActionParameters</key>
850
+ <dict>
851
+ <key>UUID</key>
852
+ <string>88F6288A-6E0F-4DE1-83E7-30A7D0CC0831</string>
853
+ <key>WFDictionaryKey</key>
854
+ <dict>
855
+ <key>Value</key>
856
+ <dict>
857
+ <key>attachmentsByRange</key>
858
+ <dict>
859
+ <key>{0, 1}</key>
860
+ <dict>
861
+ <key>Type</key>
862
+ <string>Variable</string>
863
+ <key>VariableName</key>
864
+ <string>Repeat Item 2</string>
865
+ </dict>
866
+ </dict>
867
+ <key>string</key>
868
+ <string></string>
869
+ </dict>
870
+ <key>WFSerializationType</key>
871
+ <string>WFTextTokenString</string>
872
+ </dict>
873
+ <key>WFInput</key>
874
+ <dict>
875
+ <key>Value</key>
876
+ <dict>
877
+ <key>Type</key>
878
+ <string>Variable</string>
879
+ <key>VariableName</key>
880
+ <string>Emoji Meanings</string>
881
+ </dict>
882
+ <key>WFSerializationType</key>
883
+ <string>WFTextTokenAttachment</string>
884
+ </dict>
885
+ </dict>
886
+ </dict>
887
+ <dict>
888
+ <key>WFWorkflowActionIdentifier</key>
889
+ <string>is.workflow.actions.gettext</string>
890
+ <key>WFWorkflowActionParameters</key>
891
+ <dict>
892
+ <key>UUID</key>
893
+ <string>F7FA80BC-ED02-49F3-A3DF-FE38789F508E</string>
894
+ <key>WFTextActionText</key>
895
+ <dict>
896
+ <key>Value</key>
897
+ <dict>
898
+ <key>attachmentsByRange</key>
899
+ <dict>
900
+ <key>{0, 1}</key>
901
+ <dict>
902
+ <key>OutputName</key>
903
+ <string>Count</string>
904
+ <key>OutputUUID</key>
905
+ <string>B18B0452-FF48-4B77-97E4-F0FE79FECCEC</string>
906
+ <key>Type</key>
907
+ <string>ActionOutput</string>
908
+ </dict>
909
+ <key>{2, 1}</key>
910
+ <dict>
911
+ <key>OutputName</key>
912
+ <string>Dictionary Value</string>
913
+ <key>OutputUUID</key>
914
+ <string>88F6288A-6E0F-4DE1-83E7-30A7D0CC0831</string>
915
+ <key>Type</key>
916
+ <string>ActionOutput</string>
917
+ </dict>
918
+ </dict>
919
+ <key>string</key>
920
+ <string> </string>
921
+ </dict>
922
+ <key>WFSerializationType</key>
923
+ <string>WFTextTokenString</string>
924
+ </dict>
925
+ </dict>
926
+ </dict>
927
+ <dict>
928
+ <key>WFWorkflowActionIdentifier</key>
929
+ <string>is.workflow.actions.appendvariable</string>
930
+ <key>WFWorkflowActionParameters</key>
931
+ <dict>
932
+ <key>WFInput</key>
933
+ <dict>
934
+ <key>Value</key>
935
+ <dict>
936
+ <key>OutputName</key>
937
+ <string>Text</string>
938
+ <key>OutputUUID</key>
939
+ <string>F7FA80BC-ED02-49F3-A3DF-FE38789F508E</string>
940
+ <key>Type</key>
941
+ <string>ActionOutput</string>
942
+ </dict>
943
+ <key>WFSerializationType</key>
944
+ <string>WFTextTokenAttachment</string>
945
+ </dict>
946
+ <key>WFVariableName</key>
947
+ <string>Line Results</string>
948
+ </dict>
949
+ </dict>
950
+ <dict>
951
+ <key>WFWorkflowActionIdentifier</key>
952
+ <string>is.workflow.actions.conditional</string>
953
+ <key>WFWorkflowActionParameters</key>
954
+ <dict>
955
+ <key>GroupingIdentifier</key>
956
+ <string>FB112854-BEF0-4089-92BD-8407B86EB64D</string>
957
+ <key>UUID</key>
958
+ <string>2456445C-9BAC-4116-8EF6-FC02327C91B5</string>
959
+ <key>WFControlFlowMode</key>
960
+ <integer>2</integer>
961
+ </dict>
962
+ </dict>
963
+ <dict>
964
+ <key>WFWorkflowActionIdentifier</key>
965
+ <string>is.workflow.actions.repeat.each</string>
966
+ <key>WFWorkflowActionParameters</key>
967
+ <dict>
968
+ <key>GroupingIdentifier</key>
969
+ <string>FA55CA2A-A5DD-4D4A-8648-6DE99799EDEB</string>
970
+ <key>UUID</key>
971
+ <string>5361FCBC-BF2F-46EC-B9D4-B43257A3B197</string>
972
+ <key>WFControlFlowMode</key>
973
+ <integer>2</integer>
974
+ </dict>
975
+ </dict>
976
+ <dict>
977
+ <key>WFWorkflowActionIdentifier</key>
978
+ <string>is.workflow.actions.text.combine</string>
979
+ <key>WFWorkflowActionParameters</key>
980
+ <dict>
981
+ <key>Show-text</key>
982
+ <true/>
983
+ <key>UUID</key>
984
+ <string>384C3A8C-23B0-4C2E-B222-764589212D61</string>
985
+ <key>WFTextCustomSeparator</key>
986
+ <string>, </string>
987
+ <key>WFTextSeparator</key>
988
+ <string>Custom</string>
989
+ <key>text</key>
990
+ <dict>
991
+ <key>Value</key>
992
+ <dict>
993
+ <key>Type</key>
994
+ <string>Variable</string>
995
+ <key>VariableName</key>
996
+ <string>Line Results</string>
997
+ </dict>
998
+ <key>WFSerializationType</key>
999
+ <string>WFTextTokenAttachment</string>
1000
+ </dict>
1001
+ </dict>
1002
+ </dict>
1003
+ <dict>
1004
+ <key>WFWorkflowActionIdentifier</key>
1005
+ <string>is.workflow.actions.gettext</string>
1006
+ <key>WFWorkflowActionParameters</key>
1007
+ <dict>
1008
+ <key>UUID</key>
1009
+ <string>501DDDC6-9D72-4DC6-AAAE-AE24E8C6B712</string>
1010
+ <key>WFTextActionText</key>
1011
+ <dict>
1012
+ <key>Value</key>
1013
+ <dict>
1014
+ <key>attachmentsByRange</key>
1015
+ <dict>
1016
+ <key>{5, 1}</key>
1017
+ <dict>
1018
+ <key>Type</key>
1019
+ <string>Variable</string>
1020
+ <key>VariableName</key>
1021
+ <string>Repeat Index</string>
1022
+ </dict>
1023
+ <key>{9, 1}</key>
1024
+ <dict>
1025
+ <key>OutputName</key>
1026
+ <string>Combined Text</string>
1027
+ <key>OutputUUID</key>
1028
+ <string>384C3A8C-23B0-4C2E-B222-764589212D61</string>
1029
+ <key>Type</key>
1030
+ <string>ActionOutput</string>
1031
+ </dict>
1032
+ </dict>
1033
+ <key>string</key>
1034
+ <string>Line  - </string>
1035
+ </dict>
1036
+ <key>WFSerializationType</key>
1037
+ <string>WFTextTokenString</string>
1038
+ </dict>
1039
+ </dict>
1040
+ </dict>
1041
+ <dict>
1042
+ <key>WFWorkflowActionIdentifier</key>
1043
+ <string>is.workflow.actions.appendvariable</string>
1044
+ <key>WFWorkflowActionParameters</key>
1045
+ <dict>
1046
+ <key>WFInput</key>
1047
+ <dict>
1048
+ <key>Value</key>
1049
+ <dict>
1050
+ <key>OutputName</key>
1051
+ <string>Text</string>
1052
+ <key>OutputUUID</key>
1053
+ <string>501DDDC6-9D72-4DC6-AAAE-AE24E8C6B712</string>
1054
+ <key>Type</key>
1055
+ <string>ActionOutput</string>
1056
+ </dict>
1057
+ <key>WFSerializationType</key>
1058
+ <string>WFTextTokenAttachment</string>
1059
+ </dict>
1060
+ <key>WFVariableName</key>
1061
+ <string>Results without Emoji</string>
1062
+ </dict>
1063
+ </dict>
1064
+ <dict>
1065
+ <key>WFWorkflowActionIdentifier</key>
1066
+ <string>is.workflow.actions.gettext</string>
1067
+ <key>WFWorkflowActionParameters</key>
1068
+ <dict>
1069
+ <key>UUID</key>
1070
+ <string>35670648-5EE1-4C40-B737-7CFF1EE76CA7</string>
1071
+ <key>WFTextActionText</key>
1072
+ <dict>
1073
+ <key>Value</key>
1074
+ <dict>
1075
+ <key>attachmentsByRange</key>
1076
+ <dict>
1077
+ <key>{0, 1}</key>
1078
+ <dict>
1079
+ <key>Type</key>
1080
+ <string>Variable</string>
1081
+ <key>VariableName</key>
1082
+ <string>Repeat Item</string>
1083
+ </dict>
1084
+ <key>{3, 1}</key>
1085
+ <dict>
1086
+ <key>OutputName</key>
1087
+ <string>Combined Text</string>
1088
+ <key>OutputUUID</key>
1089
+ <string>384C3A8C-23B0-4C2E-B222-764589212D61</string>
1090
+ <key>Type</key>
1091
+ <string>ActionOutput</string>
1092
+ </dict>
1093
+ </dict>
1094
+ <key>string</key>
1095
+ <string> ()</string>
1096
+ </dict>
1097
+ <key>WFSerializationType</key>
1098
+ <string>WFTextTokenString</string>
1099
+ </dict>
1100
+ </dict>
1101
+ </dict>
1102
+ <dict>
1103
+ <key>WFWorkflowActionIdentifier</key>
1104
+ <string>is.workflow.actions.appendvariable</string>
1105
+ <key>WFWorkflowActionParameters</key>
1106
+ <dict>
1107
+ <key>WFInput</key>
1108
+ <dict>
1109
+ <key>Value</key>
1110
+ <dict>
1111
+ <key>OutputName</key>
1112
+ <string>Text</string>
1113
+ <key>OutputUUID</key>
1114
+ <string>35670648-5EE1-4C40-B737-7CFF1EE76CA7</string>
1115
+ <key>Type</key>
1116
+ <string>ActionOutput</string>
1117
+ </dict>
1118
+ <key>WFSerializationType</key>
1119
+ <string>WFTextTokenAttachment</string>
1120
+ </dict>
1121
+ <key>WFVariableName</key>
1122
+ <string>Parsed Line Results</string>
1123
+ </dict>
1124
+ </dict>
1125
+ <dict>
1126
+ <key>WFWorkflowActionIdentifier</key>
1127
+ <string>is.workflow.actions.nothing</string>
1128
+ <key>WFWorkflowActionParameters</key>
1129
+ <dict/>
1130
+ </dict>
1131
+ <dict>
1132
+ <key>WFWorkflowActionIdentifier</key>
1133
+ <string>is.workflow.actions.setvariable</string>
1134
+ <key>WFWorkflowActionParameters</key>
1135
+ <dict>
1136
+ <key>WFVariableName</key>
1137
+ <string>Line Results</string>
1138
+ </dict>
1139
+ </dict>
1140
+ <dict>
1141
+ <key>WFWorkflowActionIdentifier</key>
1142
+ <string>is.workflow.actions.repeat.each</string>
1143
+ <key>WFWorkflowActionParameters</key>
1144
+ <dict>
1145
+ <key>GroupingIdentifier</key>
1146
+ <string>6CFCFB68-53E7-4553-BA22-CB35852BE46E</string>
1147
+ <key>UUID</key>
1148
+ <string>44CC43FF-8976-458F-959C-C8ED6EF2CB6C</string>
1149
+ <key>WFControlFlowMode</key>
1150
+ <integer>2</integer>
1151
+ </dict>
1152
+ </dict>
1153
+ <dict>
1154
+ <key>WFWorkflowActionIdentifier</key>
1155
+ <string>is.workflow.actions.text.combine</string>
1156
+ <key>WFWorkflowActionParameters</key>
1157
+ <dict>
1158
+ <key>Show-text</key>
1159
+ <true/>
1160
+ <key>UUID</key>
1161
+ <string>33501EDB-D20E-45DE-ACB6-650FD133973C</string>
1162
+ <key>text</key>
1163
+ <dict>
1164
+ <key>Value</key>
1165
+ <dict>
1166
+ <key>Type</key>
1167
+ <string>Variable</string>
1168
+ <key>VariableName</key>
1169
+ <string>Parsed Line Results</string>
1170
+ </dict>
1171
+ <key>WFSerializationType</key>
1172
+ <string>WFTextTokenAttachment</string>
1173
+ </dict>
1174
+ </dict>
1175
+ </dict>
1176
+ <dict>
1177
+ <key>WFWorkflowActionIdentifier</key>
1178
+ <string>is.workflow.actions.comment</string>
1179
+ <key>WFWorkflowActionParameters</key>
1180
+ <dict>
1181
+ <key>WFCommentActionText</key>
1182
+ <string>The shortcut is hardcoded to replace '5 perfect' with 'Wordle done on Line X'. If you don't use the word 'perfect', you'll have to replace it manually in the action below for the text replacement to work.</string>
1183
+ </dict>
1184
+ </dict>
1185
+ <dict>
1186
+ <key>WFWorkflowActionIdentifier</key>
1187
+ <string>is.workflow.actions.text.replace</string>
1188
+ <key>WFWorkflowActionParameters</key>
1189
+ <dict>
1190
+ <key>UUID</key>
1191
+ <string>795EA7EE-DDD0-4C8B-B30E-E7A64A6ABA90</string>
1192
+ <key>WFInput</key>
1193
+ <dict>
1194
+ <key>Value</key>
1195
+ <dict>
1196
+ <key>attachmentsByRange</key>
1197
+ <dict>
1198
+ <key>{0, 1}</key>
1199
+ <dict>
1200
+ <key>OutputName</key>
1201
+ <string>Combined Text</string>
1202
+ <key>OutputUUID</key>
1203
+ <string>33501EDB-D20E-45DE-ACB6-650FD133973C</string>
1204
+ <key>Type</key>
1205
+ <string>ActionOutput</string>
1206
+ </dict>
1207
+ </dict>
1208
+ <key>string</key>
1209
+ <string></string>
1210
+ </dict>
1211
+ <key>WFSerializationType</key>
1212
+ <string>WFTextTokenString</string>
1213
+ </dict>
1214
+ <key>WFReplaceTextFind</key>
1215
+ <string>5 perfect</string>
1216
+ <key>WFReplaceTextReplace</key>
1217
+ <dict>
1218
+ <key>Value</key>
1219
+ <dict>
1220
+ <key>attachmentsByRange</key>
1221
+ <dict>
1222
+ <key>{20, 1}</key>
1223
+ <dict>
1224
+ <key>Type</key>
1225
+ <string>Variable</string>
1226
+ <key>VariableName</key>
1227
+ <string>Attempts</string>
1228
+ </dict>
1229
+ </dict>
1230
+ <key>string</key>
1231
+ <string>Wordle done on Line </string>
1232
+ </dict>
1233
+ <key>WFSerializationType</key>
1234
+ <string>WFTextTokenString</string>
1235
+ </dict>
1236
+ </dict>
1237
+ </dict>
1238
+ <dict>
1239
+ <key>WFWorkflowActionIdentifier</key>
1240
+ <string>is.workflow.actions.gettext</string>
1241
+ <key>WFWorkflowActionParameters</key>
1242
+ <dict>
1243
+ <key>CustomOutputName</key>
1244
+ <string>Final Results</string>
1245
+ <key>UUID</key>
1246
+ <string>C2879859-BFCE-4B08-AA4C-586BAB10D6C3</string>
1247
+ <key>WFTextActionText</key>
1248
+ <dict>
1249
+ <key>Value</key>
1250
+ <dict>
1251
+ <key>attachmentsByRange</key>
1252
+ <dict>
1253
+ <key>{0, 1}</key>
1254
+ <dict>
1255
+ <key>Type</key>
1256
+ <string>Variable</string>
1257
+ <key>VariableName</key>
1258
+ <string>First Wordle Line</string>
1259
+ </dict>
1260
+ <key>{3, 1}</key>
1261
+ <dict>
1262
+ <key>OutputName</key>
1263
+ <string>Updated Text</string>
1264
+ <key>OutputUUID</key>
1265
+ <string>795EA7EE-DDD0-4C8B-B30E-E7A64A6ABA90</string>
1266
+ <key>Type</key>
1267
+ <string>ActionOutput</string>
1268
+ </dict>
1269
+ </dict>
1270
+ <key>string</key>
1271
+ <string>
1272
+
1273
+ </string>
1274
+ </dict>
1275
+ <key>WFSerializationType</key>
1276
+ <string>WFTextTokenString</string>
1277
+ </dict>
1278
+ </dict>
1279
+ </dict>
1280
+ <dict>
1281
+ <key>WFWorkflowActionIdentifier</key>
1282
+ <string>is.workflow.actions.setvariable</string>
1283
+ <key>WFWorkflowActionParameters</key>
1284
+ <dict>
1285
+ <key>WFInput</key>
1286
+ <dict>
1287
+ <key>Value</key>
1288
+ <dict>
1289
+ <key>OutputName</key>
1290
+ <string>Final Results</string>
1291
+ <key>OutputUUID</key>
1292
+ <string>C2879859-BFCE-4B08-AA4C-586BAB10D6C3</string>
1293
+ <key>Type</key>
1294
+ <string>ActionOutput</string>
1295
+ </dict>
1296
+ <key>WFSerializationType</key>
1297
+ <string>WFTextTokenAttachment</string>
1298
+ </dict>
1299
+ <key>WFVariableName</key>
1300
+ <string>Final Results</string>
1301
+ </dict>
1302
+ </dict>
1303
+ <dict>
1304
+ <key>WFWorkflowActionIdentifier</key>
1305
+ <string>is.workflow.actions.choosefrommenu</string>
1306
+ <key>WFWorkflowActionParameters</key>
1307
+ <dict>
1308
+ <key>GroupingIdentifier</key>
1309
+ <string>6469E2C8-2A1C-44F2-ACD5-75FE63E50F77</string>
1310
+ <key>WFControlFlowMode</key>
1311
+ <integer>0</integer>
1312
+ <key>WFMenuItems</key>
1313
+ <array>
1314
+ <dict>
1315
+ <key>WFItemType</key>
1316
+ <integer>0</integer>
1317
+ <key>WFValue</key>
1318
+ <dict>
1319
+ <key>Synonyms</key>
1320
+ <array>
1321
+ <dict>
1322
+ <key>string</key>
1323
+ <string>emoji</string>
1324
+ </dict>
1325
+ <dict>
1326
+ <key>string</key>
1327
+ <string>copy as emoji</string>
1328
+ </dict>
1329
+ <dict>
1330
+ <key>string</key>
1331
+ <string>copy emoji</string>
1332
+ </dict>
1333
+ </array>
1334
+ <key>Value</key>
1335
+ <dict>
1336
+ <key>string</key>
1337
+ <string>🟩 Copy as Emoji</string>
1338
+ </dict>
1339
+ <key>WFSerializationType</key>
1340
+ <string>WFTextTokenString</string>
1341
+ </dict>
1342
+ </dict>
1343
+ <dict>
1344
+ <key>WFItemType</key>
1345
+ <integer>0</integer>
1346
+ <key>WFValue</key>
1347
+ <dict>
1348
+ <key>Synonyms</key>
1349
+ <array>
1350
+ <dict>
1351
+ <key>string</key>
1352
+ <string>image</string>
1353
+ </dict>
1354
+ <dict>
1355
+ <key>string</key>
1356
+ <string>photo</string>
1357
+ </dict>
1358
+ <dict>
1359
+ <key>string</key>
1360
+ <string>save</string>
1361
+ </dict>
1362
+ <dict>
1363
+ <key>string</key>
1364
+ <string>save image</string>
1365
+ </dict>
1366
+ <dict>
1367
+ <key>string</key>
1368
+ <string>save as image</string>
1369
+ </dict>
1370
+ <dict>
1371
+ <key>string</key>
1372
+ <string>photo</string>
1373
+ </dict>
1374
+ </array>
1375
+ <key>Value</key>
1376
+ <dict>
1377
+ <key>string</key>
1378
+ <string>🌄 Save as Image</string>
1379
+ </dict>
1380
+ <key>WFSerializationType</key>
1381
+ <string>WFTextTokenString</string>
1382
+ </dict>
1383
+ </dict>
1384
+ </array>
1385
+ <key>WFMenuPrompt</key>
1386
+ <string>Choose Export Format</string>
1387
+ </dict>
1388
+ </dict>
1389
+ <dict>
1390
+ <key>WFWorkflowActionIdentifier</key>
1391
+ <string>is.workflow.actions.choosefrommenu</string>
1392
+ <key>WFWorkflowActionParameters</key>
1393
+ <dict>
1394
+ <key>GroupingIdentifier</key>
1395
+ <string>6469E2C8-2A1C-44F2-ACD5-75FE63E50F77</string>
1396
+ <key>WFControlFlowMode</key>
1397
+ <integer>1</integer>
1398
+ <key>WFMenuItemTitle</key>
1399
+ <string>🟩 Copy as Emoji</string>
1400
+ </dict>
1401
+ </dict>
1402
+ <dict>
1403
+ <key>WFWorkflowActionIdentifier</key>
1404
+ <string>is.workflow.actions.setclipboard</string>
1405
+ <key>WFWorkflowActionParameters</key>
1406
+ <dict>
1407
+ <key>UUID</key>
1408
+ <string>F290C10D-3760-4D75-B7B6-52FF5213D525</string>
1409
+ <key>WFInput</key>
1410
+ <dict>
1411
+ <key>Value</key>
1412
+ <dict>
1413
+ <key>Type</key>
1414
+ <string>Variable</string>
1415
+ <key>VariableName</key>
1416
+ <string>Final Results</string>
1417
+ </dict>
1418
+ <key>WFSerializationType</key>
1419
+ <string>WFTextTokenAttachment</string>
1420
+ </dict>
1421
+ </dict>
1422
+ </dict>
1423
+ <dict>
1424
+ <key>WFWorkflowActionIdentifier</key>
1425
+ <string>is.workflow.actions.alert</string>
1426
+ <key>WFWorkflowActionParameters</key>
1427
+ <dict>
1428
+ <key>WFAlertActionCancelButtonShown</key>
1429
+ <false/>
1430
+ <key>WFAlertActionMessage</key>
1431
+ <dict>
1432
+ <key>Value</key>
1433
+ <dict>
1434
+ <key>attachmentsByRange</key>
1435
+ <dict>
1436
+ <key>{0, 1}</key>
1437
+ <dict>
1438
+ <key>Type</key>
1439
+ <string>Variable</string>
1440
+ <key>VariableName</key>
1441
+ <string>Final Results</string>
1442
+ </dict>
1443
+ </dict>
1444
+ <key>string</key>
1445
+ <string></string>
1446
+ </dict>
1447
+ <key>WFSerializationType</key>
1448
+ <string>WFTextTokenString</string>
1449
+ </dict>
1450
+ <key>WFAlertActionTitle</key>
1451
+ <string>Wordle Results Copied</string>
1452
+ </dict>
1453
+ </dict>
1454
+ <dict>
1455
+ <key>WFWorkflowActionIdentifier</key>
1456
+ <string>is.workflow.actions.choosefrommenu</string>
1457
+ <key>WFWorkflowActionParameters</key>
1458
+ <dict>
1459
+ <key>GroupingIdentifier</key>
1460
+ <string>6469E2C8-2A1C-44F2-ACD5-75FE63E50F77</string>
1461
+ <key>WFControlFlowMode</key>
1462
+ <integer>1</integer>
1463
+ <key>WFMenuItemTitle</key>
1464
+ <string>🌄 Save as Image</string>
1465
+ </dict>
1466
+ </dict>
1467
+ <dict>
1468
+ <key>WFWorkflowActionIdentifier</key>
1469
+ <string>is.workflow.actions.text.split</string>
1470
+ <key>WFWorkflowActionParameters</key>
1471
+ <dict>
1472
+ <key>Show-text</key>
1473
+ <true/>
1474
+ <key>UUID</key>
1475
+ <string>4493DEA8-50F7-44F9-84D4-48A70990A43E</string>
1476
+ <key>text</key>
1477
+ <dict>
1478
+ <key>Value</key>
1479
+ <dict>
1480
+ <key>Type</key>
1481
+ <string>Variable</string>
1482
+ <key>VariableName</key>
1483
+ <string>Emoji</string>
1484
+ </dict>
1485
+ <key>WFSerializationType</key>
1486
+ <string>WFTextTokenAttachment</string>
1487
+ </dict>
1488
+ </dict>
1489
+ </dict>
1490
+ <dict>
1491
+ <key>WFWorkflowActionIdentifier</key>
1492
+ <string>is.workflow.actions.comment</string>
1493
+ <key>WFWorkflowActionParameters</key>
1494
+ <dict>
1495
+ <key>WFCommentActionText</key>
1496
+ <string>Repeat with each line, then repeat for each character</string>
1497
+ </dict>
1498
+ </dict>
1499
+ <dict>
1500
+ <key>WFWorkflowActionIdentifier</key>
1501
+ <string>is.workflow.actions.repeat.each</string>
1502
+ <key>WFWorkflowActionParameters</key>
1503
+ <dict>
1504
+ <key>GroupingIdentifier</key>
1505
+ <string>5A19E70A-E108-43CB-935D-E5DE0D1F7839</string>
1506
+ <key>WFControlFlowMode</key>
1507
+ <integer>0</integer>
1508
+ <key>WFInput</key>
1509
+ <dict>
1510
+ <key>Value</key>
1511
+ <dict>
1512
+ <key>OutputName</key>
1513
+ <string>Split Text</string>
1514
+ <key>OutputUUID</key>
1515
+ <string>4493DEA8-50F7-44F9-84D4-48A70990A43E</string>
1516
+ <key>Type</key>
1517
+ <string>ActionOutput</string>
1518
+ </dict>
1519
+ <key>WFSerializationType</key>
1520
+ <string>WFTextTokenAttachment</string>
1521
+ </dict>
1522
+ </dict>
1523
+ </dict>
1524
+ <dict>
1525
+ <key>WFWorkflowActionIdentifier</key>
1526
+ <string>is.workflow.actions.text.split</string>
1527
+ <key>WFWorkflowActionParameters</key>
1528
+ <dict>
1529
+ <key>Show-text</key>
1530
+ <true/>
1531
+ <key>UUID</key>
1532
+ <string>6CF3F1D0-7C54-4FAC-8959-1F7F11804C82</string>
1533
+ <key>WFTextSeparator</key>
1534
+ <string>Every Character</string>
1535
+ <key>text</key>
1536
+ <dict>
1537
+ <key>Value</key>
1538
+ <dict>
1539
+ <key>Type</key>
1540
+ <string>Variable</string>
1541
+ <key>VariableName</key>
1542
+ <string>Repeat Item</string>
1543
+ </dict>
1544
+ <key>WFSerializationType</key>
1545
+ <string>WFTextTokenAttachment</string>
1546
+ </dict>
1547
+ </dict>
1548
+ </dict>
1549
+ <dict>
1550
+ <key>WFWorkflowActionIdentifier</key>
1551
+ <string>is.workflow.actions.repeat.each</string>
1552
+ <key>WFWorkflowActionParameters</key>
1553
+ <dict>
1554
+ <key>GroupingIdentifier</key>
1555
+ <string>E1D7CB75-89DD-491E-8821-7DA2DDF21384</string>
1556
+ <key>WFControlFlowMode</key>
1557
+ <integer>0</integer>
1558
+ <key>WFInput</key>
1559
+ <dict>
1560
+ <key>Value</key>
1561
+ <dict>
1562
+ <key>OutputName</key>
1563
+ <string>Split Text</string>
1564
+ <key>OutputUUID</key>
1565
+ <string>6CF3F1D0-7C54-4FAC-8959-1F7F11804C82</string>
1566
+ <key>Type</key>
1567
+ <string>ActionOutput</string>
1568
+ </dict>
1569
+ <key>WFSerializationType</key>
1570
+ <string>WFTextTokenAttachment</string>
1571
+ </dict>
1572
+ </dict>
1573
+ </dict>
1574
+ <dict>
1575
+ <key>WFWorkflowActionIdentifier</key>
1576
+ <string>is.workflow.actions.comment</string>
1577
+ <key>WFWorkflowActionParameters</key>
1578
+ <dict>
1579
+ <key>WFCommentActionText</key>
1580
+ <string>Original technique by gluebyte: https://reddit.com/r/shortcuts/comments/muobc5/emoji_to_image_conversion/</string>
1581
+ </dict>
1582
+ </dict>
1583
+ <dict>
1584
+ <key>WFWorkflowActionIdentifier</key>
1585
+ <string>is.workflow.actions.url</string>
1586
+ <key>WFWorkflowActionParameters</key>
1587
+ <dict>
1588
+ <key>Show-WFURLActionURL</key>
1589
+ <true/>
1590
+ <key>UUID</key>
1591
+ <string>C94F734F-DBC4-44D4-B4AD-C9A7E9ABF516</string>
1592
+ <key>WFURLActionURL</key>
1593
+ <dict>
1594
+ <key>Value</key>
1595
+ <dict>
1596
+ <key>attachmentsByRange</key>
1597
+ <dict>
1598
+ <key>{133, 1}</key>
1599
+ <dict>
1600
+ <key>Type</key>
1601
+ <string>Variable</string>
1602
+ <key>VariableName</key>
1603
+ <string>Repeat Item 2</string>
1604
+ </dict>
1605
+ </dict>
1606
+ <key>string</key>
1607
+ <string>data:text/html;charset=utf-8,&lt;body style="display:grid; place-content:center;padding-left:9;font-size:44; background-color:#ffffff;"&gt;&lt;/body&gt; </string>
1608
+ </dict>
1609
+ <key>WFSerializationType</key>
1610
+ <string>WFTextTokenString</string>
1611
+ </dict>
1612
+ </dict>
1613
+ </dict>
1614
+ <dict>
1615
+ <key>WFWorkflowActionIdentifier</key>
1616
+ <string>is.workflow.actions.image.crop</string>
1617
+ <key>WFWorkflowActionParameters</key>
1618
+ <dict>
1619
+ <key>UUID</key>
1620
+ <string>9C9DEC1F-69A7-41EA-A541-1692BE154813</string>
1621
+ <key>WFImageCropHeight</key>
1622
+ <string>160</string>
1623
+ <key>WFImageCropWidth</key>
1624
+ <string>160</string>
1625
+ <key>WFInput</key>
1626
+ <dict>
1627
+ <key>Value</key>
1628
+ <dict>
1629
+ <key>OutputName</key>
1630
+ <string>URL</string>
1631
+ <key>OutputUUID</key>
1632
+ <string>C94F734F-DBC4-44D4-B4AD-C9A7E9ABF516</string>
1633
+ <key>Type</key>
1634
+ <string>ActionOutput</string>
1635
+ </dict>
1636
+ <key>WFSerializationType</key>
1637
+ <string>WFTextTokenAttachment</string>
1638
+ </dict>
1639
+ </dict>
1640
+ </dict>
1641
+ <dict>
1642
+ <key>WFWorkflowActionIdentifier</key>
1643
+ <string>is.workflow.actions.repeat.each</string>
1644
+ <key>WFWorkflowActionParameters</key>
1645
+ <dict>
1646
+ <key>GroupingIdentifier</key>
1647
+ <string>E1D7CB75-89DD-491E-8821-7DA2DDF21384</string>
1648
+ <key>UUID</key>
1649
+ <string>ADD4C942-5102-46D6-87AC-4DE4DE1F4769</string>
1650
+ <key>WFControlFlowMode</key>
1651
+ <integer>2</integer>
1652
+ </dict>
1653
+ </dict>
1654
+ <dict>
1655
+ <key>WFWorkflowActionIdentifier</key>
1656
+ <string>is.workflow.actions.image.combine</string>
1657
+ <key>WFWorkflowActionParameters</key>
1658
+ <dict>
1659
+ <key>UUID</key>
1660
+ <string>39947113-900A-4285-9FD5-D2FE6523AF6E</string>
1661
+ <key>WFImageCombineSpacing</key>
1662
+ <string>0</string>
1663
+ <key>WFInput</key>
1664
+ <dict>
1665
+ <key>Value</key>
1666
+ <dict>
1667
+ <key>OutputName</key>
1668
+ <string>Repeat Results</string>
1669
+ <key>OutputUUID</key>
1670
+ <string>ADD4C942-5102-46D6-87AC-4DE4DE1F4769</string>
1671
+ <key>Type</key>
1672
+ <string>ActionOutput</string>
1673
+ </dict>
1674
+ <key>WFSerializationType</key>
1675
+ <string>WFTextTokenAttachment</string>
1676
+ </dict>
1677
+ </dict>
1678
+ </dict>
1679
+ <dict>
1680
+ <key>WFWorkflowActionIdentifier</key>
1681
+ <string>is.workflow.actions.appendvariable</string>
1682
+ <key>WFWorkflowActionParameters</key>
1683
+ <dict>
1684
+ <key>WFInput</key>
1685
+ <dict>
1686
+ <key>Value</key>
1687
+ <dict>
1688
+ <key>OutputName</key>
1689
+ <string>Combined Image</string>
1690
+ <key>OutputUUID</key>
1691
+ <string>39947113-900A-4285-9FD5-D2FE6523AF6E</string>
1692
+ <key>Type</key>
1693
+ <string>ActionOutput</string>
1694
+ </dict>
1695
+ <key>WFSerializationType</key>
1696
+ <string>WFTextTokenAttachment</string>
1697
+ </dict>
1698
+ <key>WFVariableName</key>
1699
+ <string>Line as Image</string>
1700
+ </dict>
1701
+ </dict>
1702
+ <dict>
1703
+ <key>WFWorkflowActionIdentifier</key>
1704
+ <string>is.workflow.actions.repeat.each</string>
1705
+ <key>WFWorkflowActionParameters</key>
1706
+ <dict>
1707
+ <key>GroupingIdentifier</key>
1708
+ <string>5A19E70A-E108-43CB-935D-E5DE0D1F7839</string>
1709
+ <key>UUID</key>
1710
+ <string>1CFF9112-DA00-4E2A-949E-E420DEF932D4</string>
1711
+ <key>WFControlFlowMode</key>
1712
+ <integer>2</integer>
1713
+ </dict>
1714
+ </dict>
1715
+ <dict>
1716
+ <key>WFWorkflowActionIdentifier</key>
1717
+ <string>is.workflow.actions.image.combine</string>
1718
+ <key>WFWorkflowActionParameters</key>
1719
+ <dict>
1720
+ <key>UUID</key>
1721
+ <string>BD0DF0DF-F1BD-422D-8B2A-AD786BB05954</string>
1722
+ <key>WFImageCombineMode</key>
1723
+ <string>Vertically</string>
1724
+ <key>WFImageCombineSpacing</key>
1725
+ <string>0</string>
1726
+ <key>WFInput</key>
1727
+ <dict>
1728
+ <key>Value</key>
1729
+ <dict>
1730
+ <key>Type</key>
1731
+ <string>Variable</string>
1732
+ <key>VariableName</key>
1733
+ <string>Line as Image</string>
1734
+ </dict>
1735
+ <key>WFSerializationType</key>
1736
+ <string>WFTextTokenAttachment</string>
1737
+ </dict>
1738
+ </dict>
1739
+ </dict>
1740
+ <dict>
1741
+ <key>WFWorkflowActionIdentifier</key>
1742
+ <string>is.workflow.actions.savetocameraroll</string>
1743
+ <key>WFWorkflowActionParameters</key>
1744
+ <dict>
1745
+ <key>UUID</key>
1746
+ <string>FE6200A7-D7E5-4C36-982C-7E40BF9999CA</string>
1747
+ <key>WFInput</key>
1748
+ <dict>
1749
+ <key>Value</key>
1750
+ <dict>
1751
+ <key>OutputName</key>
1752
+ <string>Combined Image</string>
1753
+ <key>OutputUUID</key>
1754
+ <string>BD0DF0DF-F1BD-422D-8B2A-AD786BB05954</string>
1755
+ <key>Type</key>
1756
+ <string>ActionOutput</string>
1757
+ </dict>
1758
+ <key>WFSerializationType</key>
1759
+ <string>WFTextTokenAttachment</string>
1760
+ </dict>
1761
+ </dict>
1762
+ </dict>
1763
+ <dict>
1764
+ <key>WFWorkflowActionIdentifier</key>
1765
+ <string>is.workflow.actions.text.combine</string>
1766
+ <key>WFWorkflowActionParameters</key>
1767
+ <dict>
1768
+ <key>Show-text</key>
1769
+ <true/>
1770
+ <key>UUID</key>
1771
+ <string>24030348-0EDA-4614-A667-90C29BD1F391</string>
1772
+ <key>text</key>
1773
+ <dict>
1774
+ <key>Value</key>
1775
+ <dict>
1776
+ <key>Type</key>
1777
+ <string>Variable</string>
1778
+ <key>VariableName</key>
1779
+ <string>Results without Emoji</string>
1780
+ </dict>
1781
+ <key>WFSerializationType</key>
1782
+ <string>WFTextTokenAttachment</string>
1783
+ </dict>
1784
+ </dict>
1785
+ </dict>
1786
+ <dict>
1787
+ <key>WFWorkflowActionIdentifier</key>
1788
+ <string>is.workflow.actions.gettext</string>
1789
+ <key>WFWorkflowActionParameters</key>
1790
+ <dict>
1791
+ <key>UUID</key>
1792
+ <string>22BA966E-EAA8-44FA-9EA3-5AF323CB7A3E</string>
1793
+ <key>WFTextActionText</key>
1794
+ <dict>
1795
+ <key>Value</key>
1796
+ <dict>
1797
+ <key>attachmentsByRange</key>
1798
+ <dict>
1799
+ <key>{0, 1}</key>
1800
+ <dict>
1801
+ <key>Type</key>
1802
+ <string>Variable</string>
1803
+ <key>VariableName</key>
1804
+ <string>First Wordle Line</string>
1805
+ </dict>
1806
+ <key>{3, 1}</key>
1807
+ <dict>
1808
+ <key>OutputName</key>
1809
+ <string>Combined Text</string>
1810
+ <key>OutputUUID</key>
1811
+ <string>24030348-0EDA-4614-A667-90C29BD1F391</string>
1812
+ <key>Type</key>
1813
+ <string>ActionOutput</string>
1814
+ </dict>
1815
+ </dict>
1816
+ <key>string</key>
1817
+ <string>
1818
+
1819
+ </string>
1820
+ </dict>
1821
+ <key>WFSerializationType</key>
1822
+ <string>WFTextTokenString</string>
1823
+ </dict>
1824
+ </dict>
1825
+ </dict>
1826
+ <dict>
1827
+ <key>WFWorkflowActionIdentifier</key>
1828
+ <string>is.workflow.actions.setclipboard</string>
1829
+ <key>WFWorkflowActionParameters</key>
1830
+ <dict>
1831
+ <key>UUID</key>
1832
+ <string>6C81CD10-E78E-4A65-AE3B-1436A8634087</string>
1833
+ <key>WFInput</key>
1834
+ <dict>
1835
+ <key>Value</key>
1836
+ <dict>
1837
+ <key>OutputName</key>
1838
+ <string>Text</string>
1839
+ <key>OutputUUID</key>
1840
+ <string>22BA966E-EAA8-44FA-9EA3-5AF323CB7A3E</string>
1841
+ <key>Type</key>
1842
+ <string>ActionOutput</string>
1843
+ </dict>
1844
+ <key>WFSerializationType</key>
1845
+ <string>WFTextTokenAttachment</string>
1846
+ </dict>
1847
+ </dict>
1848
+ </dict>
1849
+ <dict>
1850
+ <key>WFWorkflowActionIdentifier</key>
1851
+ <string>is.workflow.actions.alert</string>
1852
+ <key>WFWorkflowActionParameters</key>
1853
+ <dict>
1854
+ <key>WFAlertActionCancelButtonShown</key>
1855
+ <false/>
1856
+ <key>WFAlertActionMessage</key>
1857
+ <dict>
1858
+ <key>Value</key>
1859
+ <dict>
1860
+ <key>attachmentsByRange</key>
1861
+ <dict>
1862
+ <key>{48, 1}</key>
1863
+ <dict>
1864
+ <key>OutputName</key>
1865
+ <string>Text</string>
1866
+ <key>OutputUUID</key>
1867
+ <string>22BA966E-EAA8-44FA-9EA3-5AF323CB7A3E</string>
1868
+ <key>Type</key>
1869
+ <string>ActionOutput</string>
1870
+ </dict>
1871
+ </dict>
1872
+ <key>string</key>
1873
+ <string>Image saved to Photos and copied text results:
1874
+
1875
+ </string>
1876
+ </dict>
1877
+ <key>WFSerializationType</key>
1878
+ <string>WFTextTokenString</string>
1879
+ </dict>
1880
+ </dict>
1881
+ </dict>
1882
+ <dict>
1883
+ <key>WFWorkflowActionIdentifier</key>
1884
+ <string>is.workflow.actions.choosefrommenu</string>
1885
+ <key>WFWorkflowActionParameters</key>
1886
+ <dict>
1887
+ <key>GroupingIdentifier</key>
1888
+ <string>6469E2C8-2A1C-44F2-ACD5-75FE63E50F77</string>
1889
+ <key>UUID</key>
1890
+ <string>A2061F3D-BD1C-4235-9CAC-54F16A1FD8A6</string>
1891
+ <key>WFControlFlowMode</key>
1892
+ <integer>2</integer>
1893
+ </dict>
1894
+ </dict>
1895
+ </array>
1896
+ <key>WFWorkflowClientVersion</key>
1897
+ <string>1145.8</string>
1898
+ <key>WFWorkflowHasOutputFallback</key>
1899
+ <false/>
1900
+ <key>WFWorkflowHasShortcutInputVariables</key>
1901
+ <true/>
1902
+ <key>WFWorkflowIcon</key>
1903
+ <dict>
1904
+ <key>WFWorkflowIconGlyphNumber</key>
1905
+ <integer>59673</integer>
1906
+ <key>WFWorkflowIconStartColor</key>
1907
+ <integer>4292093695</integer>
1908
+ </dict>
1909
+ <key>WFWorkflowImportQuestions</key>
1910
+ <array/>
1911
+ <key>WFWorkflowInputContentItemClasses</key>
1912
+ <array>
1913
+ <string>WFStringContentItem</string>
1914
+ </array>
1915
+ <key>WFWorkflowMinimumClientVersion</key>
1916
+ <integer>1113</integer>
1917
+ <key>WFWorkflowMinimumClientVersionString</key>
1918
+ <string>1113</string>
1919
+ <key>WFWorkflowNoInputBehavior</key>
1920
+ <dict>
1921
+ <key>Name</key>
1922
+ <string>WFWorkflowNoInputBehaviorGetClipboard</string>
1923
+ <key>Parameters</key>
1924
+ <dict/>
1925
+ </dict>
1926
+ <key>WFWorkflowOutputContentItemClasses</key>
1927
+ <array/>
1928
+ <key>WFWorkflowTypes</key>
1929
+ <array>
1930
+ <string>ActionExtension</string>
1931
+ </array>
1932
+ </dict>
1933
+ </plist>