File: thefirstmess_2.testhtml

package info (click to toggle)
python-recipe-scrapers 15.11.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 302,920 kB
  • sloc: python: 14,620; makefile: 3
file content (1417 lines) | stat: -rw-r--r-- 282,307 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
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
190
191
192
193
194
195
196
197
198
199
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
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
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
<!DOCTYPE html>
<html lang="en-US">
<head><meta charset="UTF-8"><script>if(navigator.userAgent.match(/MSIE|Internet Explorer/i)||navigator.userAgent.match(/Trident\/7\..*?rv:11/i)){var href=document.location.href;if(!href.match(/[?&]nowprocket/)){if(href.indexOf("?")==-1){if(href.indexOf("#")==-1){document.location.href=href+"?nowprocket=1"}else{document.location.href=href.replace("#","?nowprocket=1#")}}else{if(href.indexOf("#")==-1){document.location.href=href+"&nowprocket=1"}else{document.location.href=href.replace("#","&nowprocket=1#")}}}}</script><script>(()=>{class RocketLazyLoadScripts{constructor(){this.v="2.0.3",this.userEvents=["keydown","keyup","mousedown","mouseup","mousemove","mouseover","mouseenter","mouseout","mouseleave","touchmove","touchstart","touchend","touchcancel","wheel","click","dblclick","input","visibilitychange"],this.attributeEvents=["onblur","onclick","oncontextmenu","ondblclick","onfocus","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onmousewheel","onscroll","onsubmit"]}async t(){this.i(),this.o(),/iP(ad|hone)/.test(navigator.userAgent)&&this.h(),this.u(),this.l(this),this.m(),this.k(this),this.p(this),this._(),await Promise.all([this.R(),this.L()]),this.lastBreath=Date.now(),this.S(this),this.P(),this.D(),this.O(),this.M(),await this.C(this.delayedScripts.normal),await this.C(this.delayedScripts.defer),await this.C(this.delayedScripts.async),this.F("domReady"),await this.T(),await this.j(),await this.I(),this.F("windowLoad"),await this.A(),window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this.everythingLoaded=!0,this.lastTouchEnd&&await new Promise((t=>setTimeout(t,500-Date.now()+this.lastTouchEnd))),this.H(),this.F("all"),this.U(),this.W()}i(){this.CSPIssue=sessionStorage.getItem("rocketCSPIssue"),document.addEventListener("securitypolicyviolation",(t=>{this.CSPIssue||"script-src-elem"!==t.violatedDirective||"data"!==t.blockedURI||(this.CSPIssue=!0,sessionStorage.setItem("rocketCSPIssue",!0))}),{isRocket:!0})}o(){window.addEventListener("pageshow",(t=>{this.persisted=t.persisted,this.realWindowLoadedFired=!0}),{isRocket:!0}),window.addEventListener("pagehide",(()=>{this.onFirstUserAction=null}),{isRocket:!0})}h(){let t;function e(e){t=e}window.addEventListener("touchstart",e,{isRocket:!0}),window.addEventListener("touchend",(function i(o){Math.abs(o.changedTouches[0].pageX-t.changedTouches[0].pageX)<10&&Math.abs(o.changedTouches[0].pageY-t.changedTouches[0].pageY)<10&&o.timeStamp-t.timeStamp<200&&(o.target.dispatchEvent(new PointerEvent("click",{target:o.target,bubbles:!0,cancelable:!0,detail:1})),event.preventDefault(),window.removeEventListener("touchstart",e,{isRocket:!0}),window.removeEventListener("touchend",i,{isRocket:!0}))}),{isRocket:!0})}q(t){this.userActionTriggered||("mousemove"!==t.type||this.firstMousemoveIgnored?"keyup"===t.type||"mouseover"===t.type||"mouseout"===t.type||(this.userActionTriggered=!0,this.onFirstUserAction&&this.onFirstUserAction()):this.firstMousemoveIgnored=!0),"click"===t.type&&t.preventDefault(),this.savedUserEvents.length>0&&(t.stopPropagation(),t.stopImmediatePropagation()),"touchstart"===this.lastEvent&&"touchend"===t.type&&(this.lastTouchEnd=Date.now()),"click"===t.type&&(this.lastTouchEnd=0),this.lastEvent=t.type,this.savedUserEvents.push(t)}u(){this.savedUserEvents=[],this.userEventHandler=this.q.bind(this),this.userEvents.forEach((t=>window.addEventListener(t,this.userEventHandler,{passive:!1,isRocket:!0})))}U(){this.userEvents.forEach((t=>window.removeEventListener(t,this.userEventHandler,{passive:!1,isRocket:!0}))),this.savedUserEvents.forEach((t=>{t.target.dispatchEvent(new window[t.constructor.name](t.type,t))}))}m(){this.eventsMutationObserver=new MutationObserver((t=>{const e="return false";for(const i of t){if("attributes"===i.type){const t=i.target.getAttribute(i.attributeName);t&&t!==e&&(i.target.setAttribute("data-rocket-"+i.attributeName,t),i.target["rocket"+i.attributeName]=new Function("event",t),i.target.setAttribute(i.attributeName,e))}"childList"===i.type&&i.addedNodes.forEach((t=>{if(t.nodeType===Node.ELEMENT_NODE)for(const i of t.attributes)this.attributeEvents.includes(i.name)&&i.value&&""!==i.value&&(t.setAttribute("data-rocket-"+i.name,i.value),t["rocket"+i.name]=new Function("event",i.value),t.setAttribute(i.name,e))}))}})),this.eventsMutationObserver.observe(document,{subtree:!0,childList:!0,attributeFilter:this.attributeEvents})}H(){this.eventsMutationObserver.disconnect(),this.attributeEvents.forEach((t=>{document.querySelectorAll("[data-rocket-"+t+"]").forEach((e=>{e.setAttribute(t,e.getAttribute("data-rocket-"+t)),e.removeAttribute("data-rocket-"+t)}))}))}k(t){Object.defineProperty(HTMLElement.prototype,"onclick",{get(){return this.rocketonclick||null},set(e){this.rocketonclick=e,this.setAttribute(t.everythingLoaded?"onclick":"data-rocket-onclick","this.rocketonclick(event)")}})}S(t){function e(e,i){let o=e[i];e[i]=null,Object.defineProperty(e,i,{get:()=>o,set(s){t.everythingLoaded?o=s:e["rocket"+i]=o=s}})}e(document,"onreadystatechange"),e(window,"onload"),e(window,"onpageshow");try{Object.defineProperty(document,"readyState",{get:()=>t.rocketReadyState,set(e){t.rocketReadyState=e},configurable:!0}),document.readyState="loading"}catch(t){console.log("WPRocket DJE readyState conflict, bypassing")}}l(t){this.originalAddEventListener=EventTarget.prototype.addEventListener,this.originalRemoveEventListener=EventTarget.prototype.removeEventListener,this.savedEventListeners=[],EventTarget.prototype.addEventListener=function(e,i,o){o&&o.isRocket||!t.B(e,this)&&!t.userEvents.includes(e)||t.B(e,this)&&!t.userActionTriggered||e.startsWith("rocket-")||t.everythingLoaded?t.originalAddEventListener.call(this,e,i,o):t.savedEventListeners.push({target:this,remove:!1,type:e,func:i,options:o})},EventTarget.prototype.removeEventListener=function(e,i,o){o&&o.isRocket||!t.B(e,this)&&!t.userEvents.includes(e)||t.B(e,this)&&!t.userActionTriggered||e.startsWith("rocket-")||t.everythingLoaded?t.originalRemoveEventListener.call(this,e,i,o):t.savedEventListeners.push({target:this,remove:!0,type:e,func:i,options:o})}}F(t){"all"===t&&(EventTarget.prototype.addEventListener=this.originalAddEventListener,EventTarget.prototype.removeEventListener=this.originalRemoveEventListener),this.savedEventListeners=this.savedEventListeners.filter((e=>{let i=e.type,o=e.target||window;return"domReady"===t&&"DOMContentLoaded"!==i&&"readystatechange"!==i||("windowLoad"===t&&"load"!==i&&"readystatechange"!==i&&"pageshow"!==i||(this.B(i,o)&&(i="rocket-"+i),e.remove?o.removeEventListener(i,e.func,e.options):o.addEventListener(i,e.func,e.options),!1))}))}p(t){let e;function i(e){return t.everythingLoaded?e:e.split(" ").map((t=>"load"===t||t.startsWith("load.")?"rocket-jquery-load":t)).join(" ")}function o(o){function s(e){const s=o.fn[e];o.fn[e]=o.fn.init.prototype[e]=function(){return this[0]===window&&t.userActionTriggered&&("string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=i(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach((t=>{const e=arguments[0][t];delete arguments[0][t],arguments[0][i(t)]=e}))),s.apply(this,arguments),this}}if(o&&o.fn&&!t.allJQueries.includes(o)){const e={DOMContentLoaded:[],"rocket-DOMContentLoaded":[]};for(const t in e)document.addEventListener(t,(()=>{e[t].forEach((t=>t()))}),{isRocket:!0});o.fn.ready=o.fn.init.prototype.ready=function(i){function s(){parseInt(o.fn.jquery)>2?setTimeout((()=>i.bind(document)(o))):i.bind(document)(o)}return t.realDomReadyFired?!t.userActionTriggered||t.fauxDomReadyFired?s():e["rocket-DOMContentLoaded"].push(s):e.DOMContentLoaded.push(s),o([])},s("on"),s("one"),s("off"),t.allJQueries.push(o)}e=o}t.allJQueries=[],o(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>e,set(t){o(t)}})}P(){const t=new Map;document.write=document.writeln=function(e){const i=document.currentScript,o=document.createRange(),s=i.parentElement;let n=t.get(i);void 0===n&&(n=i.nextSibling,t.set(i,n));const c=document.createDocumentFragment();o.setStart(c,0),c.appendChild(o.createContextualFragment(e)),s.insertBefore(c,n)}}async R(){return new Promise((t=>{this.userActionTriggered?t():this.onFirstUserAction=t}))}async L(){return new Promise((t=>{document.addEventListener("DOMContentLoaded",(()=>{this.realDomReadyFired=!0,t()}),{isRocket:!0})}))}async I(){return this.realWindowLoadedFired?Promise.resolve():new Promise((t=>{window.addEventListener("load",t,{isRocket:!0})}))}M(){this.pendingScripts=[];this.scriptsMutationObserver=new MutationObserver((t=>{for(const e of t)e.addedNodes.forEach((t=>{"SCRIPT"!==t.tagName||t.noModule||t.isWPRocket||this.pendingScripts.push({script:t,promise:new Promise((e=>{const i=()=>{const i=this.pendingScripts.findIndex((e=>e.script===t));i>=0&&this.pendingScripts.splice(i,1),e()};t.addEventListener("load",i,{isRocket:!0}),t.addEventListener("error",i,{isRocket:!0}),setTimeout(i,1e3)}))})}))})),this.scriptsMutationObserver.observe(document,{childList:!0,subtree:!0})}async j(){await this.J(),this.pendingScripts.length?(await this.pendingScripts[0].promise,await this.j()):this.scriptsMutationObserver.disconnect()}D(){this.delayedScripts={normal:[],async:[],defer:[]},document.querySelectorAll("script[type$=rocketlazyloadscript]").forEach((t=>{t.hasAttribute("data-rocket-src")?t.hasAttribute("async")&&!1!==t.async?this.delayedScripts.async.push(t):t.hasAttribute("defer")&&!1!==t.defer||"module"===t.getAttribute("data-rocket-type")?this.delayedScripts.defer.push(t):this.delayedScripts.normal.push(t):this.delayedScripts.normal.push(t)}))}async _(){await this.L();let t=[];document.querySelectorAll("script[type$=rocketlazyloadscript][data-rocket-src]").forEach((e=>{let i=e.getAttribute("data-rocket-src");if(i&&!i.startsWith("data:")){i.startsWith("//")&&(i=location.protocol+i);try{const o=new URL(i).origin;o!==location.origin&&t.push({src:o,crossOrigin:e.crossOrigin||"module"===e.getAttribute("data-rocket-type")})}catch(t){}}})),t=[...new Map(t.map((t=>[JSON.stringify(t),t]))).values()],this.N(t,"preconnect")}async $(t){if(await this.G(),!0!==t.noModule||!("noModule"in HTMLScriptElement.prototype))return new Promise((e=>{let i;function o(){(i||t).setAttribute("data-rocket-status","executed"),e()}try{if(navigator.userAgent.includes("Firefox/")||""===navigator.vendor||this.CSPIssue)i=document.createElement("script"),[...t.attributes].forEach((t=>{let e=t.nodeName;"type"!==e&&("data-rocket-type"===e&&(e="type"),"data-rocket-src"===e&&(e="src"),i.setAttribute(e,t.nodeValue))})),t.text&&(i.text=t.text),t.nonce&&(i.nonce=t.nonce),i.hasAttribute("src")?(i.addEventListener("load",o,{isRocket:!0}),i.addEventListener("error",(()=>{i.setAttribute("data-rocket-status","failed-network"),e()}),{isRocket:!0}),setTimeout((()=>{i.isConnected||e()}),1)):(i.text=t.text,o()),i.isWPRocket=!0,t.parentNode.replaceChild(i,t);else{const i=t.getAttribute("data-rocket-type"),s=t.getAttribute("data-rocket-src");i?(t.type=i,t.removeAttribute("data-rocket-type")):t.removeAttribute("type"),t.addEventListener("load",o,{isRocket:!0}),t.addEventListener("error",(i=>{this.CSPIssue&&i.target.src.startsWith("data:")?(console.log("WPRocket: CSP fallback activated"),t.removeAttribute("src"),this.$(t).then(e)):(t.setAttribute("data-rocket-status","failed-network"),e())}),{isRocket:!0}),s?(t.fetchPriority="high",t.removeAttribute("data-rocket-src"),t.src=s):t.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(t.text)))}}catch(i){t.setAttribute("data-rocket-status","failed-transform"),e()}}));t.setAttribute("data-rocket-status","skipped")}async C(t){const e=t.shift();return e?(e.isConnected&&await this.$(e),this.C(t)):Promise.resolve()}O(){this.N([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}N(t,e){this.trash=this.trash||[];let i=!0;var o=document.createDocumentFragment();t.forEach((t=>{const s=t.getAttribute&&t.getAttribute("data-rocket-src")||t.src;if(s&&!s.startsWith("data:")){const n=document.createElement("link");n.href=s,n.rel=e,"preconnect"!==e&&(n.as="script",n.fetchPriority=i?"high":"low"),t.getAttribute&&"module"===t.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),t.crossOrigin&&(n.crossOrigin=t.crossOrigin),t.integrity&&(n.integrity=t.integrity),t.nonce&&(n.nonce=t.nonce),o.appendChild(n),this.trash.push(n),i=!1}})),document.head.appendChild(o)}W(){this.trash.forEach((t=>t.remove()))}async T(){try{document.readyState="interactive"}catch(t){}this.fauxDomReadyFired=!0;try{await this.G(),document.dispatchEvent(new Event("rocket-readystatechange")),await this.G(),document.rocketonreadystatechange&&document.rocketonreadystatechange(),await this.G(),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this.G(),window.dispatchEvent(new Event("rocket-DOMContentLoaded"))}catch(t){console.error(t)}}async A(){try{document.readyState="complete"}catch(t){}try{await this.G(),document.dispatchEvent(new Event("rocket-readystatechange")),await this.G(),document.rocketonreadystatechange&&document.rocketonreadystatechange(),await this.G(),window.dispatchEvent(new Event("rocket-load")),await this.G(),window.rocketonload&&window.rocketonload(),await this.G(),this.allJQueries.forEach((t=>t(window).trigger("rocket-jquery-load"))),await this.G();const t=new Event("rocket-pageshow");t.persisted=this.persisted,window.dispatchEvent(t),await this.G(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}catch(t){console.error(t)}}async G(){Date.now()-this.lastBreath>45&&(await this.J(),this.lastBreath=Date.now())}async J(){return document.hidden?new Promise((t=>setTimeout(t))):new Promise((t=>requestAnimationFrame(t)))}B(t,e){return e===document&&"readystatechange"===t||(e===document&&"DOMContentLoaded"===t||(e===window&&"DOMContentLoaded"===t||(e===window&&"load"===t||e===window&&"pageshow"===t)))}static run(){(new RocketLazyLoadScripts).t()}}RocketLazyLoadScripts.run()})();</script>
    
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <title>Crunchy Snap Peas &amp; Carrots Salad with Sesame Lime Dressing | The First Mess</title><link rel="preload" data-rocket-preload as="image" imagesrcset="https://thefirstmess.com/wp-content/uploads/fly-images/22606/tfm-footer-about-300x414-c.jpg, https://thefirstmess.com/wp-content/uploads/fly-images/22606/tfm-footer-about-600x828-c.jpg 2x" fetchpriority="high">
    <link rel="profile" href="https://gmpg.org/xfn/11" />
    <link rel="pingback" href="https://thefirstmess.com/xmlrpc.php" />
	    <script data-no-optimize="1" data-cfasync="false">!function(){"use strict";function e(e){const t=e.match(/((?=([a-z0-9._!#$%+^&*()[\]<>-]+))\2@[a-z0-9._-]+\.[a-z0-9._-]+)/gi);return t?t[0]:""}function t(t){return e(a(t.toLowerCase()))}function a(e){return e.replace(/\s/g,"")}async function n(e){const t={sha256Hash:"",sha1Hash:""};if(!("msCrypto"in window)&&"https:"===location.protocol&&"crypto"in window&&"TextEncoder"in window){const a=(new TextEncoder).encode(e),[n,c]=await Promise.all([s("SHA-256",a),s("SHA-1",a)]);t.sha256Hash=n,t.sha1Hash=c}return t}async function s(e,t){const a=await crypto.subtle.digest(e,t);return Array.from(new Uint8Array(a)).map(e=>("00"+e.toString(16)).slice(-2)).join("")}function c(e){let t=!0;return Object.keys(e).forEach(a=>{0===e[a].length&&(t=!1)}),t}function i(e,t,a){e.splice(t,1);const n="?"+e.join("&")+a.hash;history.replaceState(null,"",n)}var o={checkEmail:e,validateEmail:t,trimInput:a,hashEmail:n,hasHashes:c,removeEmailAndReplaceHistory:i,detectEmails:async function(){const e=new URL(window.location.href),a=Array.from(e.searchParams.entries()).map(e=>`${e[0]}=${e[1]}`);let s,o;const r=["adt_eih","sh_kit"];if(a.forEach((e,t)=>{const a=decodeURIComponent(e),[n,c]=a.split("=");if("adt_ei"===n&&(s={value:c,index:t,emsrc:"url"}),r.includes(n)){o={value:c,index:t,emsrc:"sh_kit"===n?"urlhck":"urlh"}}}),s)t(s.value)&&n(s.value).then(e=>{if(c(e)){const t={value:e,created:Date.now()};localStorage.setItem("adt_ei",JSON.stringify(t)),localStorage.setItem("adt_emsrc",s.emsrc)}});else if(o){const e={value:{sha256Hash:o.value,sha1Hash:""},created:Date.now()};localStorage.setItem("adt_ei",JSON.stringify(e)),localStorage.setItem("adt_emsrc",o.emsrc)}s&&i(a,s.index,e),o&&i(a,o.index,e)},cb:"adthrive"};const{detectEmails:r,cb:l}=o;r()}();
</script><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
	<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
	<style data-no-optimize="1" data-cfasync="false">
	.adthrive-ad {
		margin-top: 10px;
		margin-bottom: 10px;
		text-align: center;
		overflow-x: visible;
		clear: both;
		line-height: 0;
	}
	/* confirm click footer ad fix test */
body.adthrive-device-phone .adthrive-footer.adthrive-sticky {
padding-top:0px;
overflow:visible !important;
border-top:0px !important;
}
body.adthrive-device-phone .adthrive-sticky.adthrive-footer>.adthrive-close {
top:-25px !important;
right:0px !important;
border-radius: 0px !important;
line-height: 24px !important;
font-size: 24px !important;
}
/* confirm click footer ad fix test  end */

/* max video player width */
body.adthrive-device-desktop div[id^="cls-video-container"] {
max-width: 630px;
margin: auto;
min-height: 400px!important;
}

/* General mobile collapse player styles */
.adthrive-collapse-mobile-background {
    max-height:163px;
}

.adthrive-player-position.adthrive-collapse-mobile.adthrive-collapse-top-center,
.adthrive-collapse-mobile-background{
    z-index: 1!important;
}

.adthrive-sidebar.adthrive-stuck {
    margin-top: 100px;
}
.adthrive-sticky-sidebar > div {
top: 100px!important;
}

body.blog .adthrive-content, body.search .adthrive-content, body.archive .adthrive-content {
    flex:  0 0 100%;
}

/* Disable ads on printed pages */
@media print {
	div[data-gg-moat], 
	body[data-gg-moat], 
	iframe[data-gg-moat-ifr],
	div[class*="kargo-ad"],
	.adthrive-ad,
	.adthrive-comscore {
		display: none!important;
		height: 0px;
		width: 0px;
		visibility: hidden;
	}
}
/* END disable ads on printed pages */

/* Light Background For Mobile Sticky Video Player */
.adthrive-collapse-mobile-background {
background-color: #F0EDED!important;
}
.adthrive-top-collapse-close > svg > * {
stroke: black;
font-family: sans-serif;
}
.adthrive-top-collapse-wrapper-video-title,
.adthrive-top-collapse-wrapper-bar a a.adthrive-learn-more-link {
color: #000!important;
}
/* END Light Background For Mobile Sticky Video Player */</style>
<script data-no-optimize="1" data-cfasync="false">
	window.adthriveCLS = {
		enabledLocations: ['Content', 'Recipe'],
		injectedSlots: [],
		injectedFromPlugin: true,
		branch: '2b25b53',bucket: 'prod',			};
	window.adthriveCLS.siteAds = {"betaTester":false,"targeting":[{"value":"553568ba7a55b2e0613623a4","key":"siteId"},{"value":"6233884d52f7df70880d9ebc","key":"organizationId"},{"value":"The First Mess","key":"siteName"},{"value":"AdThrive Edge","key":"service"},{"value":"on","key":"bidding"},{"value":["Food","Clean Eating"],"key":"verticals"}],"siteUrl":"https://thefirstmess.com/","siteId":"553568ba7a55b2e0613623a4","siteName":"The First Mess","breakpoints":{"tablet":768,"desktop":1024},"cloudflare":{"version":"27b3dae"},"adUnits":[{"sequence":null,"targeting":[{"value":["Header"],"key":"location"}],"devices":["desktop","tablet"],"name":"Header","sticky":false,"location":"Header","dynamic":{"pageSelector":"body.home","spacing":0,"max":2,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".dmc-ad-simulation","skip":0,"classNames":[],"position":"afterbegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90]],"priority":399,"autosize":true},{"sequence":null,"targeting":[{"value":["Header"],"key":"location"}],"devices":["phone"],"name":"Header","sticky":false,"location":"Header","dynamic":{"pageSelector":"body.home","spacing":0,"max":2,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".dmc-ad-simulation","skip":0,"classNames":[],"position":"afterbegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,100]],"priority":399,"autosize":true},{"sequence":1,"targeting":[{"value":["Sidebar"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["desktop"],"name":"Sidebar_1","sticky":true,"location":"Sidebar","dynamic":{"pageSelector":"body:not(.home)","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":"#sidebar","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[1,1],[160,600],[250,250],[300,50],[300,250],[300,420],[300,600],[300,1050],[320,50],[320,100],[336,280]],"priority":299,"autosize":true},{"sequence":9,"targeting":[{"value":["Sidebar"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["desktop"],"name":"Sidebar_9","sticky":true,"location":"Sidebar","dynamic":{"pageSelector":"body.single, body.page:not(.home)","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":"#sidebar","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":".wprm-recipe-container, #dmc-main-footer, .dmc-single-post-footer, .dmc-recipe-card-inner.dmc-width-main.dmc-padding-main","adSizes":[[1,1],[160,600],[250,250],[300,50],[300,250],[300,420],[300,600],[300,1050],[320,50],[320,100],[336,280],[120,240]],"priority":291,"autosize":true},{"sequence":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["phone"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.blog, body.search, body.archive","spacing":1.5,"max":2,"lazyMax":13,"enable":true,"lazy":true,"elementSelector":"article:nth-child(2n)","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["desktop"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single:not(.cookbook-template-default), body.page:not(.home)","spacing":1.5,"max":3,"lazyMax":96,"enable":true,"lazy":true,"elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3)","skip":5,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["tablet"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single:not(.cookbook-template-default), body.page:not(.home)","spacing":1.2,"max":3,"lazyMax":96,"enable":true,"lazy":true,"elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3)","skip":5,"classNames":[],"position":"afterend","every":0,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["phone"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single:not(.cookbook-template-default), body.page:not(.home)","spacing":1.5,"max":3,"lazyMax":96,"enable":true,"lazy":true,"elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3)","skip":5,"classNames":[],"position":"afterend","every":0,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["desktop","tablet"],"name":"Recipe","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"body.single","spacing":0.8,"max":1,"lazyMax":98,"enable":true,"lazy":true,"elementSelector":".wprm-recipe-ingredients-container,  .wprm-recipe-instructions-container li, .wprm-recipe-notes-container span, .wprm-recipe-notes-container li","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390],[300,250]],"priority":-101,"autosize":true},{"sequence":5,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["phone"],"name":"Recipe_5","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"body.single","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".wprm-recipe-ingredients-container","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390],[300,250]],"priority":-105,"autosize":true},{"sequence":null,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["phone"],"name":"Recipe","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"body.single","spacing":0.9,"max":1,"lazyMax":97,"enable":true,"lazy":true,"elementSelector":".wprm-recipe-ingredients-container, .wprm-recipe-instructions-container li, .wprm-recipe-notes-container span, .wprm-recipe-notes-container li","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390],[300,250]],"priority":-101,"autosize":true},{"sequence":null,"targeting":[{"value":["Below Post"],"key":"location"}],"devices":["tablet","desktop"],"name":"Below_Post","sticky":false,"location":"Below Post","dynamic":{"pageSelector":"body.single:not(.cookbook-template-default), body.page:not(.home)","spacing":0.85,"max":0,"lazyMax":10,"enable":true,"lazy":true,"elementSelector":"#dmc-comments, .comment-list > li","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[250,250],[1,1],[320,100],[300,250],[970,250],[728,250]],"priority":99,"autosize":true},{"sequence":null,"targeting":[{"value":["Footer"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["phone","tablet","desktop"],"name":"Footer","sticky":true,"location":"Footer","dynamic":{"pageSelector":"","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":"body","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[320,100],[728,90],[970,90],[468,60],[1,1],[300,50]],"priority":-1,"autosize":true}],"adDensityLayout":{"mobile":{"adDensity":0.23,"onePerViewport":true},"pageOverrides":[{"mobile":{"adDensity":0.2,"onePerViewport":true},"note":null,"pageSelector":"body.blog, body.search, body.archive","desktop":{"adDensity":0.2,"onePerViewport":false}}],"desktop":{"adDensity":0.23,"onePerViewport":true}},"adDensityEnabled":true,"siteExperiments":[],"adTypes":{"sponsorTileDesktop":false,"interscrollerDesktop":true,"nativeBelowPostDesktop":true,"miniscroller":true,"largeFormatsMobile":true,"nativeMobileContent":true,"inRecipeRecommendationMobile":true,"nativeMobileRecipe":true,"sponsorTileMobile":false,"expandableCatalogAdsMobile":true,"outstreamMobile":true,"nativeHeaderMobile":true,"inRecipeRecommendationDesktop":true,"nativeDesktopContent":true,"outstreamDesktop":true,"animatedFooter":true,"skylineHeader":false,"expandableFooter":true,"nativeDesktopSidebar":true,"videoFootersMobile":true,"videoFootersDesktop":true,"interscroller":true,"nativeDesktopRecipe":true,"nativeHeaderDesktop":true,"nativeBelowPostMobile":true,"expandableCatalogAdsDesktop":true,"largeFormatsDesktop":true},"adOptions":{"theTradeDesk":true,"rtbhouse":true,"undertone":true,"sidebarConfig":{"dynamicStickySidebar":{"minHeight":1800,"enabled":true,"blockedSelectors":[]}},"footerCloseButton":false,"teads":true,"pmp":true,"thirtyThreeAcross":true,"sharethrough":true,"optimizeVideoPlayersForEarnings":false,"removeVideoTitleWrapper":true,"pubMatic":true,"infiniteScroll":false,"yahoossp":true,"improvedigital":true,"spa":false,"stickyContainerConfig":{"recipeDesktop":{"minHeight":null,"enabled":false},"blockedSelectors":[],"stickyHeaderSelectors":[".dmc-sticky-nav"],"content":{"minHeight":250,"enabled":true},"recipeMobile":{"minHeight":null,"enabled":false}},"sonobi":true,"yieldmo":true,"footerSelector":"","amazonUAM":true,"gamMCMEnabled":true,"gamMCMChildNetworkCode":"109105652","rubicon":true,"conversant":true,"openx":true,"customCreativeEnabled":true,"mobileHeaderHeight":1,"secColor":"#000000","unruly":true,"mediaGrid":true,"bRealTime":true,"adInViewTime":null,"gumgum":true,"comscoreFooter":true,"desktopInterstitial":false,"footerCloseButtonDesktop":false,"ozone":true,"isAutoOptimized":true,"adform":true,"comscoreTAL":true,"targetaff":false,"bgColor":"#FFFFFF","advancePlaylistOptions":{"playlistPlayer":{"enabled":true},"relatedPlayer":{"enabled":true,"applyToFirst":true}},"amazonASR":true,"kargo":true,"liveRampATS":true,"footerCloseButtonMobile":false,"interstitialBlockedPageSelectors":"","prioritizeShorterVideoAds":true,"allowSmallerAdSizes":true,"comscore":"Food","wakeLock":{"desktopEnabled":true,"mobileValue":15,"mobileEnabled":true,"desktopValue":30},"mobileInterstitial":false,"tripleLift":true,"sensitiveCategories":["alc","ast","cbd","cosm","dat","gamc","gamv","pol","rel","sst","srh","ske","tob","wtl"],"liveRamp":true,"adthriveEmailIdentity":true,"criteo":true,"nativo":true,"infiniteScrollOptions":{"selector":"","heightThreshold":0},"siteAttributes":{"mobileHeaderSelectors":[],"desktopHeaderSelectors":[]},"dynamicContentSlotLazyLoading":true,"clsOptimizedAds":true,"ogury":true,"aidem":false,"verticals":["Food","Clean Eating"],"inImage":false,"usCMP":{"enabled":false,"regions":[]},"advancePlaylist":true,"flipp":true,"delayLoading":false,"inImageZone":null,"appNexus":true,"rise":true,"liveRampId":"","infiniteScrollRefresh":false,"indexExchange":true},"siteAdsProfiles":[],"featureRollouts":{"erp":{"featureRolloutId":19,"data":null,"enabled":false}},"videoPlayers":{"contextual":{"autoplayCollapsibleEnabled":true,"overrideEmbedLocation":false,"defaultPlayerType":"static"},"videoEmbed":"wordpress","footerSelector":"","contentSpecificPlaylists":[],"players":[{"playlistId":"d7y0fAI6","pageSelector":"body.single:not(.cookbook-template-default)","devices":["mobile"],"mobileLocation":"bottom-left","description":"","skip":3,"title":"","type":"stickyPlaylist","enabled":true,"footerSelector":"","elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3), .article-content > *:not(.top-of-post)","id":4049602,"position":"afterend","saveVideoCloseState":false,"shuffle":true,"mobileHeaderSelector":".dmc-sticky-nav","playerId":"6Bjq2Po4","isCompleted":true},{"devices":["desktop","mobile"],"description":"","id":4049598,"title":"Stationary related player - desktop and mobile","type":"stationaryRelated","enabled":true,"playerId":"038ZWbWc"},{"playlistId":"","pageSelector":"","devices":["desktop"],"description":"","skip":3,"title":"Sticky related player - desktop","type":"stickyRelated","enabled":true,"elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3), .article-content > *:not(.top-of-post)","id":4049599,"position":"afterend","saveVideoCloseState":false,"shuffle":false,"mobileHeaderSelector":null,"playerId":"038ZWbWc","isCompleted":true},{"playlistId":"","pageSelector":"","devices":["mobile"],"mobileLocation":"bottom-left","description":"","skip":3,"title":"Sticky related player - mobile","type":"stickyRelated","enabled":true,"elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3), .article-content > *:not(.top-of-post)","id":4049600,"position":"afterend","saveVideoCloseState":false,"shuffle":false,"mobileHeaderSelector":".dmc-sticky-nav","playerId":"038ZWbWc","isCompleted":true},{"playlistId":"d7y0fAI6","pageSelector":"body.single:not(.cookbook-template-default)","devices":["desktop"],"description":"","skip":3,"title":"","type":"stickyPlaylist","enabled":true,"footerSelector":"","elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3), .article-content > *:not(.top-of-post)","id":4049601,"position":"afterend","saveVideoCloseState":false,"shuffle":true,"mobileHeaderSelector":null,"playerId":"6Bjq2Po4","isCompleted":true}],"partners":{"theTradeDesk":true,"unruly":true,"mediaGrid":true,"undertone":true,"gumgum":true,"adform":true,"pmp":true,"kargo":true,"thirtyThreeAcross":false,"stickyOutstream":{"desktop":{"enabled":true},"blockedPageSelectors":"","mobileLocation":"bottom-left","allowOnHomepage":true,"mobile":{"enabled":true},"saveVideoCloseState":false,"mobileHeaderSelector":".dmc-sticky-nav","allowForPageWithStickyPlayer":{"enabled":true}},"sharethrough":true,"tripleLift":true,"pubMatic":true,"criteo":true,"yahoossp":true,"nativo":true,"improvedigital":true,"aidem":false,"yieldmo":true,"amazonUAM":true,"rubicon":true,"appNexus":true,"rise":true,"openx":true,"indexExchange":true}}};</script>

<script data-no-optimize="1" data-cfasync="false">
(function(w, d) {
	w.adthrive = w.adthrive || {};
	w.adthrive.cmd = w.adthrive.cmd || [];
	w.adthrive.plugin = 'adthrive-ads-3.7.5';
	w.adthrive.host = 'ads.adthrive.com';
	w.adthrive.integration = 'plugin';

	var commitParam = (w.adthriveCLS && w.adthriveCLS.bucket !== 'prod' && w.adthriveCLS.branch) ? '&commit=' + w.adthriveCLS.branch : '';

	var s = d.createElement('script');
	s.async = true;
	s.referrerpolicy='no-referrer-when-downgrade';
	s.src = 'https://' + w.adthrive.host + '/sites/553568ba7a55b2e0613623a4/ads.min.js?referrer=' + w.encodeURIComponent(w.location.href) + commitParam + '&cb=' + (Math.floor(Math.random() * 100) + 1) + '';
	var n = d.getElementsByTagName('script')[0];
	n.parentNode.insertBefore(s, n);
})(window, document);
</script>
<link rel="dns-prefetch" href="https://ads.adthrive.com/"><link rel="preconnect" href="https://ads.adthrive.com/"><link rel="preconnect" href="https://ads.adthrive.com/" crossorigin>
	<!-- This site is optimized with the Yoast SEO plugin v24.9 - https://yoast.com/wordpress/plugins/seo/ -->
	<meta name="description" content="This fresh and crunchy snap peas and carrots salad is so vibrant! Toasted sesame &amp; lime dressing plus creamy avocado makes a harmonious combo" />
	<link rel="canonical" href="https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/" />
	<meta property="og:locale" content="en_US" />
	<meta property="og:type" content="recipe" />
	<meta property="og:title" content="Crunchy Snap Peas &amp; Carrots Salad with Sesame Lime Dressing | The First Mess" />
	<meta property="og:description" content="This fresh and crunchy snap peas and carrots salad is so vibrant! Toasted sesame &amp; lime dressing plus creamy avocado makes a harmonious combo" />
	<meta property="og:url" content="https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/" />
	<meta property="og:site_name" content="The First Mess" />
	<meta property="article:publisher" content="https://www.facebook.com/thefirstmess" />
	<meta property="article:published_time" content="2025-04-23T06:59:00+00:00" />
	<meta property="og:image" content="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg" />
	<meta property="og:image:width" content="1480" />
	<meta property="og:image:height" content="1850" />
	<meta property="og:image:type" content="image/jpeg" />
	<meta name="author" content="Laura Wright" />
	<meta name="twitter:label1" content="Written by" />
	<meta name="twitter:data1" content="Laura Wright" />
	<meta name="twitter:label2" content="Est. reading time" />
	<meta name="twitter:data2" content="4 minutes" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#article","isPartOf":{"@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/"},"author":{"name":"Laura Wright","@id":"https://thefirstmess.com/#/schema/person/6d13d63a4bf30b3704e3321773c0c454"},"headline":"Crunchy Snap Peas &amp; Carrots Salad with Sesame Lime Dressing","datePublished":"2025-04-23T06:59:00+00:00","wordCount":699,"commentCount":1,"publisher":{"@id":"https://thefirstmess.com/#organization"},"image":{"@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#primaryimage"},"thumbnailUrl":"https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg","keywords":["avocado","carrots","cilantro","garlic","lime","sesame oil","sesame seeds","snap peas","tamari","thai basil"],"articleSection":["autumn","carrots","gluten free","grain-free","nut free","quick","raw","salad","salty","side dish","sour","spring","summer","sweet","umami","vegan","winter"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#respond"]}]},{"@type":"WebPage","@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/","url":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/","name":"Crunchy Snap Peas & Carrots Salad with Sesame Lime Dressing | The First Mess","isPartOf":{"@id":"https://thefirstmess.com/#website"},"primaryImageOfPage":{"@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#primaryimage"},"image":{"@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#primaryimage"},"thumbnailUrl":"https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg","datePublished":"2025-04-23T06:59:00+00:00","description":"This fresh and crunchy snap peas and carrots salad is so vibrant! Toasted sesame & lime dressing plus creamy avocado makes a harmonious combo","breadcrumb":{"@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#primaryimage","url":"https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg","contentUrl":"https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg","width":1480,"height":1850,"caption":"An overhead shot shows a crunchy shredded snap peas and carrots salad with chunks of avocado on top. The salad is dressed with a sesame, lime and garlic dressing. Chopped cilantro, Thai basil, and toasted sesame seeds fleck the salad throughout."},{"@type":"BreadcrumbList","@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://thefirstmess.com/"},{"@type":"ListItem","position":2,"name":"Recipes","item":"https://thefirstmess.com/recipes/"},{"@type":"ListItem","position":3,"name":"side dish","item":"https://thefirstmess.com/category/recipe-type/side-dish/"},{"@type":"ListItem","position":4,"name":"Crunchy Snap Peas &amp; Carrots Salad with Sesame Lime Dressing"}]},{"@type":"WebSite","@id":"https://thefirstmess.com/#website","url":"https://thefirstmess.com/","name":"The First Mess","description":"| Vegan recipes &amp; wholesome meals","publisher":{"@id":"https://thefirstmess.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://thefirstmess.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://thefirstmess.com/#organization","name":"The First Mess","url":"https://thefirstmess.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://thefirstmess.com/#/schema/logo/image/","url":"","contentUrl":"","caption":"The First Mess"},"image":{"@id":"https://thefirstmess.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/thefirstmess","https://www.instagram.com/thefirstmess/","https://www.pinterest.ca/thefirstmess/"]},{"@type":"Person","@id":"https://thefirstmess.com/#/schema/person/6d13d63a4bf30b3704e3321773c0c454","name":"Laura Wright","sameAs":["https://thefirstmess.com/about/"],"url":"https://thefirstmess.com/about/"},{"@type":"Recipe","name":"Crunchy Snap Peas &amp; Carrots Salad with Sesame Lime Dressing","author":{"@id":"https://thefirstmess.com/#/schema/person/6d13d63a4bf30b3704e3321773c0c454"},"description":"This fresh and crunchy snap peas and carrots salad is a vibrant vegan side. The dressing has toasted sesame oil, fresh garlic, lime zest/juice, spices, and a hint of maple syrup for sweetness. The vegetables, dressing, and creamy avocado work in beautiful harmony! Ready in 30 minutes.","datePublished":"2025-04-23T02:59:00+00:00","image":["https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg","https://thefirstmess.com/wp-content/uploads/fly-images/34182/crunchy-snap-peas-and-carrots-salad-03-500x500-c.jpg","https://thefirstmess.com/wp-content/uploads/fly-images/34182/crunchy-snap-peas-and-carrots-salad-03-500x375-c.jpg","https://thefirstmess.com/wp-content/uploads/fly-images/34182/crunchy-snap-peas-and-carrots-salad-03-480x270-c.jpg"],"recipeYield":["4"],"prepTime":"PT30M","totalTime":"PT30M","recipeIngredient":["1 teaspoon lime zest","2 tablespoons lime juice","1 clove garlic, finely minced with a Microplane","½ teaspoon ground cumin","½ teaspoon ground coriander","1 teaspoon Tamari soy sauce","1-3 teaspoons maple syrup ((see note))","2 teaspoons toasted sesame oil","sea salt and ground black pepper, to taste","⅓ cup avocado oil","350 grams carrots ((about 3 medium))","227 grams snap peas","⅓ cup cilantro/Thai basil leaves ((or a combination of both))","1 tablespoon toasted sesame seeds","sea salt and ground black pepper, to taste","1 medium ripe avocado"],"recipeInstructions":[{"@type":"HowToStep","text":"Make the dressing. In a sealable jar, combine the lime zest, lime juice, garlic, cumin, coriander, Tamari, maple syrup, toasted sesame oil, salt, pepper, and avocado oil. Close the lid on the jar tightly and shake until combined. Set aside.","name":"Make the dressing. In a sealable jar, combine the lime zest, lime juice, garlic, cumin, coriander, Tamari, maple syrup, toasted sesame oil, salt, pepper, and avocado oil. Close the lid on the jar tightly and shake until combined. Set aside.","url":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#wprm-recipe-34191-step-0-0"},{"@type":"HowToStep","text":"Peel the carrots and then julienne them into little matchsticks before placing in a large bowl. Remove the ends of the snap peas and then slice them thinly before adding to the bowl. Roughly chop the herbs and then add them to the bowl as well. Finally, add the sesame seeds, salt, pepper, and the dressing to the bowl.","name":"Peel the carrots and then julienne them into little matchsticks before placing in a large bowl. Remove the ends of the snap peas and then slice them thinly before adding to the bowl. Roughly chop the herbs and then add them to the bowl as well. Finally, add the sesame seeds, salt, pepper, and the dressing to the bowl.","url":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#wprm-recipe-34191-step-0-1"},{"@type":"HowToStep","text":"Toss the salad to combine before transferring to your platter of choice. Peel and pit the avocado and then cut the flesh into cubes. Evenly place the avocado on top of the salad. If there’s any dressing lingering at the bottom of the bowl, spoon it over the avocado.","name":"Toss the salad to combine before transferring to your platter of choice. Peel and pit the avocado and then cut the flesh into cubes. Evenly place the avocado on top of the salad. If there’s any dressing lingering at the bottom of the bowl, spoon it over the avocado.","url":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#wprm-recipe-34191-step-0-2"},{"@type":"HowToStep","text":"Serve the salad right away and enjoy!","name":"Serve the salad right away and enjoy!","url":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#wprm-recipe-34191-step-0-3"}],"recipeCategory":["Salad","Side Dish"],"suitableForDiet":["https://schema.org/GlutenFreeDiet","https://schema.org/VeganDiet"],"keywords":"30 minutes, avocado, avocado oil, carrots, cilantro, coriander, cumin, fall, garlic, lime, maple syrup, quick, sesame oil, sesame seeds, snap peas, spring, summer, tamari, Thai basil, winter","@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#recipe","isPartOf":{"@id":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#article"},"mainEntityOfPage":"https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/"}]}</script>
	<!-- / Yoast SEO plugin. -->


<link rel='dns-prefetch' href='//ads.adthrive.com' />

<link rel='stylesheet' id='wp-block-library-css' href='https://thefirstmess.com/wp-includes/css/dist/block-library/style.min.css?ver=eac3ff6c141b27b729fdcfd267777bb0' type='text/css' media='all' />
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link data-minify="1" rel='stylesheet' id='theme-style-css' href='https://thefirstmess.com/wp-content/cache/min/1/wp-content/themes/thefirstmess2022/style.css?ver=1746733119' type='text/css' media='all' />
<style id='akismet-widget-style-inline-css' type='text/css'>

			.a-stats {
				--akismet-color-mid-green: #357b49;
				--akismet-color-white: #fff;
				--akismet-color-light-grey: #f6f7f7;

				max-width: 350px;
				width: auto;
			}

			.a-stats * {
				all: unset;
				box-sizing: border-box;
			}

			.a-stats strong {
				font-weight: 600;
			}

			.a-stats a.a-stats__link,
			.a-stats a.a-stats__link:visited,
			.a-stats a.a-stats__link:active {
				background: var(--akismet-color-mid-green);
				border: none;
				box-shadow: none;
				border-radius: 8px;
				color: var(--akismet-color-white);
				cursor: pointer;
				display: block;
				font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
				font-weight: 500;
				padding: 12px;
				text-align: center;
				text-decoration: none;
				transition: all 0.2s ease;
			}

			/* Extra specificity to deal with TwentyTwentyOne focus style */
			.widget .a-stats a.a-stats__link:focus {
				background: var(--akismet-color-mid-green);
				color: var(--akismet-color-white);
				text-decoration: none;
			}

			.a-stats a.a-stats__link:hover {
				filter: brightness(110%);
				box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.16);
			}

			.a-stats .count {
				color: var(--akismet-color-white);
				display: block;
				font-size: 1.5em;
				line-height: 1.4;
				padding: 0 13px;
				white-space: nowrap;
			}
		
</style>
<script type="text/javascript" src="https://thefirstmess.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
<script type="text/javascript" src="https://thefirstmess.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript"></script>	<script type="rocketlazyloadscript" data-rocket-type="text/javascript">var ajaxurl = 'https://thefirstmess.com/wp-admin/admin-ajax.php';</script>
	<!-- HFCM by 99 Robots - Snippet # 1: Google Analytics GA4 + UA -->
<!-- Google tag (gtag.js) -->
<script type="rocketlazyloadscript" async data-rocket-src="https://www.googletagmanager.com/gtag/js?id=G-EWWE6XHFLP"></script>
<script type="rocketlazyloadscript">
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

	gtag('config', 'UA-28047831-1');
	gtag('config', 'G-EWWE6XHFLP');
</script>
<!-- /end HFCM by 99 Robots -->
<!-- HFCM by 99 Robots - Snippet # 2: Adobe Typekit -->
<link data-minify="1" rel="stylesheet" href="https://thefirstmess.com/wp-content/cache/min/1/jnv4pds.css?ver=1746733120">
<!-- /end HFCM by 99 Robots -->
<!-- [slickstream] Page Generated at: 5/8/2025, 4:27:00 PM EST -->		<script>console.info(`[slickstream] Page Generated at: 5/8/2025, 4:27:00 PM EST`);</script>
		<script>console.info(`[slickstream] Current timestamp: ${(new Date).toLocaleString('en-US', { timeZone: 'America/New_York' })} EST`);</script>
<!-- [slickstream] Page Boot Data: -->
<script class='slickstream-script'>
(function() {
    "slickstream";
    const win = window;
    win.$slickBoot = win.$slickBoot || {};
    win.$slickBoot.d = {"bestBy":1746736792719,"epoch":1727109112398,"siteCode":"WU3UBMRZ","services":{"engagementCacheableApiDomain":"https:\/\/c03f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c03b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c03f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c03b-wss.app.slickstream.com\/socket?site=WU3UBMRZ"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/app.js","adminUrl":"","allowList":["thefirstmess.com"],"abTests":[],"wpPluginTtl":3600,"v2":{"phone":{"placeholders":[],"bootTriggerTimeout":250,"emailCapture":{"mainTitle":"SAVE THIS RECIPE","saveButtonText":"Send","confirmDesc":"Thanks so much! The recipe will be in your inbox shortly.","optInText":"Sign me up for new recipes","optInDefaultOff":false,"cssSelector":"#cls-video-container-d7y0fAI6","formIconType":"none"},"bestBy":1746736792719,"epoch":1727109112398,"siteCode":"WU3UBMRZ","services":{"engagementCacheableApiDomain":"https:\/\/c03f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c03b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c03f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c03b-wss.app.slickstream.com\/socket?site=WU3UBMRZ"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/app.js","adminUrl":"","allowList":["thefirstmess.com"],"abTests":[],"wpPluginTtl":3600},"tablet":{"placeholders":[],"bootTriggerTimeout":250,"bestBy":1746736792719,"epoch":1727109112398,"siteCode":"WU3UBMRZ","services":{"engagementCacheableApiDomain":"https:\/\/c03f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c03b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c03f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c03b-wss.app.slickstream.com\/socket?site=WU3UBMRZ"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/app.js","adminUrl":"","allowList":["thefirstmess.com"],"abTests":[],"wpPluginTtl":3600},"desktop":{"placeholders":[],"bootTriggerTimeout":250,"emailCapture":{"mainTitle":"SAVE THIS RECIPE","saveButtonText":"Send","confirmDesc":"Thanks so much! The recipe will be in your inbox shortly.","optInText":"Sign me up for new recipes","optInDefaultOff":false,"cssSelector":"#cls-video-container-d7y0fAI6","formIconType":"none"},"bestBy":1746736792719,"epoch":1727109112398,"siteCode":"WU3UBMRZ","services":{"engagementCacheableApiDomain":"https:\/\/c03f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c03b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c03f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c03b-wss.app.slickstream.com\/socket?site=WU3UBMRZ"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/app.js","adminUrl":"","allowList":["thefirstmess.com"],"abTests":[],"wpPluginTtl":3600},"unknown":{"placeholders":[],"bootTriggerTimeout":250,"bestBy":1746736792719,"epoch":1727109112398,"siteCode":"WU3UBMRZ","services":{"engagementCacheableApiDomain":"https:\/\/c03f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c03b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c03f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c03b-wss.app.slickstream.com\/socket?site=WU3UBMRZ"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/app.js","adminUrl":"","allowList":["thefirstmess.com"],"abTests":[],"wpPluginTtl":3600}}};
    win.$slickBoot.s = 'plugin';
    win.$slickBoot._bd = performance.now();
})();
</script>
<!-- [slickstream] END Page Boot Data -->
<!-- [slickstream] CLS Insertion: -->
<script>
"use strict";(async(e,t,n)=>{const o="slickstream";const i=e?JSON.parse(e):null;const r=t?JSON.parse(t):null;const c=n?JSON.parse(n):null;if(i||r||c){const e=async()=>{if(document.body){if(i){m(i.selector,i.position||"after selector","slick-film-strip",i.minHeight||72,i.margin||i.marginLegacy||"10px auto")}if(r){r.forEach((e=>{if(e.selector){m(e.selector,e.position||"after selector","slick-inline-search-panel",e.minHeight||350,e.margin||e.marginLegacy||"50px 15px",e.id)}}))}if(c){s(c)}return}window.requestAnimationFrame(e)};window.requestAnimationFrame(e)}const s=async e=>{const t="slick-on-page";try{if(document.querySelector(`.${t}`)){return}const n=l()?e.minHeightMobile||220:e.minHeight||200;if(e.cssSelector){m(e.cssSelector,"before selector",t,n,"",undefined)}else{a(e.pLocation||3,t,n)}}catch(e){console.log("plugin","error",o,`Failed to inject ${t}`)}};const a=async(e,t,n)=>{const o=document.createElement("div");o.classList.add(t);o.classList.add("cls-inserted");o.style.minHeight=n+"px";const i=document.querySelectorAll("article p");if((i===null||i===void 0?void 0:i.length)>=e){const t=i[e-1];t.insertAdjacentElement("afterend",o);return o}const r=document.querySelectorAll("section.wp-block-template-part div.entry-content p");if((r===null||r===void 0?void 0:r.length)>=e){const t=r[e-1];t.insertAdjacentElement("afterend",o);return o}return null};const l=()=>{const e=navigator.userAgent;const t=/Tablet|iPad|Playbook|Nook|webOS|Kindle|Android (?!.*Mobile).*Safari/i.test(e);const n=/Mobi|iP(hone|od)|Opera Mini/i.test(e);return n&&!t};const d=async(e,t)=>{const n=Date.now();while(true){const o=document.querySelector(e);if(o){return o}const i=Date.now();if(i-n>=t){throw new Error("Timeout")}await u(200)}};const u=async e=>new Promise((t=>{setTimeout(t,e)}));const m=async(e,t,n,i,r,c)=>{try{const o=await d(e,5e3);const s=c?document.querySelector(`.${n}[data-config="${c}"]`):document.querySelector(`.${n}`);if(o&&!s){const e=document.createElement("div");e.style.minHeight=i+"px";e.style.margin=r;e.classList.add(n);e.classList.add("cls-inserted");if(c){e.dataset.config=c}switch(t){case"after selector":o.insertAdjacentElement("afterend",e);break;case"before selector":o.insertAdjacentElement("beforebegin",e);break;case"first child of selector":o.insertAdjacentElement("afterbegin",e);break;case"last child of selector":o.insertAdjacentElement("beforeend",e);break}return e}}catch(t){console.log("plugin","error",o,`Failed to inject ${n} for selector ${e}`)}return false}})
('','','{\"mainTitle\":\"SAVE THIS RECIPE\",\"saveButtonText\":\"Send\",\"confirmDesc\":\"Thanks so much! The recipe will be in your inbox shortly.\",\"optInText\":\"Sign me up for new recipes\",\"optInDefaultOff\":false,\"cssSelector\":\"#cls-video-container-d7y0fAI6\",\"formIconType\":\"none\"}');

</script>
<!-- [slickstream] END CLS Insertion -->

<meta property='slick:wpversion' content='2.0.3' />
<!-- [slickstream] Bootloader: -->
<script class='slickstream-script'>'use strict';
(async(e,t)=>{if(location.search.indexOf("no-slick")>=0){return}let s;const a=()=>performance.now();let c=window.$slickBoot=window.$slickBoot||{};c.rt=e;c._es=a();c.ev="2.0.1";c.l=async(e,t)=>{try{let c=0;if(!s&&"caches"in self){s=await caches.open("slickstream-code")}if(s){let o=await s.match(e);if(!o){c=a();await s.add(e);o=await s.match(e);if(o&&!o.ok){o=undefined;s.delete(e)}}if(o){const e=o.headers.get("x-slickstream-consent");return{t:c,d:t?await o.blob():await o.json(),c:e||"na"}}}}catch(e){console.log(e)}return{}};const o=e=>new Request(e,{cache:"no-store"});if(!c.d||c.d.bestBy<Date.now()){const s=o(`${e}/d/page-boot-data?site=${t}&url=${encodeURIComponent(location.href.split("#")[0])}`);let{t:i,d:n,c:l}=await c.l(s);if(n){if(n.bestBy<Date.now()){n=undefined}else if(i){c._bd=i;c.c=l}}if(!n){c._bd=a();const e=await fetch(s);const t=e.headers.get("x-slickstream-consent");c.c=t||"na";n=await e.json()}if(n){c.d=n;c.s="embed"}}if(c.d){let e=c.d.bootUrl;const{t:t,d:s}=await c.l(o(e),true);if(s){c.bo=e=URL.createObjectURL(s);if(t){c._bf=t}}else{c._bf=a()}const i=document.createElement("script");i.className="slickstream-script";i.src=e;document.head.appendChild(i)}else{console.log("[slickstream] Boot failed")}})
("https://app.slickstream.com","WU3UBMRZ");
</script>
<!-- [slickstream] END Bootloader -->
<!-- [slickstream] Page Metadata: -->
<meta property="slick:wppostid" content="34193" />
<meta property="slick:featured_image" content="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg" />
<meta property="slick:group" content="post" />
<meta property="slick:category" content="autumn:autumn" />
<meta property=";" content="season:Season" />
<meta property="slick:category" content="carrots:carrots" />
<meta property=";" content="ingredient:Ingredient" />
<meta property="slick:category" content="gluten-free:gluten free" />
<meta property=";" content="dietary:Dietary Preference" />
<meta property="slick:category" content="grain-free:grain-free" />
<meta property=";" content="dietary:Dietary Preference" />
<meta property="slick:category" content="nut-free:nut free" />
<meta property=";" content="dietary:Dietary Preference" />
<meta property="slick:category" content="quick:quick" />
<meta property=";" content="method:Method" />
<meta property="slick:category" content="raw:raw" />
<meta property=";" content="method:Method" />
<meta property="slick:category" content="salad:salad" />
<meta property=";" content="recipe-type:Recipe Type" />
<meta property="slick:category" content="salty:salty" />
<meta property=";" content="flavor:Flavor" />
<meta property="slick:category" content="side-dish:side dish" />
<meta property=";" content="recipe-type:Recipe Type" />
<meta property="slick:category" content="sour:sour" />
<meta property=";" content="flavor:Flavor" />
<meta property="slick:category" content="spring:spring" />
<meta property=";" content="season:Season" />
<meta property="slick:category" content="summer:summer" />
<meta property=";" content="season:Season" />
<meta property="slick:category" content="sweet:sweet" />
<meta property=";" content="flavor:Flavor" />
<meta property="slick:category" content="umami:umami" />
<meta property=";" content="flavor:Flavor" />
<meta property="slick:category" content="vegan:vegan" />
<meta property=";" content="dietary:Dietary Preference" />
<meta property="slick:category" content="winter:winter" />
<meta property=";" content="season:Season" />
<script type="application/x-slickstream+json">{"@context":"https://slickstream.com","@graph":[{"@type":"Plugin","version":"2.0.3"},{"@type":"Site","name":"The First Mess","url":"https://thefirstmess.com","description":"| Vegan recipes &amp; wholesome meals","atomUrl":"https://thefirstmess.com/feed/atom/","rtl":false},{"@type":"WebPage","@id":34193,"isFront":false,"isHome":false,"isCategory":false,"isTag":false,"isSingular":true,"date":"2025-04-23T02:59:00-04:00","modified":"2025-04-22T17:04:13-04:00","title":"Crunchy Snap Peas &amp; Carrots Salad with Sesame Lime Dressing","pageType":"post","postType":"post","featured_image":"https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg","author":"Laura Wright","categories":[{"@id":13,"slug":"autumn","name":"autumn","parents":[{"@type":"CategoryParent","@id":2270,"slug":"season","name":"Season"}]},{"@id":95,"slug":"carrots","name":"carrots","parents":[{"@type":"CategoryParent","@id":3510,"slug":"ingredient","name":"Ingredient"}]},{"@id":9,"slug":"gluten-free","name":"gluten free","parents":[{"@type":"CategoryParent","@id":2271,"slug":"dietary","name":"Dietary Preference"}]},{"@id":309,"slug":"grain-free","name":"grain-free","parents":[{"@type":"CategoryParent","@id":2271,"slug":"dietary","name":"Dietary Preference"}]},{"@id":230,"slug":"nut-free","name":"nut free","parents":[{"@type":"CategoryParent","@id":2271,"slug":"dietary","name":"Dietary Preference"}]},{"@id":21,"slug":"quick","name":"quick","parents":[{"@type":"CategoryParent","@id":2272,"slug":"method","name":"Method"}]},{"@id":26,"slug":"raw","name":"raw","parents":[{"@type":"CategoryParent","@id":2272,"slug":"method","name":"Method"}]},{"@id":8,"slug":"salad","name":"salad","parents":[{"@type":"CategoryParent","@id":2268,"slug":"recipe-type","name":"Recipe Type"}]},{"@id":3047,"slug":"salty","name":"salty","parents":[{"@type":"CategoryParent","@id":3043,"slug":"flavor","name":"Flavor"}]},{"@id":17,"slug":"side-dish","name":"side dish","parents":[{"@type":"CategoryParent","@id":2268,"slug":"recipe-type","name":"Recipe Type"}]},{"@id":3048,"slug":"sour","name":"sour","parents":[{"@type":"CategoryParent","@id":3043,"slug":"flavor","name":"Flavor"}]},{"@id":12,"slug":"spring","name":"spring","parents":[{"@type":"CategoryParent","@id":2270,"slug":"season","name":"Season"}]},{"@id":11,"slug":"summer","name":"summer","parents":[{"@type":"CategoryParent","@id":2270,"slug":"season","name":"Season"}]},{"@id":3046,"slug":"sweet","name":"sweet","parents":[{"@type":"CategoryParent","@id":3043,"slug":"flavor","name":"Flavor"}]},{"@id":3044,"slug":"umami","name":"umami","parents":[{"@type":"CategoryParent","@id":3043,"slug":"flavor","name":"Flavor"}]},{"@id":7,"slug":"vegan","name":"vegan","parents":[{"@type":"CategoryParent","@id":2271,"slug":"dietary","name":"Dietary Preference"}]},{"@id":14,"slug":"winter","name":"winter","parents":[{"@type":"CategoryParent","@id":2270,"slug":"season","name":"Season"}]}],"tags":["avocado","carrots","cilantro","garlic","lime","sesame oil","sesame seeds","snap peas","tamari","thai basil"]}]}</script>
<!-- [slickstream] END Page Metadata -->
<script class='slickstream-script'>
(function() {
    const slickstreamRocketPluginScripts = document.querySelectorAll('script.slickstream-script[type=rocketlazyloadscript]');
    const slickstreamRocketExternalScripts = document.querySelectorAll('script[type=rocketlazyloadscript][src*="app.slickstream.com"]');
    if (slickstreamRocketPluginScripts.length > 0 || slickstreamRocketExternalScripts.length > 0) {
        console.warn('[slickstream]' + ['Slickstream scripts. This ', 'may cause undesirable behavior, ', 'such as increased CLS scores.',' WP-Rocket is deferring one or more ',].sort().join(''));
    }
})();
</script><style type="text/css"> .tippy-box[data-theme~="wprm"] { background-color: #333333; color: #FFFFFF; } .tippy-box[data-theme~="wprm"][data-placement^="top"] > .tippy-arrow::before { border-top-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="bottom"] > .tippy-arrow::before { border-bottom-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="left"] > .tippy-arrow::before { border-left-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="right"] > .tippy-arrow::before { border-right-color: #333333; } .tippy-box[data-theme~="wprm"] a { color: #FFFFFF; } .wprm-comment-rating svg { width: 18px !important; height: 18px !important; } img.wprm-comment-rating { width: 90px !important; height: 18px !important; } body { --comment-rating-star-color: #343434; } body { --wprm-popup-font-size: 16px; } body { --wprm-popup-background: #f0eded; } body { --wprm-popup-title: #23443e; } body { --wprm-popup-content: #23443e; } body { --wprm-popup-button-background: #f0eded; } body { --wprm-popup-button-text: #23443e; }</style><style type="text/css">.wprm-glossary-term {color: #5A822B;text-decoration: underline;cursor: help;}</style>	<style>
		.wprm-recipe-container .adthrive-recipe {
			min-height: 400px !important;
		}
		
		.adthrive-ad.adthrive-content {
			min-height: 400px !important;
		}
	</style>
<link rel="apple-touch-icon" sizes="180x180" href="/wp-content/uploads/fbrfg/apple-touch-icon.png?v=20221026">
<link rel="icon" type="image/png" sizes="32x32" href="/wp-content/uploads/fbrfg/favicon-32x32.png?v=20221026">
<link rel="icon" type="image/png" sizes="16x16" href="/wp-content/uploads/fbrfg/favicon-16x16.png?v=20221026">
<link rel="manifest" href="/wp-content/uploads/fbrfg/site.webmanifest?v=20221026">
<link rel="mask-icon" href="/wp-content/uploads/fbrfg/safari-pinned-tab.svg?v=20221026" color="#5bbad5">
<link rel="shortcut icon" href="/wp-content/uploads/fbrfg/favicon.ico?v=20221026">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/wp-content/uploads/fbrfg/browserconfig.xml?v=20221026">
<meta name="theme-color" content="#ffffff"><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/>
<script data-no-optimize='1' data-cfasync='false' id='cls-disable-ads-2b25b53'>var cls_disable_ads=function(t){"use strict";window.adthriveCLS.buildDate="2025-05-07";const e="Content",i="Recipe";const s=new class{info(t,e,...i){this.call(console.info,t,e,...i)}warn(t,e,...i){this.call(console.warn,t,e,...i)}error(t,e,...i){this.call(console.error,t,e,...i),this.sendErrorLogToCommandQueue(t,e,...i)}event(t,e,...i){var s;"debug"===(null==(s=window.adthriveCLS)?void 0:s.bucket)&&this.info(t,e)}sendErrorLogToCommandQueue(t,e,...i){window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push((()=>{void 0!==window.adthrive.logError&&"function"==typeof window.adthrive.logError&&window.adthrive.logError(t,e,i)}))}call(t,e,i,...s){const o=[`%c${e}::${i} `],a=["color: #999; font-weight: bold;"];s.length>0&&"string"==typeof s[0]&&o.push(s.shift()),a.push(...s);try{Function.prototype.apply.call(t,console,[o.join(""),...a])}catch(t){return void console.error(t)}}},o=t=>{const e=window.location.href;return t.some((t=>new RegExp(t,"i").test(e)))};class a{checkCommandQueue(){this.adthrive&&this.adthrive.cmd&&this.adthrive.cmd.forEach((t=>{const e=t.toString(),i=this.extractAPICall(e,"disableAds");i&&this.disableAllAds(this.extractPatterns(i));const s=this.extractAPICall(e,"disableContentAds");s&&this.disableContentAds(this.extractPatterns(s));const o=this.extractAPICall(e,"disablePlaylistPlayers");o&&this.disablePlaylistPlayers(this.extractPatterns(o))}))}extractPatterns(t){const e=t.match(/["'](.*?)['"]/g);if(null!==e)return e.map((t=>t.replace(/["']/g,"")))}extractAPICall(t,e){const i=new RegExp(e+"\\((.*?)\\)","g"),s=t.match(i);return null!==s&&s[0]}disableAllAds(t){t&&!o(t)||(this.all=!0,this.reasons.add("all_page"))}disableContentAds(t){t&&!o(t)||(this.content=!0,this.recipe=!0,this.locations.add(e),this.locations.add(i),this.reasons.add("content_plugin"))}disablePlaylistPlayers(t){t&&!o(t)||(this.video=!0,this.locations.add("Video"),this.reasons.add("video_page"))}urlHasEmail(t){if(!t)return!1;return null!==/([A-Z0-9._%+-]+(@|%(25)*40)[A-Z0-9.-]+\.[A-Z]{2,})/i.exec(t)}constructor(t){this.adthrive=t,this.all=!1,this.content=!1,this.recipe=!1,this.video=!1,this.locations=new Set,this.reasons=new Set,(this.urlHasEmail(window.location.href)||this.urlHasEmail(window.document.referrer))&&(this.all=!0,this.reasons.add("all_email"));try{this.checkCommandQueue(),null!==document.querySelector(".tag-novideo")&&(this.video=!0,this.locations.add("Video"),this.reasons.add("video_tag"))}catch(t){s.error("ClsDisableAds","checkCommandQueue",t)}}}const n=window.adthriveCLS;return n&&(n.disableAds=new a(window.adthrive)),t.ClsDisableAds=a,t}({});
</script>		<style type="text/css" id="wp-custom-css">
			/* FD - WPRM recipe card print button */
.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-buttons {
	display: block;
}
@media only screen and (max-width: 767px) {
	.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-buttons .wprm-recipe-print {
	font-family: "Levitate", sans-serif;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	text-align: center;
	display: block;
	margin: 30px auto;
	}
}

/* FD LB 2023-02-28 - Font sizing */
.wpb_text_column,
.dmc-content-style-1 {
	font-size: 17px;
	line-height: 1.6;
}
.f-text-default {
	font-size: 17px;
}
.wprm-recipe-template-thefirstmess-template .wprm-recipe-rating .wprm-recipe-rating-details, .dmc-single-post-header .wprm-recipe-rating .wprm-recipe-rating-details {
	font-size: 13px;
}
.posts-nav .post-nav-holder {
	font-size: 14px;
}
.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-footer .wprm-recipe-author-container,
.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-tags-container {
	font-size: 13px;
}
@media only screen and (max-width: 767px) {
		.dmc-button-wrap.style-default .dmc-button {
		font-size: 14px;
	}
	.dmc-single-post.content .dmc-single-post-header .dmc-recipe-buttons {
		font-size: 13px;
	}
}
/* Menu */
@media only screen and (min-width: 1024px) {
	.dmc-header-row-2 .dmc-menu-wrapper {
		font-size: 13px;
	}
}
/* Mobile menu */
.dmc-mm-trig-hold .mm-label {
	font-size: 14px;
}
#dmc-mobile-menu .dmc-menu-wrapper {
	font-size: 15px;
}
/* Footer */
.footer-row-2-2 .dmc-menu-wrapper {
	font-size: 13px;
}
.dmc-copyright-wrapper {
	font-size: 11px;
}
/* Home page */
.levitate_28_lh_41_ls_140_low {
	font-weight: bold;
}
.content-card-2-images .data-term,
.feed-terms-list.style-1,
.dmc-button-wrap.style-long .dmc-button {
	font-size: 14px;
}
.dmc-button-wrap.style-minimal .dmc-button {
	font-size: 13px;
}
.content-card-2-col .data-title, .content-card-3-col .data-title {
	line-height: 1.4;
}
@media only screen and (max-width: 767px) {
	.levitate_28_lh_41_ls_140_low {
		font-size: 17px;
	}
	.taxonomy-description {
		font-size: 15px;
	}
	.dmc-button-wrap.style-simple .dmc-button,
.loader-type-button,
	.dmc-button-wrap.style-long-big .dmc-button {
	font-size: 14px;
}
}
/* Recipe page */
.dmc-bakery-recipe-search .recipe-index-filter .filter-item label {
	font-size: 13px;
}
/* Cookbook page */
.dmc-bakery-cb-locations ul a {
	font-size: 14px;
}

/* FD CU Gallery margins */
figure.wp-block-gallery {
    margin: 2em 0;
}

/* FD CU Recipe card override */
@media only screen and (min-width: 735px) {
	.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container:first-child:nth-last-child(4),
	.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container:first-child:nth-last-child(4) ~ div {
    width: 175px;
	}
}
@media only screen and (min-width: 1024px) {
	.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container:first-child:nth-last-child(4),
	.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container:first-child:nth-last-child(4) ~ div {
    width: 225px;
	}
}

/* FD CU Recipe search mobile fix */
.content-card-3-col {
	margin-right: 0 !important;;
}
.dmc-feed-3-cols {
	justify-content: space-between;
}

/* FD LB 2023-03-16 - Comments */
.comment-form, .comment-list {
	display: block;
}
.comment-respond .comment-form-wprm-rating {
	margin-bottom: 10px;
	padding-left: 15px;
}
.comment-list, .comment-list .children {
	list-style: none;
}
#dmc-comments {
	margin-top: 50px;
}
.dmc-comments-nav h2 {
	font-size: 1.2em;
	margin: 10px 0;
}
.comment-nav {
	margin: 50px 0 20px 0;
	border-top: 1px solid rgba(183, 188, 177, 0.75);
	border-bottom: 1px solid rgba(183, 188, 177, 0.75);
	padding-top: 40px;
	padding-bottom: 50px;
}
.comment-nav-previous {
	width: 50%;
	float: left;
}
.comment-nav-next {
	width: 50%;
	float: right;
	text-align: right;
}
/* FD CU 2023-04-27 post byline */
.data-title-holder span {
	  margin-top: 1em;
    display: block;
    padding-left: 3px;
}
.data-title-holder span a {
	text-decoration: underline;
}

/* FD KG 2023-08-08 - Embedded email opt-in */

.dmc-page-with-sidebar .dmc-pwsb-content-holder {
	z-index: auto;
}


#email-highlight .emailoctopus-form input:not([type=submit]), .newsletter-page-optin .emailoctopus-form input:not([type=submit]) {
	border: 1px solid rgba(183, 188, 177, 0.75) !important;
	border-radius: 0;
	font-family: "Proxima Nova Light", sans-serif;
	font-size: 14px !important;
	letter-spacing: 0.2px;
	padding: 20px 4px 20px 20px;
	color: #23443e;
	background-color: transparent;
	margin-bottom: 20px;
	line-height: 1.53;
	background-color: transparent !important;
}

#email-highlight .emailoctopus-form input[type=submit], .newsletter-page-optin .emailoctopus-form input[type=submit]  {
	border-top: 1px solid rgba(183, 188, 177, 0.75) !important;
	border-bottom: 1px solid rgba(183, 188, 177, 0.75) !important;
	border-left: 0;
	border-right: 0;
	background-color: transparent !important;
	border-radius: 0;
	font-family: "Levitate", sans-serif;
	font-size: 12px !important;
	line-height: 1;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: #23443e !important;
	padding: 20px 10px 18px;
}

.newsletter-page-optin .emailoctopus-form input[type=submit], #email-highlight .emailoctopus-form input[type=submit] {
	width: 100%;
}

.newsletter-page-optin .main-form, #email-highlight .main-form {
	display: block !important;
}

.newsletter-page-optin .form-container {
	max-width: 100% !important;
}

.page-id-26853 .vc_row.about-page-header .wpb_column:nth-child(1) {
	border-bottom: 0;
}

.page-id-26853 .vc_row.about-page-header {
	margin-bottom: 0;
}

@media (min-width: 900px) {
	.newsletter-page-optin .main-form {
		display: flex !important;
	}
	
.newsletter-page-optin .emailoctopus-form input[type=submit] {
	width: 5%;
	padding: 14px 4px;
	}
	
	.newsletter-page-optin .emailoctopus-form input:not([type=submit]) {
		margin-bottom: 0;
	}

}

@media(min-width: 1263px) {
	.dmc-header-row-2 .dmc-col-3 .dmc-menu-wrapper .menu > li {
		margin-right: 40px;
	}
}

/* FD CU pagination */
.archive .nav-links {
	   border-top: 1px solid #b7bcb1bf;
    text-align: center;
    letter-spacing: 2px;
    padding: 20px;
    border-bottom: 1px solid #b7bcb1bf;
}
.archive .nav-links a {
	margin-left: 28px;
}
.archive .ajax-loader-wrapper {
	display: none;
}

/* FD KG 2024-04-10 - WPRM user ratings modal */

header.wprm-popup-modal__header {
	font-family: "Canela Web", sans-serif;
}

textarea.wprm-user-rating-modal-comment {
	border: 1px solid rgba(183, 188, 177, 0.75);
	border-radius: 0 !important;
	font-weight: 300;
	letter-spacing: 0.2px;
}

textarea.wprm-user-rating-modal-comment::placeholder {
	color: #23443e;
}

button.wprm-popup-modal__btn.wprm-user-rating-modal-submit-comment {
	text-transform: uppercase;
	letter-spacing: 1.6px;
	font-size: 13px;
	font-family: "Levitate", sans-serif;
	border-top: 1px solid rgba(183, 188, 177, 0.75);
	border-bottom: 1px solid rgba(183, 188, 177, 0.75);
	padding: 15px;
}

button.wprm-popup-modal__btn.wprm-user-rating-modal-submit-comment:hover, button.wprm-popup-modal__btn.wprm-user-rating-modal-submit-comment:focus {
	transform: none;
	color: #74867f;
}

/* FD LB 2024-04-19 - Breadcrumbs */
.breadcrumbs {
	margin: 30px 0;
	line-height: 1.6;
	text-transform: capitalize;
}

/* FD LB 2024-09-25 - Comment form */
.wprm-user-rating-summary {
	justify-content: center;
	margin-top: 20px;
}
.comment-form .comment-form-wprm-rating {
	margin-top: 10px;
	margin-bottom: 20px;
}
.comment-form .comment-form-comment-subscribe {
	margin: 20px 0;
}
.comment-form .comment-form-comment-subscribe label {
	padding-left: 5px;
	vertical-align: top;
}

@media only screen and (min-width: 768px) {
	.comment-form .comment-form-filed {
	width: calc((100% - 22px) / 2);
	}
}

/* FD LB 2024-11-21 - Page styling */

.has-block-editor .dmc-page-inner {
	max-width: 1202px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
/* Basics */
.has-block-editor .dmc-page-content {
	font-size: 17px;
	line-height: 1.6;		
}
.has-block-editor .dmc-page-content p {
	margin-bottom: 20px;
}

/* Headings */

.has-block-editor .dmc-page-content h1 {
	font-family: "Canela Web", sans-serif;
	font-size: 26px;
	line-height: 1.12;
	letter-spacing: 0;
	margin: 30px 0;
}
.has-block-editor .dmc-page-content h2 {
	font-family: "Canela Web", sans-serif;
	font-size: 22px;
	line-height: 1.4;
	letter-spacing: 0;
	margin-bottom: 20px;
}
.dmc-page-content h3,
.dmc-page-content h4,
.dmc-page-content h5,
.dmc-page-content h6,
.dmc-single-post-content h3, 
.dmc-single-post-content h4,
.dmc-single-post-content h5,
.dmc-single-post-content h6 {
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 20px;
}

/* Lists */

.has-block-editor .dmc-page-content ul,
.has-block-editor .dmc-page-content ol {
	padding-left: 20px;
	margin-bottom: 50px;
}
.has-block-editor .dmc-page-content ul li,
.has-block-editor .dmc-page-content ol li {
	margin-bottom: 8px;
}
.has-block-editor .dmc-page-content ul ul,
.has-block-editor .dmc-page-content ol ol,
.dmc-content-style-1 ul ul,
.dmc-content-style-1 ol ol {
		margin-bottom: 8px;
}

/* Links */

.has-block-editor .dmc-page-content a {
	-webkit-box-shadow: 0 3px 0 0 #dbd2a0, inset 0 0 0 0 #dbd2a0;
    box-shadow: 0 3px 0 0 #dbd2a0, inset 0 0 0 0 #dbd2a0;
    -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
    transition: -webkit-box-shadow 0.2s ease-in-out;
    -o-transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}
.has-block-editor .dmc-page-content a:hover {
	    color: #23443e;
    -webkit-box-shadow: 0 3px 0 0 #dbd2a0, inset 0 -20px 0 0 #dbd2a0;
    box-shadow: 0 3px 0 0 #dbd2a0, inset 0 -20px 0 0 #dbd2a0;
}

/* Blocks */

.wp-block-separator {
	border-top: 1px solid rgba(183, 188, 177, 0.75);
	margin: 30px 0;
}

/* Media queries */

@media only screen and (min-width: 768px) {
	
	.has-block-editor .dmc-page-inner {
		padding-left: 40px;
		padding-right: 40px;
	}
	.has-block-editor .dmc-page-content p {
	margin-bottom: 35px;
	}
	.has-block-editor .dmc-page-content h1 {
		font-size: 34px;
	}
	.has-block-editor .dmc-page-content h2 {
		font-size: 28px;
	}
	
}

@media only screen and (min-width: 1064px) {
	
	.has-block-editor .dmc-page-content h1 {
		font-size: 50px;
	}
		.has-block-editor .dmc-page-content h2 {
		font-size: 36px;
	}
	
}

@media only screen and (min-width: 1263px) {
	
	.has-block-editor .dmc-page-inner {
		padding-left: 80px;
		padding-right: 80px;
		max-width: 1122px;
	}
	
}		</style>
		<noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript><noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript><style id="rocket-lazyrender-inline-css">[data-wpr-lazyrender] {content-visibility: auto;}</style><meta name="generator" content="WP Rocket 3.18.3" data-wpr-features="wpr_delay_js wpr_defer_js wpr_minify_js wpr_lazyload_images wpr_lazyload_iframes wpr_automatic_lazy_rendering wpr_oci wpr_minify_css wpr_desktop wpr_dns_prefetch" /></head>
<body class="post-template-default single single-post postid-34193 single-format-standard not-admin wpb-js-composer js-comp-ver-8.4.1 vc_responsive">
        <div class="dmc-body-inner">
        <header id="dmc-main-header">
            <div class="dmc-header-row-1 dmc-sticky-nav">
                <div class="dmc-header-row-inner dmc-width-main dmc-padding-main">
                    <div class="dmc-col-1">
	                                            <h1 class="dmc-logo-main"><a href="/" class="dmc-image-holder">    <picture class="dmc-image-picture type-fluid">
		<source media="(min-width: 1024px)" srcset="https://thefirstmess.com/wp-content/uploads/fly-images/22605/the-first-mess-main-logo-0x24.png, https://thefirstmess.com/wp-content/uploads/fly-images/22605/the-first-mess-main-logo-0x48.png 2x"><source srcset="https://thefirstmess.com/wp-content/uploads/fly-images/22605/the-first-mess-main-logo-0x14.png, https://thefirstmess.com/wp-content/uploads/fly-images/22605/the-first-mess-main-logo-0x28.png 2x"><img width="202" height="14" src="https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-main-logo-620x43.png" class="attachment-0x14 size-0x14" alt="" decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-main-logo-620x43.png 620w, https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-main-logo-64x4.png 64w, https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-main-logo-128x9.png 128w, https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-main-logo.png 690w" sizes="(max-width: 202px) 100vw, 202px" />    </picture>
	</a></h1>
                    </div>
                    <div class="dmc-col-2">
	                        <div class="dmc-menu-wrapper style-horizontal">
        <nav class="dmc-menu dmc-menu-sticky-menu" role="navigation" aria-label="Sticky Menu"><div class="menu-sticky-menu-container"><ul id="menu-sticky-menu" class="menu"><li id="menu-item-22665" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22665"><a href="https://thefirstmess.com/recipes/">Recipe Search</a></li>
<li id="menu-item-22666" class="menu-item menu-item-type-post_type menu-item-object-cookbook menu-item-22666"><a href="https://thefirstmess.com/cookbook/the-first-mess-cookbook/">My Cookbook</a></li>
</ul></div></nav>    </div>
                            <div class="dmc-mm-trig-hold">
                            <div class="dmc-mm-trig">
                                <div class="mm-label">Menu</div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="dmc-header-row-2">
                <div class="dmc-header-row-inner dmc-width-main dmc-padding-main">
                    <div class="dmc-col-1">
	                        <div class="dmc-menu-wrapper style-horizontal">
        <nav class="dmc-menu dmc-menu-main-menu-1" role="navigation" aria-label="Main Menu 1"><div class="menu-main-menu-1-container"><ul id="menu-main-menu-1" class="menu"><li id="menu-item-22647" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-22647"><a href="https://thefirstmess.com/">Home</a></li>
<li id="menu-item-22650" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22650"><a href="https://thefirstmess.com/recipes/">Recipes</a></li>
<li id="menu-item-22649" class="menu-item menu-item-type-post_type menu-item-object-cookbook menu-item-22649"><a href="https://thefirstmess.com/cookbook/the-first-mess-cookbook/">Cookbook</a></li>
</ul></div></nav>    </div>
                        </div>
                    <div class="dmc-col-2">
	                                <form role="search" method="get" class="dmc-search-form searchform style-default" action="https://thefirstmess.com/" >
                <div class="dmc-search-input-wrap">
					            <i class="dmc-icon dmc-icon-64 dmc-icon-wrap dmc-icon-theme dmc-icon-search" aria-label="Search"></i>
                                <input placeholder="Search by keyword" type="text" value="" name="s" />
                </div>
            </form>
			                    </div>
                    <div class="dmc-col-3">
	                        <div class="dmc-menu-wrapper style-horizontal style-dropdown">
        <nav class="dmc-menu dmc-menu-main-menu-2" role="navigation" aria-label="Main Menu 2"><div class="menu-main-menu-2-container"><ul id="menu-main-menu-2" class="menu"><li id="menu-item-26084" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-26084"><a href="https://thefirstmess.com/recipes/">Categories</a>
<ul class="sub-menu">
	<li id="menu-item-22717" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22717"><a href="https://thefirstmess.com/category/recipe-type/appetizer/">appetizer</a></li>
	<li id="menu-item-22726" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22726"><a href="https://thefirstmess.com/category/season/autumn/">autumn</a></li>
	<li id="menu-item-22718" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22718"><a href="https://thefirstmess.com/category/recipe-type/beverage/">beverage</a></li>
	<li id="menu-item-22719" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22719"><a href="https://thefirstmess.com/category/recipe-type/breakfast/">breakfast</a></li>
	<li id="menu-item-22712" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22712"><a href="https://thefirstmess.com/category/dietary/gluten-free/">gluten free</a></li>
	<li id="menu-item-22713" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22713"><a href="https://thefirstmess.com/category/dietary/grain-free/">grain-free</a></li>
	<li id="menu-item-22727" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22727"><a href="https://thefirstmess.com/category/season/holidays/">holidays</a></li>
	<li id="menu-item-22720" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22720"><a href="https://thefirstmess.com/category/recipe-type/dessert/">dessert</a></li>
	<li id="menu-item-22721" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22721"><a href="https://thefirstmess.com/category/recipe-type/main-course/">main course</a></li>
	<li id="menu-item-22714" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22714"><a href="https://thefirstmess.com/category/dietary/nut-free/">nut free</a></li>
	<li id="menu-item-22716" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22716"><a href="https://thefirstmess.com/category/method/quick/">quick</a></li>
	<li id="menu-item-22715" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22715"><a href="https://thefirstmess.com/category/dietary/refined-sugar-free/">refined sugar-free</a></li>
	<li id="menu-item-22722" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22722"><a href="https://thefirstmess.com/category/recipe-type/salad/">salad</a></li>
	<li id="menu-item-22723" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22723"><a href="https://thefirstmess.com/category/recipe-type/sauce/">sauce</a></li>
	<li id="menu-item-22724" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22724"><a href="https://thefirstmess.com/category/recipe-type/side-dish/">side dish</a></li>
	<li id="menu-item-22725" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22725"><a href="https://thefirstmess.com/category/recipe-type/soup/">soup</a></li>
	<li id="menu-item-22656" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22656"><a href="https://thefirstmess.com/category/season/spring/">spring</a></li>
	<li id="menu-item-22729" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22729"><a href="https://thefirstmess.com/category/season/summer/">summer</a></li>
	<li id="menu-item-22730" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22730"><a href="https://thefirstmess.com/category/season/winter/">winter</a></li>
</ul>
</li>
<li id="menu-item-22657" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-22657"><a href="https://thefirstmess.com/about/">About</a>
<ul class="sub-menu">
	<li id="menu-item-22658" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22658"><a target="_blank" href="mailto:laura@thefirstmess.com">Contact</a></li>
</ul>
</li>
<li id="menu-item-26872" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-26872"><a href="https://thefirstmess.com/newsletter/">Newsletter</a></li>
</ul></div></nav>    </div>
                        </div>
                </div>
            </div>
        </header>
        <div id="dmc-mobile-menu">
            <div class="dmc-mobile-menu-in">
                <div class="dmc-mm-in-in">
	                    <div class="dmc-menu-wrapper">
        <nav class="dmc-menu dmc-menu-mobile-menu" role="navigation" aria-label="Mobile Menu"><div class="menu-mobile-menu-container"><ul id="menu-mobile-menu" class="menu"><li id="menu-item-22659" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-22659"><a href="https://thefirstmess.com/">Home</a></li>
<li id="menu-item-22660" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22660"><a href="https://thefirstmess.com/recipes/">Recipes</a></li>
<li id="menu-item-22661" class="menu-item menu-item-type-post_type menu-item-object-cookbook menu-item-22661"><a href="https://thefirstmess.com/cookbook/the-first-mess-cookbook/">Cookbook</a></li>
<li id="menu-item-22663" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22663"><a href="https://thefirstmess.com/about/">About</a></li>
<li id="menu-item-26873" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-26873"><a href="https://thefirstmess.com/newsletter/">Newsletter</a></li>
<li id="menu-item-22664" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22664"><a target="_blank" href="mailto:laura@thefirstmess.com">Contact</a></li>
</ul></div></nav>    </div>
                <form role="search" method="get" class="dmc-search-form searchform style-default" action="https://thefirstmess.com/" >
                <div class="dmc-search-input-wrap">
					            <i class="dmc-icon dmc-icon-64 dmc-icon-wrap dmc-icon-theme dmc-icon-search" aria-label="Search"></i>
                                <input placeholder="Search by keyword" type="text" value="" name="s" />
                </div>
            </form>
			    <div class="dmc-menu-wrapper">
        <nav class="dmc-menu dmc-menu-footer-menu-3" role="navigation" aria-label="Footer Menu 3"><div class="menu-footer-menu-3-container"><ul id="menu-footer-menu-3" class="menu"><li id="menu-item-22673" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22673"><a target="_blank" href="https://www.pinterest.ca/thefirstmess/">Pinterest</a></li>
<li id="menu-item-22674" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22674"><a href="https://www.instagram.com/thefirstmess/">Instagram</a></li>
<li id="menu-item-22675" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22675"><a href="https://www.facebook.com/thefirstmess">Facebook</a></li>
</ul></div></nav>    </div>
                    </div>
            </div>
        </div>
            <div id="dmc-single-post" class="single-post-type-post">
        <div class="dmc-single-post-inner">
							<div class="dmc-single-post-wrapper">
    <article class="dmc-single-post content">
        <div class="dmc-single-post-article-inner dmc-width-main dmc-padding-main">
            <div class="dmc-page-with-sidebar">
                <div class="dmc-pwsb-content-holder">
                    <div class="dmc-single-post-header">
	                    						
						<div class="breadcrumbs"><span><span><a href="https://thefirstmess.com/">Home</a></span> » <span><a href="https://thefirstmess.com/recipes/">Recipes</a></span> » <span><a href="https://thefirstmess.com/category/recipe-type/side-dish/">side dish</a></span></span></div>						
                        <div class="data-title-holder">
                            <h1 class="data-title">Crunchy Snap Peas &amp; Carrots Salad with Sesame Lime Dressing</h1>
							<span>Created by <a href="https://thefirstmess.com/about/" title="Visit Laura Wright&#8217;s website" rel="author external">Laura Wright</a>  
							<em>— Published 23/04/2025</em> 								
							</span>
                        </div>
	                                                <div class="dmc-recipe-buttons">
                                <div class="button-wrapper">
                                    <a href="#recipe" class="dmc-jump-to-recipe">Jump to Recipe</a>
                                </div>
                                <div class="separator"></div>
                                <div class="button-wrapper">
	                                <a href="https://www.pinterest.com/pin/create/bookmarklet/?url=https%3A%2F%2Fthefirstmess.com%2F2025%2F04%2F23%2Fsnap-peas-carrots-salad-sesame-lime-dressing%2F&amp;media=https%3A%2F%2Fthefirstmess.com%2Fwp-content%2Fuploads%2F2025%2F04%2Fpinterest-crunchy-snap-peas-and-carrots-salad.jpg&amp;description=Crunchy+Snap+Peas+%26amp%3B+Carrots+Salad+with+Sesame+Lime+Dressing&amp;is_video=false" style="color: #333333;" class="wprm-recipe-pin wprm-recipe-link wprm-block-text-normal" target="_blank" rel="nofollow noopener" data-recipe="34191" data-url="https://thefirstmess.com/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/" data-media="https://thefirstmess.com/wp-content/uploads/2025/04/pinterest-crunchy-snap-peas-and-carrots-salad.jpg" data-description="Crunchy Snap Peas &amp; Carrots Salad with Sesame Lime Dressing" data-repin="" role="button">Pin Recipe</a>                                </div>
                            </div>
		                    <style>#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-full svg * { fill: #343434; }#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-33 svg * { fill: url(#wprm-recipe-user-rating-0-33); }#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-50 svg * { fill: url(#wprm-recipe-user-rating-0-50); }#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-66 svg * { fill: url(#wprm-recipe-user-rating-0-66); }linearGradient#wprm-recipe-user-rating-0-33 stop { stop-color: #343434; }linearGradient#wprm-recipe-user-rating-0-50 stop { stop-color: #343434; }linearGradient#wprm-recipe-user-rating-0-66 stop { stop-color: #343434; }</style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><linearGradient id="wprm-recipe-user-rating-0-33"><stop offset="0%" stop-opacity="1" /><stop offset="33%" stop-opacity="1" /><stop offset="33%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-user-rating-0-50"><stop offset="0%" stop-opacity="1" /><stop offset="50%" stop-opacity="1" /><stop offset="50%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-user-rating-0-66"><stop offset="0%" stop-opacity="1" /><stop offset="66%" stop-opacity="1" /><stop offset="66%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs></svg><div id="wprm-recipe-user-rating-0" class="wprm-recipe-rating wprm-recipe-rating-recipe-34191 wprm-user-rating wprm-recipe-rating-inline wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="34191" data-average="0" data-count="0" data-total="0" data-user="0" data-decimals="2"data-modal-uid="user-rating"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-empty" data-rating="1" data-color="#343434" role="button" tabindex="0" aria-label="Rate this recipe 1 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g  transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-empty" data-rating="2" data-color="#343434" role="button" tabindex="0" aria-label="Rate this recipe 2 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g  transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-empty" data-rating="3" data-color="#343434" role="button" tabindex="0" aria-label="Rate this recipe 3 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g  transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-empty" data-rating="4" data-color="#343434" role="button" tabindex="0" aria-label="Rate this recipe 4 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g  transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-empty" data-rating="5" data-color="#343434" role="button" tabindex="0" aria-label="Rate this recipe 5 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g  transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal">No ratings yet</div></div>                            <div class="data-short-description f-text-proxima-24">A fresh and vibrant vegan side salad! The sweetness of crunchy snap peas and carrots is beautifully complimented with creamy avocado and a robust sesame lime dressing. Prepped in 30 minutes or less.</div>
                                                </div>
                    <div class="dmc-single-post-content dmc-post-editor">
                        <div class="dmc-content-inner dmc-frizzly-active dmc-content-style-1"><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><figure class="wp-block-image size-post"><img fetchpriority="high" decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04-740x925.jpg" alt="An overhead shot shows a crunchy shredded snap peas and carrots salad with chunks of avocado on top. The salad is dressed with a sesame, lime and garlic dressing. Chopped cilantro, Thai basil, and toasted sesame seeds fleck the salad throughout." class="remove-lazy wp-image-34183" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-04.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></figure>



<p>This fresh and crunchy snap peas and carrots salad is the perfect accompaniment to whatever <a href="https://thefirstmess.com/category/recipe-type/main-course/">main course</a> you&rsquo;re serving up. The dressing has toasted sesame oil, fresh garlic, lime zest and juice, spices, and a hint of maple syrup for sweetness. When drizzled over the julienned <a href="https://thefirstmess.com/category/carrots/">carrots</a>, sliced snap peas, and creamy avocado, the combination is just so satisfying. No cooking is needed, so this <a href="https://thefirstmess.com/category/recipe-type/salad/">vibrant vegan salad</a> is ready in about 30 minutes.</p>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An up close, overhead shot shows a crunchy shredded snap peas and carrots salad with chunks of avocado on top. The salad is dressed with a sesame, lime and garlic dressing. Chopped cilantro, Thai basil, and toasted sesame seeds fleck the salad throughout." class="wp-image-34181" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-740x925.jpg" alt="An up close, overhead shot shows a crunchy shredded snap peas and carrots salad with chunks of avocado on top. The salad is dressed with a sesame, lime and garlic dressing. Chopped cilantro, Thai basil, and toasted sesame seeds fleck the salad throughout." class="wp-image-34181" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-02.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows ingredients for a salad: carrots, snap peas, sesame oil, Tamari, avocado, cilantro, Thai basil, avocado oil, cumin, coriander, sesame seeds, lime, salt, and pepper. All ingredients are shown on a rough wood cutting board." class="wp-image-34189" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-740x925.jpg" alt="An overhead shot shows ingredients for a salad: carrots, snap peas, sesame oil, Tamari, avocado, cilantro, Thai basil, avocado oil, cumin, coriander, sesame seeds, lime, salt, and pepper. All ingredients are shown on a rough wood cutting board." class="wp-image-34189" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-10.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows: a small bowl of chopped herbs, a medium bowl of sliced raw snap peas, a large bowl of julienned raw carrots." class="wp-image-34186" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-740x925.jpg" alt="An overhead shot shows: a small bowl of chopped herbs, a medium bowl of sliced raw snap peas, a large bowl of julienned raw carrots." class="wp-image-34186" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-07.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<p>This is a new favorite in our household. Snap peas and carrots are both slightly sweet and so crunchy! The dressing has that classic nutty sesame flavor as well as a punch of garlic, Tamari, maple, and spices like cumin and coriander. I find the salad to be an especially good foil for <a href="https://thefirstmess.com/2019/06/19/best-marinated-grilled-tempeh-recipe/">marinated and grilled tempeh</a> or <a href="https://thefirstmess.com/2025/04/02/air-fryer-edamame-crispy/">air fryer edamame</a>.</p>



<p>The most time-consuming part of this snap peas and carrots salad is cutting the vegetables. Slicing the veg and shaking up the dressing takes about 30 minutes. You absolutely can cut down on the prep time by substituting a bag of matchstick carrots from the grocery store!</p>



<p>When I&rsquo;m referring to snap peas, I&rsquo;m referring to sugar snap peas. They have edible pods and are crunchy and sweet. I think folks sometimes confuse them with snow peas, which are flat. The key difference: snap peas have puffed up pods and really bring the crunchy factor! A great explainer from The Kitchn can be found <a href="https://www.thekitchn.com/whats-the-difference-between-snow-peas-sugar-snap-peas-and-english-peas-ingredient-intelligence-205118" target="_blank" rel="noreferrer noopener">here</a>. For this salad, I like to cut the ends off the snap peas and then slice them thinly.</p>



<p>When testing this recipe in my kitchen, I made a couple versions with rainbow carrots that were particularly striking. If you can find them, I recommend using them!</p>



<p>Fans of this vibrant plant based side salad will definitely also enjoy my shredded <a href="https://thefirstmess.com/2024/03/20/fresh-shredded-snap-pea-salad-lemon-mint/">snap pea salad</a> with lemon, mint, and radishes.</p>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" data-id="34188" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows ingredients for a sesame lime dressing: Tamari, lime juice, lime zest, sesame oil, garlic, cumin, coriander, salt, pepper, and avocado oil." class="wp-image-34188" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" data-id="34188" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-740x925.jpg" alt="An overhead shot shows ingredients for a sesame lime dressing: Tamari, lime juice, lime zest, sesame oil, garlic, cumin, coriander, salt, pepper, and avocado oil." class="wp-image-34188" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-09.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" data-id="34187" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows a jar with a sesame lime dressing inside. A spoon is sticking out of the jar." class="wp-image-34187" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" data-id="34187" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-740x925.jpg" alt="An overhead shot shows a jar with a sesame lime dressing inside. A spoon is sticking out of the jar." class="wp-image-34187" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-08.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>
</figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows a salad dressing being poured over finely sliced vegetables and herbs in a mixing bowl." class="wp-image-34185" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-740x925.jpg" alt="An overhead shot shows a salad dressing being poured over finely sliced vegetables and herbs in a mixing bowl." class="wp-image-34185" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-06.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-large"><img decoding="async" width="940" height="1175" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20940%201175'%3E%3C/svg%3E" alt="An overhead shot shows a mixing bowl filled with dressed julienned carrots and sliced snap peas. Tongs are sticking out of the bowl." class="wp-image-34184" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05.jpg 1480w" data-lazy-sizes="(max-width: 940px) 100vw, 940px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-940x1175.jpg" /><noscript><img decoding="async" width="940" height="1175" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-940x1175.jpg" alt="An overhead shot shows a mixing bowl filled with dressed julienned carrots and sliced snap peas. Tongs are sticking out of the bowl." class="wp-image-34184" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-05.jpg 1480w" sizes="(max-width: 940px) 100vw, 940px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows a crunchy shredded snap peas and carrots salad with chunks of avocado on top. The salad is dressed with a sesame, lime and garlic dressing. Chopped cilantro, Thai basil, and toasted sesame seeds fleck the salad throughout." class="wp-image-34182" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-740x925.jpg" alt="An overhead shot shows a crunchy shredded snap peas and carrots salad with chunks of avocado on top. The salad is dressed with a sesame, lime and garlic dressing. Chopped cilantro, Thai basil, and toasted sesame seeds fleck the salad throughout." class="wp-image-34182" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows a crunchy shredded snap peas and carrots salad with chunks of avocado on top. The salad is dressed with a sesame, lime and garlic dressing. Chopped cilantro, Thai basil, and toasted sesame seeds fleck the salad throughout. The salad is on a platter with a fork and spoon for tongs presented on the side of the plate." class="wp-image-34180" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-740x925.jpg" alt="An overhead shot shows a crunchy shredded snap peas and carrots salad with chunks of avocado on top. The salad is dressed with a sesame, lime and garlic dressing. Chopped cilantro, Thai basil, and toasted sesame seeds fleck the salad throughout. The salad is on a platter with a fork and spoon for tongs presented on the side of the plate." class="wp-image-34180" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-01.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>


<div id="recipe"></div><div id="wprm-recipe-container-34191" class="wprm-recipe-container" data-recipe-id="34191" data-servings="4"><div class="wprm-recipe wprm-recipe-template-thefirstmess-template"><div class="dmc-recipe-card-inner dmc-width-main dmc-padding-main">
    <div class="dmc-wprm-row-1">
        <div class="dmc-wprm-col-1">
            <h2 class="wprm-recipe-name wprm-block-text-normal">Crunchy Snap Peas &amp; Carrots Salad with Sesame Lime Dressing</h2>
            <div class="wprm-recipe-summary wprm-block-text-normal"><span style="display: block;">This fresh and crunchy snap peas and carrots salad is a vibrant vegan side. The dressing has toasted sesame oil, fresh garlic, lime zest/juice, spices, and a hint of maple syrup for sweetness. The vegetables, dressing, and creamy avocado work in beautiful harmony! Ready in 30 minutes.</span></div>
            <style>#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-full svg * { fill: #343434; }#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-33 svg * { fill: url(#wprm-recipe-user-rating-1-33); }#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-50 svg * { fill: url(#wprm-recipe-user-rating-1-50); }#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-66 svg * { fill: url(#wprm-recipe-user-rating-1-66); }linearGradient#wprm-recipe-user-rating-1-33 stop { stop-color: #343434; }linearGradient#wprm-recipe-user-rating-1-50 stop { stop-color: #343434; }linearGradient#wprm-recipe-user-rating-1-66 stop { stop-color: #343434; }</style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><lineargradient id="wprm-recipe-user-rating-1-33"><stop offset="0%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-user-rating-1-50"><stop offset="0%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-user-rating-1-66"><stop offset="0%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs></svg><div id="wprm-recipe-user-rating-1" class="wprm-recipe-rating wprm-recipe-rating-recipe-34191 wprm-user-rating wprm-recipe-rating-inline wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="34191" data-average="0" data-count="0" data-total="0" data-user="0" data-decimals="2" data-modal-uid="user-rating"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-empty" data-rating="1" data-color="#343434" role="button" tabindex="0" aria-label="Rate this recipe 1 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-empty" data-rating="2" data-color="#343434" role="button" tabindex="0" aria-label="Rate this recipe 2 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-empty" data-rating="3" data-color="#343434" role="button" tabindex="0" aria-label="Rate this recipe 3 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-empty" data-rating="4" data-color="#343434" role="button" tabindex="0" aria-label="Rate this recipe 4 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-empty" data-rating="5" data-color="#343434" role="button" tabindex="0" aria-label="Rate this recipe 5 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal">No ratings yet</div></div>
        </div>
        <div class="dmc-wprm-col-2">
            <div class="wprm-recipe-image wprm-block-image-normal"><img decoding="async" style="border-width: 0px;border-style: solid;border-color: #666666;" width="240" height="300" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20240%20300'%3E%3C/svg%3E" class="attachment-300x300 size-300x300" alt="An overhead shot shows a crunchy shredded snap peas and carrots salad with chunks of avocado on top. The salad is dressed with a sesame, lime and garlic dressing. Chopped cilantro, Thai basil, and toasted sesame seeds fleck the salad throughout." data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg 1480w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-860x1076.jpg 860w" data-lazy-sizes="(max-width: 240px) 100vw, 240px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg"><noscript><img decoding="async" style="border-width: 0px;border-style: solid;border-color: #666666;" width="240" height="300" src="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg" class="attachment-300x300 size-300x300" alt="An overhead shot shows a crunchy shredded snap peas and carrots salad with chunks of avocado on top. The salad is dressed with a sesame, lime and garlic dressing. Chopped cilantro, Thai basil, and toasted sesame seeds fleck the salad throughout." srcset="https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03.jpg 1480w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/04/crunchy-snap-peas-and-carrots-salad-03-860x1076.jpg 860w" sizes="(max-width: 240px) 100vw, 240px"></noscript></div>
        </div>
    </div>
    <div class="dmc-wprm-buttons">
        <a href="https://thefirstmess.com/wprm_print/crunchy-snap-peas-carrots-salad-with-sesame-lime-dressing" style="color: #333333;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-normal" data-recipe-id="34191" data-template="" target="_blank" rel="nofollow">Print Recipe</a>
    </div>
    <div class="dmc-wprm-row-2">
        <div class="wprm-recipe-meta-container wprm-recipe-times-container wprm-recipe-details-container wprm-recipe-details-container-separate wprm-block-text-normal" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-time-container wprm-recipe-prep-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-prep-time-label">Prep Time: </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-prep_time wprm-recipe-prep_time-minutes">30<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-prep_time-unit wprm-recipe-prep_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-time-container wprm-recipe-total-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-total-time-label">Total Time: </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-total_time wprm-recipe-total_time-minutes">30<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-total_time-unit wprm-recipe-total_timeunit-minutes" aria-hidden="true">mins</span></span></div></div>
        <div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-servings-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-servings-label">Servings </span><span class="wprm-recipe-servings wprm-recipe-details wprm-recipe-servings-34191 wprm-recipe-servings-adjustable-tooltip wprm-block-text-normal" data-recipe="34191" aria-label="Adjust recipe servings">4</span></div>
    </div>
    <div class="dmc-wprm-row-3">
        <div class="dmc-wprm-col-1">
            <div class="wprm-recipe-ingredients-container wprm-recipe-ingredients-no-images wprm-recipe-34191-ingredients-container wprm-block-text-normal wprm-ingredient-style-regular wprm-recipe-images-before" data-recipe="34191" data-servings="4"><h3 class="wprm-recipe-header wprm-recipe-ingredients-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Ingredients</h3><div class="wprm-recipe-ingredient-group"><h4 class="wprm-recipe-group-name wprm-recipe-ingredient-group-name wprm-block-text-normal">Sesame Lime Dressing</h4><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="1"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">lime zest</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="2"><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">tablespoons</span> <span class="wprm-recipe-ingredient-name">lime juice</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="3"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">clove</span> <span class="wprm-recipe-ingredient-name">garlic, finely minced with a Microplane</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="4"><span class="wprm-recipe-ingredient-amount">&frac12;</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">ground cumin</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="5"><span class="wprm-recipe-ingredient-amount">&frac12;</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">ground coriander</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="6"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">Tamari soy sauce</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="7"><span class="wprm-recipe-ingredient-amount">1-3</span> <span class="wprm-recipe-ingredient-unit">teaspoons</span> <span class="wprm-recipe-ingredient-name">maple syrup</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">(see note)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="8"><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">teaspoons</span> <span class="wprm-recipe-ingredient-name">toasted sesame oil</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="9"><span class="wprm-recipe-ingredient-name">sea salt and ground black pepper, to taste</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="10"><span class="wprm-recipe-ingredient-amount">&#8531;</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">avocado oil</span></li></ul></div><div class="wprm-recipe-ingredient-group"><h4 class="wprm-recipe-group-name wprm-recipe-ingredient-group-name wprm-block-text-normal">Salad</h4><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="12"><span class="wprm-recipe-ingredient-amount">350</span> <span class="wprm-recipe-ingredient-unit">grams</span> <span class="wprm-recipe-ingredient-name">carrots</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">(about 3 medium)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="13"><span class="wprm-recipe-ingredient-amount">227</span> <span class="wprm-recipe-ingredient-unit">grams</span> <span class="wprm-recipe-ingredient-name">snap peas</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="14"><span class="wprm-recipe-ingredient-amount">&#8531;</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">cilantro/Thai basil leaves</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">(or a combination of both)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="15"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">tablespoon</span> <span class="wprm-recipe-ingredient-name">toasted sesame seeds</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="16"><span class="wprm-recipe-ingredient-name">sea salt and ground black pepper, to taste</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="17"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">medium</span> <span class="wprm-recipe-ingredient-name">ripe avocado</span></li></ul></div></div>
            
            <div class="wprm-recipe-notes-container wprm-block-text-normal"><h3 class="wprm-recipe-header wprm-recipe-notes-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Notes</h3><div class="wprm-recipe-notes"><ul>
<li>I personally like a little extra sweetness whenever I&rsquo;m using toasted sesame oil, so I use the full 3 teaspoons of maple syrup listed. For those who enjoy sweetness less but still want a balanced dressing, go for 1 teaspoon.</li>
<li>Using bagged matchstick carrots from the grocery store will cut your prep time in half here.</li>
</ul></div></div>
        </div>
        <div class="dmc-wprm-col-2">
            <div class="wprm-recipe-instructions-container wprm-recipe-34191-instructions-container wprm-block-text-normal" data-recipe="34191"><h3 class="wprm-recipe-header wprm-recipe-instructions-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Instructions</h3><div class="wprm-recipe-instruction-group"><ul class="wprm-recipe-instructions"><li id="wprm-recipe-34191-step-0-0" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">Make the dressing. In a sealable jar, combine the lime zest, lime juice, garlic, cumin, coriander, Tamari, maple syrup, toasted sesame oil, salt, pepper, and avocado oil. Close the lid on the jar tightly and shake until combined. Set aside.</div></li><li id="wprm-recipe-34191-step-0-1" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">Peel the carrots and then julienne them into little matchsticks before placing in a large bowl. Remove the ends of the snap peas and then slice them thinly before adding to the bowl. Roughly chop the herbs and then add them to the bowl as well. Finally, add the sesame seeds, salt, pepper, and the dressing to the bowl.</div></li><li id="wprm-recipe-34191-step-0-2" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">Toss the salad to combine before transferring to your platter of choice. Peel and pit the avocado and then cut the flesh into cubes. Evenly place the avocado on top of the salad. If there&rsquo;s any dressing lingering at the bottom of the bowl, spoon it over the avocado.</div></li><li id="wprm-recipe-34191-step-0-3" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">Serve the salad right away and enjoy!</div></li></ul></div></div>
        </div>
    </div>
    <div class="dmc-wprm-footer">
        <div class="dmc-wprm-col-1">
            <div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-author-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-author-label">Author: </span><span class="wprm-recipe-details wprm-recipe-author wprm-block-text-normal"><a href="https://thefirstmess.com/about/" target="_self">Laura Wright</a></span></div>
        </div>
        <div class="dmc-wprm-col-2">
            <div class="wprm-recipe-meta-container wprm-recipe-tags-container wprm-recipe-details-container wprm-recipe-details-container-separate wprm-block-text-normal" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-course-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-tag-label wprm-recipe-course-label">Course: </span><span class="wprm-recipe-course wprm-block-text-normal"><a href="https://thefirstmess.com/category/recipe-type/salad/" class="wprm-recipe-term-link">Salad</a>, <a href="https://thefirstmess.com/category/recipe-type/side-dish/" class="wprm-recipe-term-link">Side Dish</a></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-suitablefordiet-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-tag-label wprm-recipe-suitablefordiet-label">Diet: </span><span class="wprm-recipe-suitablefordiet wprm-block-text-normal"><a href="https://thefirstmess.com/category/dietary/gluten-free/" class="wprm-recipe-term-link">Gluten Free</a>, <a href="https://thefirstmess.com/category/dietary/vegan/" class="wprm-recipe-term-link">Vegan</a></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-keyword-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-tag-label wprm-recipe-keyword-label">Keyword: </span><span class="wprm-recipe-keyword wprm-block-text-normal">30 minutes, avocado, avocado oil, carrots, cilantro, coriander, cumin, fall, garlic, lime, maple syrup, quick, sesame oil, sesame seeds, snap peas, spring, summer, tamari, Thai basil, winter</span></div></div>
        </div>
    </div>
</div></div></div><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"rayId":"93e737a36d0d255a","version":"2025.4.0-1-g37f21b1","serverTiming":{"name":{"cfExtPri":true,"cfL4":true,"cfSpeedBrain":true,"cfCacheStatus":true}},"token":"0b76b5f4e0f349ecb0579776e4f33faa","b":1}' crossorigin="anonymous"></script>
</body></html>
</div>
                    </div>
                    <div class="dmc-single-post-pre-footer">
                        <div class="data-date-holder">
                            <span class="data-date">23/04/2025</span>
			                                                <span class="data-date-modified"></span>
				                                        </div>
		                                            <div class="data-post-terms">
                                <span class="label">Posted in: </span>
				                                                    <a class="term" href="https://thefirstmess.com/category/season/autumn/">autumn</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/ingredient/carrots/">carrots</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/dietary/gluten-free/">gluten free</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/dietary/grain-free/">grain-free</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/dietary/nut-free/">nut free</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/method/quick/">quick</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/method/raw/">raw</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/recipe-type/salad/">salad</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/flavor/salty/">salty</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/recipe-type/side-dish/">side dish</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/flavor/sour/">sour</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/season/spring/">spring</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/season/summer/">summer</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/flavor/sweet/">sweet</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/flavor/umami/">umami</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/dietary/vegan/">vegan</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/season/winter/">winter</a>					                                            </div>
			                <section id="dmc-comments">
    
	
		<div class="dmc-comments-nav">
		
                            <h2>1 comment</h2>
	                    </div>
	
	
	
	<div class="dmc-comments-wrapper">
			<div id="respond" class="comment-respond">
		<h3 id="reply-title" class="comment-reply-title"> <small><a rel="nofollow" id="cancel-comment-reply-link" href="/2025/04/23/snap-peas-carrots-salad-sesame-lime-dressing/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://thefirstmess.com/wp-comments-post.php" method="post" id="commentform" class="comment-form"><p class="comment-form-comment"><textarea id="comment" name="comment" placeholder="Comment*" aria-required="true" required="required"></textarea></p><div class="comment-form-wprm-rating">
	<label for="wprm-comment-rating-1532288627">Recipe Rating</label>	<span class="wprm-rating-stars">
		<fieldset class="wprm-comment-ratings-container" data-original-rating="0" data-current-rating="0">
			<legend>Recipe Rating</legend>
			<input aria-label="Don&#039;t rate this recipe" name="wprm-comment-rating" value="0" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="margin-left: -21px !important; width: 24px !important; height: 24px !important;" checked="checked"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
    <polygon class="wprm-star-empty" id="wprm-star-empty-0" fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
  </defs>
	<use xlink:href="#wprm-star-empty-0" x="4" y="4" />
	<use xlink:href="#wprm-star-empty-0" x="36" y="4" />
	<use xlink:href="#wprm-star-empty-0" x="68" y="4" />
	<use xlink:href="#wprm-star-empty-0" x="100" y="4" />
	<use xlink:href="#wprm-star-empty-0" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 1 out of 5 stars" name="wprm-comment-rating" value="1" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-1" fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-star-full" id="wprm-star-full-1" fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-star-full-1" x="4" y="4" />
	<use xlink:href="#wprm-star-empty-1" x="36" y="4" />
	<use xlink:href="#wprm-star-empty-1" x="68" y="4" />
	<use xlink:href="#wprm-star-empty-1" x="100" y="4" />
	<use xlink:href="#wprm-star-empty-1" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 2 out of 5 stars" name="wprm-comment-rating" value="2" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-2" fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-star-full" id="wprm-star-full-2" fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-star-full-2" x="4" y="4" />
	<use xlink:href="#wprm-star-full-2" x="36" y="4" />
	<use xlink:href="#wprm-star-empty-2" x="68" y="4" />
	<use xlink:href="#wprm-star-empty-2" x="100" y="4" />
	<use xlink:href="#wprm-star-empty-2" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 3 out of 5 stars" name="wprm-comment-rating" value="3" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-3" fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-star-full" id="wprm-star-full-3" fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-star-full-3" x="4" y="4" />
	<use xlink:href="#wprm-star-full-3" x="36" y="4" />
	<use xlink:href="#wprm-star-full-3" x="68" y="4" />
	<use xlink:href="#wprm-star-empty-3" x="100" y="4" />
	<use xlink:href="#wprm-star-empty-3" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 4 out of 5 stars" name="wprm-comment-rating" value="4" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-4" fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-star-full" id="wprm-star-full-4" fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-star-full-4" x="4" y="4" />
	<use xlink:href="#wprm-star-full-4" x="36" y="4" />
	<use xlink:href="#wprm-star-full-4" x="68" y="4" />
	<use xlink:href="#wprm-star-full-4" x="100" y="4" />
	<use xlink:href="#wprm-star-empty-4" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 5 out of 5 stars" name="wprm-comment-rating" value="5" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" id="wprm-comment-rating-1532288627" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
	<path class="wprm-star-full" id="wprm-star-full-5" fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-star-full-5" x="4" y="4" />
	<use xlink:href="#wprm-star-full-5" x="36" y="4" />
	<use xlink:href="#wprm-star-full-5" x="68" y="4" />
	<use xlink:href="#wprm-star-full-5" x="100" y="4" />
	<use xlink:href="#wprm-star-full-5" x="132" y="4" />
</svg></span>		</fieldset>
	</span>
</div>
<div class="comment-form-input-wrapper"><p class="comment-form-filed comment-form-author"><input id="author" name="author" type="text" placeholder="Name*" value=""  /></p>
<p class="comment-form-filed comment-form-email"><input id="email" name="email" type="email" placeholder="Email*" value="" /></p></div>
<p class="comment-form-comment-subscribe"><input id="fdcr_subscribe_to_comment" name="fdcr_subscribe_to_comment" type="checkbox" value="on" checked><label for="fdcr_subscribe_to_comment">Notify me if there is a reply to my comment</label></p>
	<script type="rocketlazyloadscript">document.addEventListener("DOMContentLoaded", function() { setTimeout(function(){ var e=document.getElementById("cf-turnstile-c-3268377748"); e&&!e.innerHTML.trim()&&(turnstile.remove("#cf-turnstile-c-3268377748"), turnstile.render("#cf-turnstile-c-3268377748", {sitekey:"0x4AAAAAAA1J0AIrmA7vzo0V"})); }, 0); });</script>
	<p class="form-submit"><span id="cf-turnstile-c-3268377748" class="cf-turnstile cf-turnstile-comments" data-action="wordpress-comment" data-callback="" data-sitekey="0x4AAAAAAA1J0AIrmA7vzo0V" data-theme="light" data-language="auto" data-appearance="interaction-only" data-size="normal" data-retry="auto" data-retry-interval="1000"></span><br class="cf-turnstile-br cf-turnstile-br-comments"><div class="dmc-button-wrap"><input name="submit" type="submit" id="submit" class="submit" value="Submit" /></div><script type="rocketlazyloadscript" data-rocket-type="text/javascript">document.addEventListener("DOMContentLoaded", function() { document.body.addEventListener("click", function(event) { if (event.target.matches(".comment-reply-link, #cancel-comment-reply-link")) { turnstile.reset(".comment-form .cf-turnstile"); } }); });</script> <input type='hidden' name='comment_post_ID' value='34193' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="63bac3b671" /></p><p style="display: none !important;" class="akismet-fields-container" data-prefix="ak_"><label>&#916;<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="20"/><script type="rocketlazyloadscript">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form>	</div><!-- #respond -->
	            <ul id="comments" class="comment-list">
                    <li id="comment-746391" class="comment">
        <article id="div-comment-746391">
            <header class="data-comment-author">
                <span class="comment-author">Kyle</span>
                <time class="data-comment-date" datetime="23/04/2025">23/04/2025</time>
            </header>
            <div class="data-comment-content"><p>This is looking soooo good for spring! Can&#8217;t wait to make.</p>
</div>
            <div class="dmc-reply-wrapper">
		        <span class="dmc-reply-link"><a rel="nofollow" class="comment-reply-link" href="#comment-746391" data-commentid="746391" data-postid="34193" data-belowelement="comment-746391" data-respondelement="respond" data-replyto="Reply to Kyle" aria-label="Reply to Kyle">Reply</a></span>            </div>
        </article>
    </li>
    </li><!-- #comment-## -->
            </ul>
		
		
		<div class="comment-nav">										   
			<div class="comment-nav-previous"></div>
			<div class="comment-nav-next"></div>
		</div>	
		
		
            	</div>
</section>                    </div>
                </div>
                <div class="dmc-pwsb-sidebar-holder">
			        <aside id="sidebar">
    <div id="dmc-widget-about-2" class="widget widget_dmc-widget-about">			<div class="dmc-image-holder">
				    <picture class="dmc-image-picture">
		<source srcset="https://thefirstmess.com/wp-content/uploads/fly-images/22606/tfm-footer-about-300x414-c.jpg, https://thefirstmess.com/wp-content/uploads/fly-images/22606/tfm-footer-about-600x828-c.jpg 2x"><img data-no-lazy="" fetchpriority="high" width="300" height="414" src="https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-620x855.jpg" class="attachment-300x414 size-300x414" alt="" decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-620x855.jpg 620w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-940x1296.jpg 940w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-768x1059.jpg 768w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-1114x1536.jpg 1114w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-46x64.jpg 46w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-93x128.jpg 93w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-740x1020.jpg 740w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about.jpg 1294w" sizes="(max-width: 300px) 100vw, 300px" />    </picture>
				</div>
						<h3 class="widget-title">About Laura</h3>
						<div class="widget-description f-text-default">I'm a vegan cookbook author, recipe developer, and a food blogger for over 10 years. Here, you'll find seasonal vegan recipes, wholesome meals, and plenty of feel-good inspiration for a compassionate lifestyle. My hope is to always inspire and encourage anyone, at any level, to try plant-based cooking at home.</div>
				    <div class="dmc-button-wrap style-long-big and-short">
            <a target="_self" class="dmc-button" href="/about/">Read More</a>
        </div>
	    </div></aside>                </div>
            </div>
            <div class="dmc-single-post-footer">
                                    <section class="dmc-single-post-related-section">
                        <div class="section-inner">
                            <h2 class="section-title">Similar Recipes</h2>
			                <div class="dmc-posts-feed dmc-feed-related"><div class="posts-wrapper dmc-feed-3-cols"><article class="dmc-single-post content-card-3-col">
    <div class="dmc-single-post-inner">
        <a href="https://thefirstmess.com/2017/03/08/hot-pink-smoothie-cheers/" class="dmc-image-link-wrapper">
		                <div class="dmc-image-holder featured-media media-image size-3-column">
                                <img width="356" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20356%20540'%3E%3C/svg%3E" class="attachment-3-column size-3-column wp-post-image" alt="Hot Pink Beet Protein Smoothie from The First Mess Cookbook" decoding="async" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-146x220.jpg 146w" data-lazy-sizes="(max-width: 356px) 100vw, 356px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-356x540.jpg" /><noscript><img width="356" height="540" src="https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-356x540.jpg" class="attachment-3-column size-3-column wp-post-image" alt="Hot Pink Beet Protein Smoothie from The First Mess Cookbook" decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2017/03/08-8395-post/HOT-PINK-SMOOTHIE-3-146x220.jpg 146w" sizes="(max-width: 356px) 100vw, 356px" /></noscript>            </div>
                    </a>
        <div class="data-title-holder">
            <h3 class="data-title"><a href="https://thefirstmess.com/2017/03/08/hot-pink-smoothie-cheers/">Hot Pink Beet Smoothie with Citrus</a></h3>
        </div>
    </div>
</article><article class="dmc-single-post content-card-3-col">
    <div class="dmc-single-post-inner">
        <a href="https://thefirstmess.com/2013/05/08/simple-asparagus-ramp-soup-with-rustic-spelt-bread-recipe/" class="dmc-image-link-wrapper">
		                <div class="dmc-image-holder featured-media media-image size-3-column">
                                <img width="356" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20356%20540'%3E%3C/svg%3E" class="attachment-3-column size-3-column wp-post-image" alt="" decoding="async" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-146x220.jpg 146w" data-lazy-sizes="(max-width: 356px) 100vw, 356px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-356x540.jpg" /><noscript><img width="356" height="540" src="https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-356x540.jpg" class="attachment-3-column size-3-column wp-post-image" alt="" decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2013/05/ramp_final3-146x220.jpg 146w" sizes="(max-width: 356px) 100vw, 356px" /></noscript>            </div>
                    </a>
        <div class="data-title-holder">
            <h3 class="data-title"><a href="https://thefirstmess.com/2013/05/08/simple-asparagus-ramp-soup-with-rustic-spelt-bread-recipe/">Simple Asparagus and Ramp Soup with Rustic Spelt Bread</a></h3>
        </div>
    </div>
</article><article class="dmc-single-post content-card-3-col">
    <div class="dmc-single-post-inner">
        <a href="https://thefirstmess.com/2020/01/08/creamy-truffle-pasta-vegan-recipe/" class="dmc-image-link-wrapper">
		                <div class="dmc-image-holder featured-media media-image size-3-column">
                                <img width="356" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20356%20540'%3E%3C/svg%3E" class="attachment-3-column size-3-column wp-post-image" alt="" decoding="async" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-146x220.jpg 146w" data-lazy-sizes="(max-width: 356px) 100vw, 356px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-356x540.jpg" /><noscript><img width="356" height="540" src="https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-356x540.jpg" class="attachment-3-column size-3-column wp-post-image" alt="" decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2020/01/07-11903-post/creamy-truffle-pasta-broccoli-rabe-vegan-recipe-8-146x220.jpg 146w" sizes="(max-width: 356px) 100vw, 356px" /></noscript>            </div>
                    </a>
        <div class="data-title-holder">
            <h3 class="data-title"><a href="https://thefirstmess.com/2020/01/08/creamy-truffle-pasta-vegan-recipe/">Creamy Truffle Pasta with Balsamic-Roasted Broccoli Rabe</a></h3>
        </div>
    </div>
</article></div></div>                        </div>
                    </section>
	                                <div class="posts-nav">
		                                <div class="post-nav-holder prev-holder">
	                                                <a class="next-prev-links prev-link" href="https://thefirstmess.com/2025/04/02/air-fryer-edamame-crispy/">« Crispy &amp; Chewy Air Fryer Edamame</a>
		                                        </div>
                    <div class="separator"></div>
                    <div class="post-nav-holder next-holder">
	                                                <a class="next-prev-links next-link" href="https://thefirstmess.com/2025/04/30/vegan-broccoli-caesar-pasta-salad/">Vegan Broccoli Caesar Pasta Salad »</a>
		                                        </div>
                </div>
            </div>
        </div>
    </article>
</div>			        </div>
    </div>
<footer id="dmc-main-footer" role="contentinfo" itemscope itemtype="https://schema.org/WPFooter">
    <div class="dmc-main-footer-inner">
                <div class="dmc-footer-row-2">
            <div class="dmc-footer-row-inner dmc-width-main dmc-padding-main">
                <div class="footer-row-2-1">
                    <div class="dmc-col-1">
                        <div class="footer-logo-holder">
                                <picture class="dmc-image-picture type-fluid">
		<source media="(min-width: 768px)" srcset="https://thefirstmess.com/wp-content/uploads/fly-images/22607/the-first-mess-footer-logo-98x0.png, https://thefirstmess.com/wp-content/uploads/fly-images/22607/the-first-mess-footer-logo-196x0.png 2x"><source srcset="https://thefirstmess.com/wp-content/uploads/fly-images/22607/the-first-mess-footer-logo-60x0.png, https://thefirstmess.com/wp-content/uploads/fly-images/22607/the-first-mess-footer-logo-120x0.png 2x"><img width="60" height="74" src="https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-footer-logo-104x128.png" class="attachment-60x0 size-60x0" alt="" decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-footer-logo-104x128.png 104w, https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-footer-logo-52x64.png 52w, https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-footer-logo.png 195w" sizes="(max-width: 60px) 100vw, 60px" />    </picture>
	                        </div>
                    </div>
                    <div class="dmc-col-2">
                        <div class="dmc-newsletter-wrapper">
                            <div class="dmc-newsletter-form">
                                <script data-minify="1" async src="https://thefirstmess.com/wp-content/cache/min/1/form/b0ec9660-3b96-11ed-9a32-0241b9615763.js?ver=1746733120" data-form="b0ec9660-3b96-11ed-9a32-0241b9615763"></script>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="footer-row-2-2">
                    <div class="dmc-col dmc-col-1">
	                        <div class="dmc-menu-wrapper">
        <nav class="dmc-menu dmc-menu-footer-menu-1" role="navigation" aria-label="Footer Menu 1"><div class="menu-footer-menu-1-container"><ul id="menu-footer-menu-1" class="menu"><li id="menu-item-22667" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22667"><a href="https://thefirstmess.com/about/">About</a></li>
<li id="menu-item-22668" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22668"><a target="_blank" href="mailto:laura@thefirstmess.com">Contact</a></li>
<li id="menu-item-22669" class="menu-item menu-item-type-post_type menu-item-object-cookbook menu-item-22669"><a href="https://thefirstmess.com/cookbook/the-first-mess-cookbook/">My Cookbook</a></li>
</ul></div></nav>    </div>
                        </div>
                    <div class="dmc-col dmc-col-2">
		                    <div class="dmc-menu-wrapper">
        <nav class="dmc-menu dmc-menu-footer-menu-2" role="navigation" aria-label="Footer Menu 2"><div class="menu-footer-menu-2-container"><ul id="menu-footer-menu-2" class="menu"><li id="menu-item-22671" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22671"><a href="https://thefirstmess.com/recipes/">Recipe Search</a></li>
<li id="menu-item-32719" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32719"><a href="https://thefirstmess.com/editorial-guidelines/">Editorial Guidelines</a></li>
<li id="menu-item-22672" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22672"><a href="https://thefirstmess.com/privacy-policy/">Privacy Policy</a></li>
</ul></div></nav>    </div>
                        </div>
                    <div class="dmc-col dmc-col-3">
		                    <div class="dmc-menu-wrapper">
        <nav class="dmc-menu dmc-menu-footer-menu-3" role="navigation" aria-label="Footer Menu 3"><div class="menu-footer-menu-3-container"><ul id="menu-footer-menu-4" class="menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22673"><a target="_blank" href="https://www.pinterest.ca/thefirstmess/">Pinterest</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22674"><a href="https://www.instagram.com/thefirstmess/">Instagram</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22675"><a href="https://www.facebook.com/thefirstmess">Facebook</a></li>
</ul></div></nav>    </div>
                        </div>
                </div>
                <div class="footer-row-2-3">
                    <div class="dmc-copyright-wrapper">
		                            <div class="dmc-copyright"><p>© Copyright 2025 The First Mess</p>
<p>site by <a href="https://katelyngambler.com/" target="_blank" rel="nofollow noopener">Katelyn Gambler</a></p>
<p>support by <a href="https://foodiedigital.com/" target="_blank" rel="nofollow noopener">Foodie Digital</a></p></div>
                                </div>
                </div>
            </div>
        </div>
    </div>
</footer>
</div> <!-- .dmc-body-inner -->
    <div data-wpr-lazyrender="1" class="dmc-responsive-indicators">
        <div  id="pre-landscape-indicator"></div>
        <div  id="landscape-indicator"></div>
        <div  id="pre-tablet-indicator"></div>
        <div  id="tablet-indicator"></div>
        <div  id="mobile-indicator"></div>
    </div>
    <script data-no-optimize='1' data-cfasync='false' id='cls-insertion-2b25b53'>!function(){"use strict";function e(){return e=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var n in i)Object.prototype.hasOwnProperty.call(i,n)&&(e[n]=i[n])}return e},e.apply(this,arguments)}window.adthriveCLS.buildDate="2025-05-07";const t={AdDensity:"addensity",AdLayout:"adlayout",Interstitial:"interstitial",StickyOutstream:"stickyoutstream"},i="Below_Post",n="Content",s="Recipe",o="Footer",r="Header",a="Sidebar",l="desktop",c="mobile",d="Video_Collapse_Autoplay_SoundOff",h="Video_Individual_Autoplay_SOff",u="Video_Coll_SOff_Smartphone",p="Video_In-Post_ClicktoPlay_SoundOn",m=e=>{const t={};return function(...i){const n=JSON.stringify(i);if(t[n])return t[n];const s=e.apply(this,i);return t[n]=s,s}},g=navigator.userAgent,y=m((e=>/Chrom|Applechromium/.test(e||g))),_=m((()=>/WebKit/.test(g))),f=m((()=>y()?"chromium":_()?"webkit":"other"));const v=new class{info(e,t,...i){this.call(console.info,e,t,...i)}warn(e,t,...i){this.call(console.warn,e,t,...i)}error(e,t,...i){this.call(console.error,e,t,...i),this.sendErrorLogToCommandQueue(e,t,...i)}event(e,t,...i){var n;"debug"===(null==(n=window.adthriveCLS)?void 0:n.bucket)&&this.info(e,t)}sendErrorLogToCommandQueue(e,t,...i){window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push((()=>{void 0!==window.adthrive.logError&&"function"==typeof window.adthrive.logError&&window.adthrive.logError(e,t,i)}))}call(e,t,i,...n){const s=[`%c${t}::${i} `],o=["color: #999; font-weight: bold;"];n.length>0&&"string"==typeof n[0]&&s.push(n.shift()),o.push(...n);try{Function.prototype.apply.call(e,console,[s.join(""),...o])}catch(e){return void console.error(e)}}},b=(e,t)=>null==e||e!=e?t:e,S=e=>{const t=e.offsetHeight,i=e.offsetWidth,n=e.getBoundingClientRect(),s=document.body,o=document.documentElement,r=window.pageYOffset||o.scrollTop||s.scrollTop,a=window.pageXOffset||o.scrollLeft||s.scrollLeft,l=o.clientTop||s.clientTop||0,c=o.clientLeft||s.clientLeft||0,d=Math.round(n.top+r-l),h=Math.round(n.left+a-c);return{top:d,left:h,bottom:d+t,right:h+i,width:i,height:t}},E=e=>{let t={};const i=((e=window.location.search)=>{const t=0===e.indexOf("?")?1:0;return e.slice(t).split("&").reduce(((e,t)=>{const[i,n]=t.split("=");return e.set(i,n),e}),new Map)})().get(e);if(i)try{const n=decodeURIComponent(i).replace(/\+/g,"");t=JSON.parse(n),v.event("ExperimentOverridesUtil","getExperimentOverrides",e,t)}catch(e){}return t},x=m(((e=navigator.userAgent)=>/Windows NT|Macintosh/i.test(e))),w=m((()=>{const e=navigator.userAgent,t=/Tablet|iPad|Playbook|Nook|webOS|Kindle|Android (?!.*Mobile).*Safari|CrOS/i.test(e);return/Mobi|iP(hone|od)|Opera Mini/i.test(e)&&!t})),A=(e,t,i=document)=>{const n=((e=document)=>{const t=e.querySelectorAll("article");if(0===t.length)return null;const i=Array.from(t).reduce(((e,t)=>t.offsetHeight>e.offsetHeight?t:e));return i&&i.offsetHeight>1.5*window.innerHeight?i:null})(i),s=n?[n]:[],o=[];e.forEach((e=>{const n=Array.from(i.querySelectorAll(e.elementSelector)).slice(0,e.skip);var r;(r=e.elementSelector,r.includes(",")?r.split(","):[r]).forEach((r=>{const a=i.querySelectorAll(r);for(let i=0;i<a.length;i++){const r=a[i];if(t.map.some((({el:e})=>e.isEqualNode(r))))continue;const l=r&&r.parentElement;l&&l!==document.body?s.push(l):s.push(r),-1===n.indexOf(r)&&o.push({dynamicAd:e,element:r})}}))}));const r=((e=document)=>(e===document?document.body:e).getBoundingClientRect().top)(i),a=o.sort(((e,t)=>e.element.getBoundingClientRect().top-r-(t.element.getBoundingClientRect().top-r)));return[s,a]};class C{}const D=["mcmpfreqrec"];const P=new class extends C{init(e){this._gdpr="true"===e.gdpr,this._shouldQueue=this._gdpr}clearQueue(e){e&&(this._shouldQueue=!1,this._sessionStorageHandlerQueue.forEach((e=>{this.setSessionStorage(e.key,e.value)})),this._localStorageHandlerQueue.forEach((e=>{if("adthrive_abgroup"===e.key){const t=Object.keys(e.value)[0],i=e.value[t],n=e.value[`${t}_weight`];this.getOrSetABGroupLocalStorageValue(t,i,n,{value:24,unit:"hours"})}else e.expiry?"internal"===e.type?this.setExpirableInternalLocalStorage(e.key,e.value,{expiry:e.expiry,resetOnRead:e.resetOnRead}):this.setExpirableExternalLocalStorage(e.key,e.value,{expiry:e.expiry,resetOnRead:e.resetOnRead}):"internal"===e.type?this.setInternalLocalStorage(e.key,e.value):this.setExternalLocalStorage(e.key,e.value)})),this._cookieHandlerQueue.forEach((e=>{"internal"===e.type?this.setInternalCookie(e.key,e.value):this.setExternalCookie(e.key,e.value)}))),this._sessionStorageHandlerQueue=[],this._localStorageHandlerQueue=[],this._cookieHandlerQueue=[]}readInternalCookie(e){return this._verifyInternalKey(e),this._readCookie(e)}readExternalCookie(e){return this._readCookie(e)}readInternalLocalStorage(e){return this._verifyInternalKey(e),this._readFromLocalStorage(e)}readExternalLocalStorage(e){return this._readFromLocalStorage(e)}readSessionStorage(e){const t=window.sessionStorage.getItem(e);if(!t)return null;try{return JSON.parse(t)}catch(e){return t}}deleteCookie(e){document.cookie=`${e}=; SameSite=None; Secure; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/`}deleteLocalStorage(e){window.localStorage.removeItem(e)}deleteSessionStorage(e){window.sessionStorage.removeItem(e)}setInternalCookie(e,t,i){this._verifyInternalKey(e),this._setCookieValue("internal",e,t,i)}setExternalCookie(e,t,i){this._setCookieValue("external",e,t,i)}setInternalLocalStorage(e,t){if(this._verifyInternalKey(e),this._gdpr&&this._shouldQueue){const i={key:e,value:t,type:"internal"};this._localStorageHandlerQueue.push(i)}else{const i="string"==typeof t?t:JSON.stringify(t);window.localStorage.setItem(e,i)}}setExternalLocalStorage(e,t){if(this._gdpr&&this._shouldQueue){const i={key:e,value:t,type:"external"};this._localStorageHandlerQueue.push(i)}else{const i="string"==typeof t?t:JSON.stringify(t);window.localStorage.setItem(e,i)}}setExpirableInternalLocalStorage(e,t,i){this._verifyInternalKey(e);try{var n;const o=null!=(n=null==i?void 0:i.expiry)?n:{value:400,unit:"days"};var s;const r=null!=(s=null==i?void 0:i.resetOnRead)&&s;if(this._gdpr&&this._shouldQueue){const i={key:e,value:t,type:"internal",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};this._localStorageHandlerQueue.push(i)}else{const i={value:t,type:"internal",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};window.localStorage.setItem(e,JSON.stringify(i))}}catch(e){console.error(e)}}setExpirableExternalLocalStorage(e,t,i){try{var n;const o=null!=(n=null==i?void 0:i.expiry)?n:{value:400,unit:"days"};var s;const r=null!=(s=null==i?void 0:i.resetOnRead)&&s;if(this._gdpr&&this._shouldQueue){const i={key:e,value:JSON.stringify(t),type:"external",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};this._localStorageHandlerQueue.push(i)}else{const i={value:t,type:"external",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};window.localStorage.setItem(e,JSON.stringify(i))}}catch(e){console.error(e)}}setSessionStorage(e,t){if(this._gdpr&&this._shouldQueue){const i={key:e,value:t};this._sessionStorageHandlerQueue.push(i)}else{const i="string"==typeof t?t:JSON.stringify(t);window.sessionStorage.setItem(e,i)}}getOrSetABGroupLocalStorageValue(t,i,n,s,o=!0){const r="adthrive_abgroup",a=this.readInternalLocalStorage(r);if(null!==a){const e=a[t];var l;const i=null!=(l=a[`${t}_weight`])?l:null;if(this._isValidABGroupLocalStorageValue(e))return[e,i]}const c=e({},a,{[t]:i,[`${t}_weight`]:n});return s?this.setExpirableInternalLocalStorage(r,c,{expiry:s,resetOnRead:o}):this.setInternalLocalStorage(r,c),[i,n]}_isValidABGroupLocalStorageValue(e){return null!=e&&!("number"==typeof e&&isNaN(e))}_getExpiryDate({value:e,unit:t}){const i=new Date;return"milliseconds"===t?i.setTime(i.getTime()+e):"seconds"==t?i.setTime(i.getTime()+1e3*e):"minutes"===t?i.setTime(i.getTime()+60*e*1e3):"hours"===t?i.setTime(i.getTime()+60*e*60*1e3):"days"===t?i.setTime(i.getTime()+24*e*60*60*1e3):"months"===t&&i.setTime(i.getTime()+30*e*24*60*60*1e3),i.toUTCString()}_resetExpiry(e){return e.expires=this._getExpiryDate(e.expiry),e}_readCookie(e){const t=document.cookie.split("; ").find((t=>t.split("=")[0]===e));if(!t)return null;const i=t.split("=")[1];if(i)try{return JSON.parse(decodeURIComponent(i))}catch(e){return decodeURIComponent(i)}return null}_readFromLocalStorage(e){const t=window.localStorage.getItem(e);if(!t)return null;try{const n=JSON.parse(t),s=n.expires&&(new Date).getTime()>=new Date(n.expires).getTime();if("adthrive_abgroup"===e&&n.created)return window.localStorage.removeItem(e),null;if(n.resetOnRead&&n.expires&&!s){const t=this._resetExpiry(n);var i;return window.localStorage.setItem(e,JSON.stringify(n)),null!=(i=t.value)?i:t}if(s)return window.localStorage.removeItem(e),null;if(!n.hasOwnProperty("value"))return n;try{return JSON.parse(n.value)}catch(e){return n.value}}catch(e){return t}}_setCookieValue(e,t,i,n){try{if(this._gdpr&&this._shouldQueue){const n={key:t,value:i,type:e};this._cookieHandlerQueue.push(n)}else{var s;const e=this._getExpiryDate(null!=(s=null==n?void 0:n.expiry)?s:{value:400,unit:"days"});var o;const a=null!=(o=null==n?void 0:n.sameSite)?o:"None";var r;const l=null==(r=null==n?void 0:n.secure)||r,c="object"==typeof i?JSON.stringify(i):i;document.cookie=`${t}=${c}; SameSite=${a}; ${l?"Secure;":""} expires=${e}; path=/`}}catch(e){}}_verifyInternalKey(e){const t=e.startsWith("adthrive_"),i=e.startsWith("adt_");if(!t&&!i&&!D.includes(e))throw new Error('When reading an internal cookie, the key must start with "adthrive_" or "adt_" or be part of the allowed legacy keys.')}constructor(...e){super(...e),this.name="BrowserStorage",this.disable=!1,this.gdprPurposes=[1],this._sessionStorageHandlerQueue=[],this._localStorageHandlerQueue=[],this._cookieHandlerQueue=[],this._shouldQueue=!1}},k=(e,i,n)=>{switch(i){case t.AdDensity:return((e,t)=>{const i=e.adDensityEnabled,n=e.adDensityLayout.pageOverrides.find((e=>!!document.querySelector(e.pageSelector)&&(e[t].onePerViewport||"number"==typeof e[t].adDensity)));return!i||!n})(e,n);case t.StickyOutstream:return(e=>{var t,i,n;const s=null==(n=e.videoPlayers)||null==(i=n.partners)||null==(t=i.stickyOutstream)?void 0:t.blockedPageSelectors;return!s||!document.querySelector(s)})(e);case t.Interstitial:return(e=>{const t=e.adOptions.interstitialBlockedPageSelectors;return!t||!document.querySelector(t)})(e);default:return!0}},O=t=>{try{return{valid:!0,elements:document.querySelectorAll(t)}}catch(t){return e({valid:!1},t)}},I=e=>""===e?{valid:!0}:O(e),M=(e,t)=>{if(!e)return!1;const i=!!e.enabled,n=null==e.dateStart||Date.now()>=e.dateStart,s=null==e.dateEnd||Date.now()<=e.dateEnd,o=null===e.selector||""!==e.selector&&!!document.querySelector(e.selector),r="mobile"===e.platform&&"mobile"===t,a="desktop"===e.platform&&"desktop"===t,l=null===e.platform||"all"===e.platform||r||a,c="bernoulliTrial"===e.experimentType?1===e.variants.length:(e=>{const t=e.reduce(((e,t)=>t.weight?t.weight+e:e),0);return e.length>0&&e.every((e=>{const t=e.value,i=e.weight;return!(null==t||"number"==typeof t&&isNaN(t)||!i)}))&&100===t})(e.variants);return c||v.error("SiteTest","validateSiteExperiment","experiment presented invalid choices for key:",e.key,e.variants),i&&n&&s&&o&&l&&c},L=["siteId","siteName","adOptions","breakpoints","adUnits"];class R{get enabled(){return!!this._clsGlobalData&&!!this._clsGlobalData.siteAds&&((e,t=L)=>{if(!e)return!1;for(let i=0;i<t.length;i++)if(!e[t[i]])return!1;return!0})(this._clsGlobalData.siteAds)}get error(){return!(!this._clsGlobalData||!this._clsGlobalData.error)}set siteAds(e){this._clsGlobalData.siteAds=e}get siteAds(){return this._clsGlobalData.siteAds}set disableAds(e){this._clsGlobalData.disableAds=e}get disableAds(){return this._clsGlobalData.disableAds}set enabledLocations(e){this._clsGlobalData.enabledLocations=e}get enabledLocations(){return this._clsGlobalData.enabledLocations}get injectedFromPlugin(){return this._clsGlobalData.injectedFromPlugin}set injectedFromPlugin(e){this._clsGlobalData.injectedFromPlugin=e}get injectedFromSiteAds(){return this._clsGlobalData.injectedFromSiteAds}set injectedFromSiteAds(e){this._clsGlobalData.injectedFromSiteAds=e}overwriteInjectedSlots(e){this._clsGlobalData.injectedSlots=e}setInjectedSlots(e){this._clsGlobalData.injectedSlots=this._clsGlobalData.injectedSlots||[],this._clsGlobalData.injectedSlots.push(e)}get injectedSlots(){return this._clsGlobalData.injectedSlots}setInjectedVideoSlots(e){this._clsGlobalData.injectedVideoSlots=this._clsGlobalData.injectedVideoSlots||[],this._clsGlobalData.injectedVideoSlots.push(e)}get injectedVideoSlots(){return this._clsGlobalData.injectedVideoSlots}setInjectedScripts(e){this._clsGlobalData.injectedScripts=this._clsGlobalData.injectedScripts||[],this._clsGlobalData.injectedScripts.push(e)}get getInjectedScripts(){return this._clsGlobalData.injectedScripts}setExperiment(e,t,i=!1){this._clsGlobalData.experiments=this._clsGlobalData.experiments||{},this._clsGlobalData.siteExperiments=this._clsGlobalData.siteExperiments||{};(i?this._clsGlobalData.siteExperiments:this._clsGlobalData.experiments)[e]=t}getExperiment(e,t=!1){const i=t?this._clsGlobalData.siteExperiments:this._clsGlobalData.experiments;return i&&i[e]}setWeightedChoiceExperiment(e,t,i=!1){this._clsGlobalData.experimentsWeightedChoice=this._clsGlobalData.experimentsWeightedChoice||{},this._clsGlobalData.siteExperimentsWeightedChoice=this._clsGlobalData.siteExperimentsWeightedChoice||{};(i?this._clsGlobalData.siteExperimentsWeightedChoice:this._clsGlobalData.experimentsWeightedChoice)[e]=t}getWeightedChoiceExperiment(e,t=!1){var i,n;const s=t?null==(i=this._clsGlobalData)?void 0:i.siteExperimentsWeightedChoice:null==(n=this._clsGlobalData)?void 0:n.experimentsWeightedChoice;return s&&s[e]}get branch(){return this._clsGlobalData.branch}get bucket(){return this._clsGlobalData.bucket}set videoDisabledFromPlugin(e){this._clsGlobalData.videoDisabledFromPlugin=e}get videoDisabledFromPlugin(){return this._clsGlobalData.videoDisabledFromPlugin}set targetDensityLog(e){this._clsGlobalData.targetDensityLog=e}get targetDensityLog(){return this._clsGlobalData.targetDensityLog}getIOSDensity(e){const t=[{weight:100,adDensityPercent:0},{weight:0,adDensityPercent:25},{weight:0,adDensityPercent:50}],i=t.map((e=>e.weight)),{index:n}=(e=>{const t={index:-1,weight:-1};if(!e||0===e.length)return t;const i=e.reduce(((e,t)=>e+t),0);if(0===i)return t;const n=Math.random()*i;let s=0,o=e[s];for(;n>o;)o+=e[++s];return{index:s,weight:e[s]}})(i),s=e-e*(t[n].adDensityPercent/100);return this.setWeightedChoiceExperiment("iosad",t[n].adDensityPercent),s}getTargetDensity(e){return((e=navigator.userAgent)=>/iP(hone|od|ad)/i.test(e))()?this.getIOSDensity(e):e}get removeVideoTitleWrapper(){return this._clsGlobalData.siteAds.adOptions.removeVideoTitleWrapper}constructor(){this._clsGlobalData=window.adthriveCLS}}class T{static getScrollTop(){return(window.pageYOffset||document.documentElement.scrollTop)-(document.documentElement.clientTop||0)}static getScrollBottom(){return this.getScrollTop()+(document.documentElement.clientHeight||0)}static shufflePlaylist(e){let t,i,n=e.length;for(;0!==n;)i=Math.floor(Math.random()*e.length),n-=1,t=e[n],e[n]=e[i],e[i]=t;return e}static isMobileLandscape(){return window.matchMedia("(orientation: landscape) and (max-height: 480px)").matches}static playerViewable(e){const t=e.getBoundingClientRect();return this.isMobileLandscape()?window.innerHeight>t.top+t.height/2&&t.top+t.height/2>0:window.innerHeight>t.top+t.height/2}static createQueryString(e){return Object.keys(e).map((t=>`${t}=${e[t]}`)).join("&")}static createEncodedQueryString(e){return Object.keys(e).map((t=>`${t}=${encodeURIComponent(e[t])}`)).join("&")}static setMobileLocation(e){return"top-left"===(e=e||"bottom-right")?e="adthrive-collapse-top-left":"top-right"===e?e="adthrive-collapse-top-right":"bottom-left"===e?e="adthrive-collapse-bottom-left":"bottom-right"===e?e="adthrive-collapse-bottom-right":"top-center"===e&&(e=w()?"adthrive-collapse-top-center":"adthrive-collapse-bottom-right"),e}static addMaxResolutionQueryParam(e){const t=`max_resolution=${w()?"320":"1280"}`,[i,n]=String(e).split("?");return`${i}?${n?n+`&${t}`:t}`}}class j{constructor(e){this._clsOptions=e,this.removeVideoTitleWrapper=b(this._clsOptions.siteAds.adOptions.removeVideoTitleWrapper,!1);const t=this._clsOptions.siteAds.videoPlayers;this.footerSelector=b(t&&t.footerSelector,""),this.players=b(t&&t.players.map((e=>(e.mobileLocation=T.setMobileLocation(e.mobileLocation),e))),[]),this.relatedSettings=t&&t.contextual}}class H{constructor(e){this.mobileStickyPlayerOnPage=!1,this.playlistPlayerAdded=!1,this.relatedPlayerAdded=!1,this.footerSelector="",this.removeVideoTitleWrapper=!1,this.videoAdOptions=new j(e),this.players=this.videoAdOptions.players,this.relatedSettings=this.videoAdOptions.relatedSettings,this.removeVideoTitleWrapper=this.videoAdOptions.removeVideoTitleWrapper,this.footerSelector=this.videoAdOptions.footerSelector}}class V{}class N extends V{get(){if(this._probability<0||this._probability>1)throw new Error(`Invalid probability: ${this._probability}`);return Math.random()<this._probability}constructor(e){super(),this._probability=e}}class G{setExperimentKey(e=!1){this._clsOptions.setExperiment(this.abgroup,this.result,e)}constructor(){this._clsOptions=new R,this.shouldUseCoreExperimentsConfig=!1}}class W extends G{get result(){return this._result}run(){return new N(this.weight).get()}constructor(e){super(),this._result=!1,this.key="ParallaxAdsExperiment",this.abgroup="parallax",this._choices=[{choice:!0},{choice:!1}],this.weight=0;!!w()&&e.largeFormatsMobile&&(this._result=this.run(),this.setExperimentKey())}}const B=[[728,90],[300,250],[300,600],[320,50],[970,250],[160,600],[300,1050],[336,280],[970,90],[300,50],[320,100],[468,60],[250,250],[120,240],[1,1],[300,300],[552,334],[300,420],[728,250],[320,300],[300,390]],F=[[300,600],[160,600]],z=new Map([[o,1],[r,2],[a,3],[n,4],[s,5],["Sidebar_sticky",6],["Below Post",7]]),q=(e,t)=>{const{location:i,sticky:n}=e;if(i===s&&t){const{recipeMobile:e,recipeDesktop:i}=t;if(w()&&(null==e?void 0:e.enabled))return!0;if(!w()&&(null==i?void 0:i.enabled))return!0}return i===o||n},U=(e,t)=>{const i=t.adUnits,l=(e=>!!e.adTypes&&new W(e.adTypes).result)(t);return i.filter((e=>void 0!==e.dynamic&&e.dynamic.enabled)).map((i=>{const c=i.location.replace(/\s+/g,"_"),d="Sidebar"===c?0:2;return{auctionPriority:z.get(c)||8,location:c,sequence:b(i.sequence,1),sizes:(h=i.adSizes,B.filter((([e,t])=>h.some((([i,n])=>e===i&&t===n))))).filter((t=>((e,[t,i],n)=>{const{location:l,sequence:c}=e;if(l===o)return!("phone"===n&&320===t&&100===i);if(l===r)return!0;if(l===s)return!(w()&&"phone"===n&&(300===t&&390===i||320===t&&300===i));if(l===a){const t=e.adSizes.some((([,e])=>e<=300)),n=i>300;return!(!n||t)||9===c||(c&&c<=5?!n||e.sticky:!n)}return!0})(i,t,e))).concat(l&&i.location===n?F:[]),devices:i.devices,pageSelector:b(i.dynamic.pageSelector,"").trim(),elementSelector:b(i.dynamic.elementSelector,"").trim(),position:b(i.dynamic.position,"beforebegin"),max:Math.floor(b(i.dynamic.max,0)),spacing:b(i.dynamic.spacing,0),skip:Math.floor(b(i.dynamic.skip,0)),every:Math.max(Math.floor(b(i.dynamic.every,1)),1),classNames:i.dynamic.classNames||[],sticky:q(i,t.adOptions.stickyContainerConfig),stickyOverlapSelector:b(i.stickyOverlapSelector,"").trim(),autosize:i.autosize,special:b(i.targeting,[]).filter((e=>"special"===e.key)).reduce(((e,t)=>e.concat(...t.value)),[]),lazy:b(i.dynamic.lazy,!1),lazyMax:b(i.dynamic.lazyMax,d),lazyMaxDefaulted:0!==i.dynamic.lazyMax&&!i.dynamic.lazyMax,name:i.name};var h}))},Q=(e,t)=>{const i=(e=>{let t=e.clientWidth;if(getComputedStyle){const i=getComputedStyle(e,null);t-=parseFloat(i.paddingLeft||"0")+parseFloat(i.paddingRight||"0")}return t})(t),n=e.sticky&&e.location===a;return e.sizes.filter((t=>{const s=!e.autosize||(t[0]<=i||t[0]<=320),o=!n||t[1]<=window.innerHeight-100;return s&&o}))};class J{constructor(e){this.clsOptions=e,this.enabledLocations=[i,n,s,a]}}const K=e=>`adthrive-${e.location.replace("_","-").toLowerCase()}`,Z=e=>`${K(e)}-${e.sequence}`;function Y(e,t){void 0===t&&(t={});var i=t.insertAt;if(e&&"undefined"!=typeof document){var n=document.head||document.getElementsByTagName("head")[0],s=document.createElement("style");s.type="text/css","top"===i&&n.firstChild?n.insertBefore(s,n.firstChild):n.appendChild(s),s.styleSheet?s.styleSheet.cssText=e:s.appendChild(document.createTextNode(e))}}const X=e=>e.some((e=>null!==document.querySelector(e)));function ee(e,t,i,n){var s,o=arguments.length,r=o<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,i):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)r=Reflect.decorate(e,t,i,n);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(r=(o<3?s(r):o>3?s(t,i,r):s(t,i))||r);return o>3&&r&&Object.defineProperty(t,i,r),r}function te(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)}"function"==typeof SuppressedError&&SuppressedError;class ie extends V{static fromArray(e,t){return new ie(e.map((([e,t])=>({choice:e,weight:t}))),t)}addChoice(e,t){this._choices.push({choice:e,weight:t})}get(){const e=(t=0,i=100,Math.random()*(i-t)+t);var t,i;let n=0;for(const{choice:t,weight:i}of this._choices)if(n+=i,n>=e)return t;return this._default}get totalWeight(){return this._choices.reduce(((e,{weight:t})=>e+t),0)}constructor(e=[],t){super(),this._choices=e,this._default=t}}const ne={"Europe/Brussels":"gdpr","Europe/Sofia":"gdpr","Europe/Prague":"gdpr","Europe/Copenhagen":"gdpr","Europe/Berlin":"gdpr","Europe/Tallinn":"gdpr","Europe/Dublin":"gdpr","Europe/Athens":"gdpr","Europe/Madrid":"gdpr","Africa/Ceuta":"gdpr","Europe/Paris":"gdpr","Europe/Zagreb":"gdpr","Europe/Rome":"gdpr","Asia/Nicosia":"gdpr","Europe/Nicosia":"gdpr","Europe/Riga":"gdpr","Europe/Vilnius":"gdpr","Europe/Luxembourg":"gdpr","Europe/Budapest":"gdpr","Europe/Malta":"gdpr","Europe/Amsterdam":"gdpr","Europe/Vienna":"gdpr","Europe/Warsaw":"gdpr","Europe/Lisbon":"gdpr","Atlantic/Madeira":"gdpr","Europe/Bucharest":"gdpr","Europe/Ljubljana":"gdpr","Europe/Bratislava":"gdpr","Europe/Helsinki":"gdpr","Europe/Stockholm":"gdpr","Europe/London":"gdpr","Europe/Vaduz":"gdpr","Atlantic/Reykjavik":"gdpr","Europe/Oslo":"gdpr","Europe/Istanbul":"gdpr","Europe/Zurich":"gdpr"},se=()=>(e,i,n)=>{const s=n.value;s&&(n.value=function(...e){const i=(e=>{if(null===e)return null;const t=e.map((({choice:e})=>e));return(e=>{let t=5381,i=e.length;for(;i;)t=33*t^e.charCodeAt(--i);return t>>>0})(JSON.stringify(t)).toString(16)})(this._choices),n=this._expConfigABGroup?this._expConfigABGroup:this.abgroup,o=n?n.toLowerCase():this.key?this.key.toLowerCase():"",r=i?`${o}_${i}`:o,a=this.localStoragePrefix?`${this.localStoragePrefix}-${r}`:r;if([t.AdLayout,t.AdDensity].includes(o)&&"gdpr"===(()=>{const e=Intl.DateTimeFormat().resolvedOptions().timeZone,t=ne[e];return null!=t?t:null})()){return s.apply(this,e)}const l=P.readInternalLocalStorage("adthrive_branch");!1===(l&&l.enabled)&&P.deleteLocalStorage(a);const c=(()=>s.apply(this,e))(),d=(h=this._choices,u=c,null!=(m=null==(p=h.find((({choice:e})=>e===u)))?void 0:p.weight)?m:null);var h,u,p,m;const[g,y]=P.getOrSetABGroupLocalStorageValue(a,c,d,{value:24,unit:"hours"});return this._stickyResult=g,this._stickyWeight=y,g})};class oe{get enabled(){return void 0!==this.experimentConfig}_isValidResult(e,t=()=>!0){return t()&&(e=>null!=e&&!("number"==typeof e&&isNaN(e)))(e)}}class re extends oe{_isValidResult(e){return super._isValidResult(e,(()=>this._resultValidator(e)||"control"===e))}run(){if(!this.enabled)return v.error("CLSWeightedChoiceSiteExperiment","run","() => %o","No experiment config found. Defaulting to control."),"control";if(!this._mappedChoices||0===this._mappedChoices.length)return v.error("CLSWeightedChoiceSiteExperiment","run","() => %o","No experiment variants found. Defaulting to control."),"control";const e=new ie(this._mappedChoices).get();return this._isValidResult(e)?e:(v.error("CLSWeightedChoiceSiteExperiment","run","() => %o","Invalid result from experiment choices. Defaulting to control."),"control")}constructor(...e){super(...e),this._resultValidator=()=>!0}}class ae{getSiteExperimentByKey(e){const t=this.siteExperiments.filter((t=>t.key.toLowerCase()===e.toLowerCase()))[0],i=E("at_site_features"),n=(s=(null==t?void 0:t.variants[1])?null==t?void 0:t.variants[1].value:null==t?void 0:t.variants[0].value,o=i[e],typeof s==typeof o);var s,o;return t&&i[e]&&n&&(t.variants=[{displayName:"test",value:i[e],weight:100,id:0}]),t}constructor(e){var t,i;this.siteExperiments=[],this._clsOptions=e,this._device=w()?"mobile":"desktop",this.siteExperiments=null!=(i=null==(t=this._clsOptions.siteAds.siteExperiments)?void 0:t.filter((e=>{const t=e.key,i=M(e,this._device),n=k(this._clsOptions.siteAds,t,this._device);return i&&n})))?i:[]}}class le extends re{get result(){return this._result}run(){if(!this.enabled)return v.error("CLSAdLayoutSiteExperiment","run","() => %o","No experiment config found. Defaulting to empty class name."),"";const e=new ie(this._mappedChoices).get();return this._isValidResult(e)?e:(v.error("CLSAdLayoutSiteExperiment","run","() => %o","Invalid result from experiment choices. Defaulting to empty class name."),"")}_mapChoices(){return this._choices.map((({weight:e,value:t})=>({weight:e,choice:t})))}constructor(e){super(),this._choices=[],this._mappedChoices=[],this._result="",this._resultValidator=e=>"string"==typeof e,this.key=t.AdLayout,this.abgroup=t.AdLayout,this._clsSiteExperiments=new ae(e),this.experimentConfig=this._clsSiteExperiments.getSiteExperimentByKey(this.key),this.enabled&&this.experimentConfig&&(this._choices=this.experimentConfig.variants,this._mappedChoices=this._mapChoices(),this._result=this.run(),e.setWeightedChoiceExperiment(this.abgroup,this._result,!0))}}ee([se(),te("design:type",Function),te("design:paramtypes",[]),te("design:returntype",void 0)],le.prototype,"run",null);class ce extends re{get result(){return this._result}run(){if(!this.enabled)return v.error("CLSTargetAdDensitySiteExperiment","run","() => %o","No experiment config found. Defaulting to control."),"control";const e=new ie(this._mappedChoices).get();return this._isValidResult(e)?e:(v.error("CLSTargetAdDensitySiteExperiment","run","() => %o","Invalid result from experiment choices. Defaulting to control."),"control")}_mapChoices(){return this._choices.map((({weight:e,value:t})=>({weight:e,choice:"number"==typeof t?(t||0)/100:"control"})))}constructor(e){super(),this._choices=[],this._mappedChoices=[],this._result="control",this._resultValidator=e=>"number"==typeof e,this.key=t.AdDensity,this.abgroup=t.AdDensity,this._clsSiteExperiments=new ae(e),this.experimentConfig=this._clsSiteExperiments.getSiteExperimentByKey(this.key),this.enabled&&this.experimentConfig&&(this._choices=this.experimentConfig.variants,this._mappedChoices=this._mapChoices(),this._result=this.run(),e.setWeightedChoiceExperiment(this.abgroup,this._result,!0))}}ee([se(),te("design:type",Function),te("design:paramtypes",[]),te("design:returntype",void 0)],ce.prototype,"run",null);const de="250px";class he{start(){try{var e,t;(e=>{const t=document.body,i=`adthrive-device-${e}`;if(!t.classList.contains(i))try{t.classList.add(i)}catch(e){v.error("BodyDeviceClassComponent","init",{message:e.message});const t="classList"in document.createElement("_");v.error("BodyDeviceClassComponent","init.support",{support:t})}})(this._device);const s=new le(this._clsOptions);if(s.enabled){const e=s.result,t=e.startsWith(".")?e.substring(1):e;if((e=>/^[-_a-zA-Z]+[-_a-zA-Z0-9]*$/.test(e))(t))try{document.body.classList.add(t)}catch(e){v.error("ClsDynamicAdsInjector","start",`Uncaught CSS Class error: ${e}`)}else v.error("ClsDynamicAdsInjector","start",`Invalid class name: ${t}`)}const o=U(this._device,this._clsOptions.siteAds).filter((e=>this._locationEnabled(e))).filter((e=>{return t=e,i=this._device,t.devices.includes(i);var t,i})).filter((e=>{return 0===(t=e).pageSelector.length||null!==document.querySelector(t.pageSelector);var t})),r=this.inject(o);var i,n;if(null==(t=this._clsOptions.siteAds.adOptions.stickyContainerConfig)||null==(e=t.content)?void 0:e.enabled)if(!X(this._clsOptions.siteAds.adOptions.stickyContainerConfig.blockedSelectors||[]))Y(`\n  .adthrive-device-phone .adthrive-sticky-content {\n    height: 450px !important;\n    margin-bottom: 100px !important;\n  }\n  .adthrive-content.adthrive-sticky {\n    position: -webkit-sticky;\n    position: sticky !important;\n    top: 42px !important;\n    margin-top: 42px !important;\n  }\n  .adthrive-content.adthrive-sticky:after {\n    content: "— Advertisement. Scroll down to continue. —";\n    font-size: 10pt;\n    margin-top: 5px;\n    margin-bottom: 5px;\n    display:block;\n    color: #888;\n  }\n  .adthrive-sticky-container {\n    position: relative;\n    display: flex;\n    flex-direction: column;\n    justify-content: flex-start;\n    align-items: center;\n    min-height:${(null==(n=this._clsOptions.siteAds.adOptions.stickyContainerConfig)||null==(i=n.content)?void 0:i.minHeight)||400}px !important;\n    margin: 10px 0 10px 0;\n    background-color: #FAFAFA;\n    padding-bottom:0px;\n  }\n  `);r.forEach((e=>this._clsOptions.setInjectedSlots(e)))}catch(e){v.error("ClsDynamicAdsInjector","start",e)}}inject(e,t=document){this._densityDevice="desktop"===this._device?l:c,this._overrideDefaultAdDensitySettingsWithSiteExperiment();const i=this._clsOptions.siteAds,s=b(i.adDensityEnabled,!0),o=i.adDensityLayout&&s,r=e.filter((e=>o?e.location!==n:e)),a=e.filter((e=>o?e.location===n:null));return[...r.length?this._injectNonDensitySlots(r,t):[],...a.length?this._injectDensitySlots(a,t):[]]}_injectNonDensitySlots(e,t=document){var i;const n=[],o=[];if(e.some((e=>e.location===s&&e.sticky))&&!X((null==(i=this._clsOptions.siteAds.adOptions.stickyContainerConfig)?void 0:i.blockedSelectors)||[])){var r,a;const e=this._clsOptions.siteAds.adOptions.stickyContainerConfig;(e=>{Y(`\n  .adthrive-recipe.adthrive-sticky {\n    position: -webkit-sticky;\n    position: sticky !important;\n    top: 42px !important;\n    margin-top: 42px !important;\n  }\n  .adthrive-recipe-sticky-container {\n    position: relative;\n    display: flex;\n    flex-direction: column;\n    justify-content: flex-start;\n    align-items: center;\n    min-height:${e||400}px !important;\n    margin: 10px 0 10px 0;\n    background-color: #FAFAFA;\n    padding-bottom:0px;\n  }\n  `)})("phone"===this._device?null==e||null==(r=e.recipeMobile)?void 0:r.minHeight:null==e||null==(a=e.recipeDesktop)?void 0:a.minHeight)}for(const i of e)this._insertNonDensityAds(i,n,o,t);return o.forEach((({location:e,element:t})=>{t.style.minHeight=this.locationToMinHeight[e]})),n}_injectDensitySlots(e,t=document){try{this._calculateMainContentHeightAndAllElements(e,t)}catch(e){return[]}const{onePerViewport:i,targetAll:n,targetDensityUnits:s,combinedMax:o,numberOfUnits:r}=this._getDensitySettings(e,t);return this._absoluteMinimumSpacingByDevice=i?window.innerHeight:this._absoluteMinimumSpacingByDevice,r?(this._adInjectionMap.filterUsed(),this._findElementsForAds(r,i,n,o,s,t),this._insertAds()):[]}_overrideDefaultAdDensitySettingsWithSiteExperiment(){var e;if(null==(e=this._clsTargetAdDensitySiteExperiment)?void 0:e.enabled){const e=this._clsTargetAdDensitySiteExperiment.result;"number"==typeof e&&(this._clsOptions.siteAds.adDensityEnabled=!0,this._clsOptions.siteAds.adDensityLayout[this._densityDevice].adDensity=e)}}_getDensitySettings(e,t=document){const i=this._clsOptions.siteAds.adDensityLayout,n=this._determineOverrides(i.pageOverrides),s=n.length?n[0]:i[this._densityDevice],o=this._clsOptions.getTargetDensity(s.adDensity),r=s.onePerViewport,a=this._shouldTargetAllEligible(o);let l=this._getTargetDensityUnits(o,a);const c=this._clsOptions.getWeightedChoiceExperiment("iosad");l<1&&c&&(l=1);const d=this._getCombinedMax(e,t),h=Math.min(this._totalAvailableElements.length,l,...d>0?[d]:[]);return this._pubLog={onePerViewport:r,targetDensity:o,targetDensityUnits:l,combinedMax:d},{onePerViewport:r,targetAll:a,targetDensityUnits:l,combinedMax:d,numberOfUnits:h}}_determineOverrides(e){return e.filter((e=>{const t=I(e.pageSelector);return""===e.pageSelector||t.elements&&t.elements.length})).map((e=>e[this._densityDevice]))}_shouldTargetAllEligible(e){return e===this._densityMax}_getTargetDensityUnits(e,t){return t?this._totalAvailableElements.length:Math.floor(e*this._mainContentHeight/(1-e)/this._minDivHeight)-this._recipeCount}_getCombinedMax(e,t=document){return b(e.filter((e=>{let i;try{i=t.querySelector(e.elementSelector)}catch(e){}return i})).map((e=>Number(e.max)+Number(e.lazyMaxDefaulted?0:e.lazyMax))).sort(((e,t)=>t-e))[0],0)}_elementLargerThanMainContent(e){return e.offsetHeight>=this._mainContentHeight&&this._totalAvailableElements.length>1}_elementDisplayNone(e){const t=window.getComputedStyle(e,null).display;return t&&"none"===t||"none"===e.style.display}_isBelowMaxes(e,t){return this._adInjectionMap.map.length<e&&this._adInjectionMap.map.length<t}_findElementsForAds(e,t,i,n,s,o=document){this._clsOptions.targetDensityLog={onePerViewport:t,combinedMax:n,targetDensityUnits:s,targetDensityPercentage:this._pubLog.targetDensity,mainContentHeight:this._mainContentHeight,recipeCount:this._recipeCount,numberOfEls:this._totalAvailableElements.length};const r=e=>{for(const{dynamicAd:t,element:r}of this._totalAvailableElements)if(this._logDensityInfo(r,t.elementSelector,e),!(!i&&this._elementLargerThanMainContent(r)||this._elementDisplayNone(r))){if(!this._isBelowMaxes(n,s))break;this._checkElementSpacing({dynamicAd:t,element:r,insertEvery:e,targetAll:i,target:o})}!this._usedAbsoluteMinimum&&this._smallerIncrementAttempts<5&&(++this._smallerIncrementAttempts,r(this._getSmallerIncrement(e)))},a=this._getInsertEvery(e,t,s);r(a)}_getSmallerIncrement(e){let t=.6*e;return t<=this._absoluteMinimumSpacingByDevice&&(t=this._absoluteMinimumSpacingByDevice,this._usedAbsoluteMinimum=!0),t}_insertNonDensityAds(e,t,i,n=document){let o=0,r=0,l=0;e.spacing>0&&(o=window.innerHeight*e.spacing,r=o);const c=this._repeatDynamicAds(e),d=this.getElements(e.elementSelector,n);e.skip;for(let h=e.skip;h<d.length&&!(l+1>c.length);h+=e.every){let u=d[h];if(o>0){const{bottom:e}=S(u);if(e<=r)continue;r=e+o}const p=c[l],m=`${p.location}_${p.sequence}`;t.some((e=>e.name===m))&&(l+=1);const g=this.getDynamicElementId(p),y=K(e),_=Z(e),f=[e.location===a&&e.sticky&&e.sequence&&e.sequence<=5?"adthrive-sticky-sidebar":"",e.location===s&&e.sticky?"adthrive-recipe-sticky-container":"",y,_,...e.classNames],v=this.addAd(u,g,e.position,f);if(v){const o=Q(p,v);if(o.length){const r={clsDynamicAd:e,dynamicAd:p,element:v,sizes:o,name:m,infinite:n!==document};t.push(r),i.push({location:p.location,element:v}),e.location===s&&++this._recipeCount,l+=1}u=v}}}_insertAds(){const e=[];return this._adInjectionMap.filterUsed(),this._adInjectionMap.map.forEach((({el:t,dynamicAd:i,target:n},s)=>{const o=Number(i.sequence)+s,r=i.max,a=i.lazy&&o>r;i.sequence=o,i.lazy=a;const l=this._addContentAd(t,i,n);l&&(i.used=!0,e.push(l))})),e}_getInsertEvery(e,t,i){let n=this._absoluteMinimumSpacingByDevice;return this._moreAvailableElementsThanUnitsToInject(i,e)?(this._usedAbsoluteMinimum=!1,n=this._useWiderSpacing(i,e)):(this._usedAbsoluteMinimum=!0,n=this._useSmallestSpacing(t)),t&&window.innerHeight>n?window.innerHeight:n}_useWiderSpacing(e,t){return this._mainContentHeight/Math.min(e,t)}_useSmallestSpacing(e){return e&&window.innerHeight>this._absoluteMinimumSpacingByDevice?window.innerHeight:this._absoluteMinimumSpacingByDevice}_moreAvailableElementsThanUnitsToInject(e,t){return this._totalAvailableElements.length>e||this._totalAvailableElements.length>t}_logDensityInfo(e,t,i){const{onePerViewport:n,targetDensity:s,targetDensityUnits:o,combinedMax:r}=this._pubLog;this._totalAvailableElements.length}_checkElementSpacing({dynamicAd:t,element:i,insertEvery:n,targetAll:s,target:o=document}){(this._isFirstAdInjected()||this._hasProperSpacing(i,t,s,n))&&this._markSpotForContentAd(i,e({},t),o)}_isFirstAdInjected(){return!this._adInjectionMap.map.length}_markSpotForContentAd(e,t,i=document){const n="beforebegin"===t.position||"afterbegin"===t.position;this._adInjectionMap.add(e,this._getElementCoords(e,n),t,i),this._adInjectionMap.sort()}_hasProperSpacing(e,t,n,s){const o="beforebegin"===t.position||"afterbegin"===t.position,r="beforeend"===t.position||"afterbegin"===t.position,a=n||this._isElementFarEnoughFromOtherAdElements(e,s,o),l=r||this._isElementNotInRow(e,o),c=-1===e.id.indexOf(`AdThrive_${i}`);return a&&l&&c}_isElementFarEnoughFromOtherAdElements(e,t,i){const n=this._getElementCoords(e,i);let s=!1;for(let e=0;e<this._adInjectionMap.map.length;e++){const i=this._adInjectionMap.map[e].coords,o=this._adInjectionMap.map[e+1]&&this._adInjectionMap.map[e+1].coords;if(s=n-t>i&&(!o||n+t<o),s)break}return s}_isElementNotInRow(e,t){const i=e.previousElementSibling,n=e.nextElementSibling,s=t?!i&&n||i&&e.tagName!==i.tagName?n:i:n;return!(!s||0!==e.getBoundingClientRect().height)||(!s||e.getBoundingClientRect().top!==s.getBoundingClientRect().top)}_calculateMainContentHeightAndAllElements(e,t=document){const[i,n]=((e,t,i=document)=>{const[n,s]=A(e,t,i);if(0===n.length)throw Error("No Main Content Elements Found");return[Array.from(n).reduce(((e,t)=>t.offsetHeight>e.offsetHeight?t:e))||document.body,s]})(e,this._adInjectionMap,t);this._mainContentDiv=i,this._totalAvailableElements=n,this._mainContentHeight=((e,t="div #comments, section .comments")=>{const i=e.querySelector(t);return i?e.offsetHeight-i.offsetHeight:e.offsetHeight})(this._mainContentDiv)}_getElementCoords(e,t=!1){const i=e.getBoundingClientRect();return(t?i.top:i.bottom)+window.scrollY}_addContentAd(e,t,i=document){var n,s;let o=null;const r=K(t),a=Z(t),l=(null==(s=this._clsOptions.siteAds.adOptions.stickyContainerConfig)||null==(n=s.content)?void 0:n.enabled)?"adthrive-sticky-container":"",c=this.addAd(e,this.getDynamicElementId(t),t.position,[l,r,a,...t.classNames]);if(c){const e=Q(t,c);if(e.length){c.style.minHeight=this.locationToMinHeight[t.location];o={clsDynamicAd:t,dynamicAd:t,element:c,sizes:e,name:`${t.location}_${t.sequence}`,infinite:i!==document}}}return o}getDynamicElementId(e){return`AdThrive_${e.location}_${e.sequence}_${this._device}`}getElements(e,t=document){return t.querySelectorAll(e)}addAd(e,t,i,n=[]){if(!document.getElementById(t)){const s=`<div id="${t}" class="adthrive-ad ${n.join(" ")}"></div>`;e.insertAdjacentHTML(i,s)}return document.getElementById(t)}_repeatDynamicAds(t){const i=[],n=t.location===s?99:this.locationMaxLazySequence.get(t.location),o=t.lazy?b(n,0):0,r=t.max,a=t.lazyMax,l=0===o&&t.lazy?r+a:Math.min(Math.max(o-t.sequence+1,0),r+a),c=Math.max(r,l);for(let n=0;n<c;n++){const s=Number(t.sequence)+n;if("Recipe_1"!==t.name||5!==s){const o=t.lazy&&n>=r;i.push(e({},t,{sequence:s,lazy:o}))}}return i}_locationEnabled(e){const t=this._clsOptions.enabledLocations.includes(e.location),i=this._clsOptions.disableAds&&this._clsOptions.disableAds.all||document.body.classList.contains("adthrive-disable-all"),n=!document.body.classList.contains("adthrive-disable-content")&&!this._clsOptions.disableAds.reasons.has("content_plugin");return t&&!i&&n}constructor(e,t){this._clsOptions=e,this._adInjectionMap=t,this._recipeCount=0,this._mainContentHeight=0,this._mainContentDiv=null,this._totalAvailableElements=[],this._minDivHeight=250,this._densityDevice=l,this._pubLog={onePerViewport:!1,targetDensity:0,targetDensityUnits:0,combinedMax:0},this._densityMax=.99,this._smallerIncrementAttempts=0,this._absoluteMinimumSpacingByDevice=250,this._usedAbsoluteMinimum=!1,this._infPageEndOffset=0,this.locationMaxLazySequence=new Map([[s,5]]),this.locationToMinHeight={Below_Post:de,Content:de,Recipe:de,Sidebar:de};const{tablet:i,desktop:n}=this._clsOptions.siteAds.breakpoints;this._device=((e,t)=>{const i=window.innerWidth;return i>=t?"desktop":i>=e?"tablet":"phone"})(i,n),this._config=new J(e),this._clsOptions.enabledLocations=this._config.enabledLocations,this._clsTargetAdDensitySiteExperiment=this._clsOptions.siteAds.siteExperiments?new ce(this._clsOptions):null}}function ue(e,t){if(null==e)return{};var i,n,s={},o=Object.keys(e);for(n=0;n<o.length;n++)i=o[n],t.indexOf(i)>=0||(s[i]=e[i]);return s}class pe{get enabled(){return!0}}class me extends pe{setPotentialPlayersMap(){const e=this._videoConfig.players||[],t=this._filterPlayerMap(),i=e.filter((e=>"stationaryRelated"===e.type&&e.enabled));return t.stationaryRelated=i,this._potentialPlayerMap=t,this._potentialPlayerMap}_filterPlayerMap(){const e=this._videoConfig.players,t={stickyRelated:[],stickyPlaylist:[],stationaryRelated:[]};return e&&e.length?e.filter((e=>{var t;return null==(t=e.devices)?void 0:t.includes(this._device)})).reduce(((e,t)=>(e[t.type]||(v.event(this._component,"constructor","Unknown Video Player Type detected",t.type),e[t.type]=[]),t.enabled&&e[t.type].push(t),e)),t):t}_checkPlayerSelectorOnPage(e){const t=this._potentialPlayerMap[e].map((e=>({player:e,playerElement:this._getPlacementElement(e)})));return t.length?t[0]:{player:null,playerElement:null}}_getOverrideElement(e,t,i){if(e&&t){const n=document.createElement("div");t.insertAdjacentElement(e.position,n),i=n}else{const{player:e,playerElement:t}=this._checkPlayerSelectorOnPage("stickyPlaylist");if(e&&t){const n=document.createElement("div");t.insertAdjacentElement(e.position,n),i=n}}return i}_shouldOverrideElement(e){const t=e.getAttribute("override-embed");return"true"===t||"false"===t?"true"===t:!!this._videoConfig.relatedSettings&&this._videoConfig.relatedSettings.overrideEmbedLocation}_checkPageSelector(e,t,i=[]){if(e&&t&&0===i.length){return!("/"===window.location.pathname)&&v.event("VideoUtils","getPlacementElement",new Error(`PSNF: ${e} does not exist on the page`)),!1}return!0}_getElementSelector(e,t,i){return t&&t.length>i?t[i]:(v.event("VideoUtils","getPlacementElement",new Error(`ESNF: ${e} does not exist on the page`)),null)}_getPlacementElement(e){const{pageSelector:t,elementSelector:i,skip:n}=e,s=I(t),{valid:o,elements:r}=s,a=ue(s,["valid","elements"]),l=O(i),{valid:c,elements:d}=l,h=ue(l,["valid","elements"]);if(""!==t&&!o)return v.error("VideoUtils","getPlacementElement",new Error(`${t} is not a valid selector`),a),null;if(!c)return v.error("VideoUtils","getPlacementElement",new Error(`${i} is not a valid selector`),h),null;if(!this._checkPageSelector(t,o,r))return null;return this._getElementSelector(i,d,n)||null}_getEmbeddedPlayerType(e){let t=e.getAttribute("data-player-type");return t&&"default"!==t||(t=this._videoConfig.relatedSettings?this._videoConfig.relatedSettings.defaultPlayerType:"static"),this._stickyRelatedOnPage&&(t="static"),t}_getMediaId(e){const t=e.getAttribute("data-video-id");return!!t&&(this._relatedMediaIds.push(t),t)}_createRelatedPlayer(e,t,i,n){"collapse"===t?this._createCollapsePlayer(e,i):"static"===t&&this._createStaticPlayer(e,i,n)}_createCollapsePlayer(t,i){const{player:n,playerElement:s}=this._checkPlayerSelectorOnPage("stickyRelated"),o=n||this._potentialPlayerMap.stationaryRelated[0];if(o&&o.playerId){this._shouldOverrideElement(i)&&(i=this._getOverrideElement(n,s,i)),i=document.querySelector(`#cls-video-container-${t} > div`)||i,this._createStickyRelatedPlayer(e({},o,{mediaId:t}),i)}else v.error(this._component,"_createCollapsePlayer","No video player found")}_createStaticPlayer(t,i,n){if(this._potentialPlayerMap.stationaryRelated.length&&this._potentialPlayerMap.stationaryRelated[0].playerId){const s=this._potentialPlayerMap.stationaryRelated[0];this._createStationaryRelatedPlayer(e({},s,{mediaOrPlaylistId:t}),i,n)}else v.error(this._component,"_createStaticPlayer","No video player found")}_shouldRunAutoplayPlayers(){return!(!this._isVideoAllowedOnPage()||!this._potentialPlayerMap.stickyRelated.length&&!this._potentialPlayerMap.stickyPlaylist.length)}_setPlaylistMediaIdWhenStationaryOnPage(t,i){if(this._potentialPlayerMap.stationaryRelated.length&&this._potentialPlayerMap.stationaryRelated[0].playerId&&t&&t.length){const n=t[0].getAttribute("data-video-id");return n?e({},i,{mediaId:n}):i}return i}_determineAutoplayPlayers(e){const t=this._component,i="VideoManagerComponent"===t,n=this._context;if(this._stickyRelatedOnPage)return void v.event(t,"stickyRelatedOnPage",i&&{device:n&&n.device,isDesktop:this._device}||{});const{playerElement:s}=this._checkPlayerSelectorOnPage("stickyPlaylist");let{player:o}=this._checkPlayerSelectorOnPage("stickyPlaylist");o&&o.playerId&&s?(o=this._setPlaylistMediaIdWhenStationaryOnPage(e,o),this._createPlaylistPlayer(o,s)):Math.random()<.01&&setTimeout((()=>{v.event(t,"noStickyPlaylist",i&&{vendor:"none",device:n&&n.device,isDesktop:this._device}||{})}),1e3)}_initializeRelatedPlayers(e){const t=new Map;for(let i=0;i<e.length;i++){const n=e[i],s=n.offsetParent,o=this._getEmbeddedPlayerType(n),r=this._getMediaId(n);if(s&&r){const e=(t.get(r)||0)+1;t.set(r,e),this._createRelatedPlayer(r,o,n,e)}}}constructor(e,t,i){super(),this._videoConfig=e,this._component=t,this._context=i,this._stickyRelatedOnPage=!1,this._relatedMediaIds=[],this._device=x()?"desktop":"mobile",this._potentialPlayerMap=this.setPotentialPlayersMap()}}class ge extends me{init(){this._initializePlayers()}_wrapVideoPlayerWithCLS(e,t,i=0){if(e.parentNode){const n=e.offsetWidth*(9/16),s=this._createGenericCLSWrapper(n,t,i);return e.parentNode.insertBefore(s,e),s.appendChild(e),s}return null}_createGenericCLSWrapper(e,t,i){const n=document.createElement("div");return n.id=`cls-video-container-${t}`,n.className="adthrive",n.style.minHeight=`${e+i}px`,n}_getTitleHeight(){const e=document.createElement("h3");e.style.margin="10px 0",e.innerText="Title",e.style.visibility="hidden",document.body.appendChild(e);const t=window.getComputedStyle(e),i=parseInt(t.height,10),n=parseInt(t.marginTop,10),s=parseInt(t.marginBottom,10);return document.body.removeChild(e),Math.min(i+s+n,50)}_initializePlayers(){const e=document.querySelectorAll(this._IN_POST_SELECTOR);e.length&&this._initializeRelatedPlayers(e),this._shouldRunAutoplayPlayers()&&this._determineAutoplayPlayers(e)}_createStationaryRelatedPlayer(e,t,i){const n="mobile"===this._device?[400,225]:[640,360],s=p;if(t&&e.mediaOrPlaylistId){const o=`${e.mediaOrPlaylistId}_${i}`,r=this._wrapVideoPlayerWithCLS(t,o);this._playersAddedFromPlugin.push(e.mediaOrPlaylistId),r&&this._clsOptions.setInjectedVideoSlots({playerId:e.playerId,playerName:s,playerSize:n,element:r,type:"stationaryRelated"})}}_createStickyRelatedPlayer(e,t){const i="mobile"===this._device?[400,225]:[640,360],n=h;if(this._stickyRelatedOnPage=!0,this._videoConfig.mobileStickyPlayerOnPage="mobile"===this._device,t&&e.position&&e.mediaId){const s=document.createElement("div");t.insertAdjacentElement(e.position,s);const o=this._getTitleHeight(),r=this._wrapVideoPlayerWithCLS(s,e.mediaId,this._WRAPPER_BAR_HEIGHT+o);this._playersAddedFromPlugin.push(e.mediaId),r&&this._clsOptions.setInjectedVideoSlots({playlistId:e.playlistId,playerId:e.playerId,playerSize:i,playerName:n,element:s,type:"stickyRelated"})}}_createPlaylistPlayer(e,t){const i=e.playlistId,n="mobile"===this._device?u:d,s="mobile"===this._device?[400,225]:[640,360];this._videoConfig.mobileStickyPlayerOnPage=!0;const o=document.createElement("div");t.insertAdjacentElement(e.position,o);let r=this._WRAPPER_BAR_HEIGHT;e.title&&(r+=this._getTitleHeight());const a=this._wrapVideoPlayerWithCLS(o,i,r);this._playersAddedFromPlugin.push(`playlist-${i}`),a&&this._clsOptions.setInjectedVideoSlots({playlistId:e.playlistId,playerId:e.playerId,playerSize:s,playerName:n,element:o,type:"stickyPlaylist"})}_isVideoAllowedOnPage(){const e=this._clsOptions.disableAds;if(e&&e.video){let t="";e.reasons.has("video_tag")?t="video tag":e.reasons.has("video_plugin")?t="video plugin":e.reasons.has("video_page")&&(t="command queue");const i=t?"ClsVideoInsertionMigrated":"ClsVideoInsertion";return v.error(i,"isVideoAllowedOnPage",new Error(`DBP: Disabled by publisher via ${t||"other"}`)),!1}return!this._clsOptions.videoDisabledFromPlugin}constructor(e,t){super(e,"ClsVideoInsertion"),this._videoConfig=e,this._clsOptions=t,this._IN_POST_SELECTOR=".adthrive-video-player",this._WRAPPER_BAR_HEIGHT=36,this._playersAddedFromPlugin=[],t.removeVideoTitleWrapper&&(this._WRAPPER_BAR_HEIGHT=0)}}class ye{add(e,t,i,n=document){this._map.push({el:e,coords:t,dynamicAd:i,target:n})}get map(){return this._map}sort(){this._map.sort((({coords:e},{coords:t})=>e-t))}filterUsed(){this._map=this._map.filter((({dynamicAd:e})=>!e.used))}reset(){this._map=[]}constructor(){this._map=[]}}class _e extends ye{}const fe=e=>{const t=f(),i=(()=>{const e=w()?"mobile":"tablet";return x(g)?"desktop":e})(),n=e.siteAdsProfiles;let s=null;if(n&&n.length)for(const e of n){const n=e.targeting.device,o=e.targeting.browserEngine,r=n&&n.length&&n.includes(i),a=o&&o.length&&o.includes(t);r&&a&&(s=e)}return s};try{(()=>{const e=new R;e&&e.enabled&&(e.siteAds&&(e=>{const t=fe(e);if(t){const e=t.profileId;document.body.classList.add(`raptive-profile-${e}`)}})(e.siteAds),new he(e,new _e).start(),new ge(new H(e),e).init())})()}catch(e){v.error("CLS","pluginsertion-iife",e),window.adthriveCLS&&(window.adthriveCLS.injectedFromPlugin=!1)}}();
</script><script data-no-optimize="1" data-cfasync="false">(function () {var clsElements = document.querySelectorAll("script[id^='cls-']"); window.adthriveCLS && clsElements && clsElements.length === 0 ? window.adthriveCLS.injectedFromPlugin = false : ""; })();</script><script type="rocketlazyloadscript" data-rocket-type="text/javascript">(function (d) {var f = d.getElementsByTagName('SCRIPT')[0],p = d.createElement('SCRIPT');p.type = 'text/javascript';p.async = true;p.src = '//assets.pinterest.com/js/pinit.js';f.parentNode.insertBefore(p, f);})(document);</script><script type="rocketlazyloadscript">window.wprm_recipes = {"recipe-34191":{"type":"food","name":"Crunchy Snap Peas &amp; Carrots Salad with Sesame Lime Dressing","slug":"wprm-crunchy-snap-peas-carrots-salad-with-sesame-lime-dressing","image_url":"https:\/\/thefirstmess.com\/wp-content\/uploads\/2025\/04\/crunchy-snap-peas-and-carrots-salad-03.jpg","rating":{"count":0,"total":0,"average":0,"type":{"comment":0,"no_comment":0,"user":0},"user":0},"ingredients":[{"uid":1,"amount":"1","unit":"teaspoon","name":"lime zest","notes":"","unit_id":2934,"id":837,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"teaspoon","unitParsed":"teaspoon"}}},{"uid":2,"amount":"2","unit":"tablespoons","name":"lime juice","notes":"","unit_id":2932,"id":619,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"2","unit":"tablespoons","unitParsed":"tablespoons"}}},{"uid":3,"amount":"1","unit":"clove","name":"garlic, finely minced with a Microplane","notes":"","unit_id":2961,"id":3933,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"clove","unitParsed":"clove"}}},{"uid":4,"amount":"\u00bd","unit":"teaspoon","name":"ground cumin","notes":"","unit_id":2934,"id":466,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bd","unit":"teaspoon","unitParsed":"teaspoon"}}},{"uid":5,"amount":"\u00bd","unit":"teaspoon","name":"ground coriander","notes":"","unit_id":2934,"id":465,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bd","unit":"teaspoon","unitParsed":"teaspoon"}}},{"uid":6,"amount":"1","unit":"teaspoon","name":"Tamari soy sauce","notes":"","unit_id":2934,"id":601,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"teaspoon","unitParsed":"teaspoon"}}},{"uid":7,"amount":"1-3","unit":"teaspoons","name":"maple syrup","notes":"(see note)","unit_id":2939,"id":582,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1-3","unit":"teaspoons","unitParsed":"teaspoons"}}},{"uid":8,"amount":"2","unit":"teaspoons","name":"toasted sesame oil","notes":"","unit_id":2939,"id":1001,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"2","unit":"teaspoons","unitParsed":"teaspoons"}}},{"uid":9,"amount":"","unit":"","name":"sea salt and ground black pepper, to taste","notes":"","id":470,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"","unit":"","unitParsed":""}}},{"uid":10,"amount":"\u2153","unit":"cup","name":"avocado oil","notes":"","unit_id":2929,"id":868,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u2153","unit":"cup","unitParsed":"cup"}}},{"uid":12,"amount":"350","unit":"grams","name":"carrots","notes":"(about 3 medium)","unit_id":3069,"id":5059,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"350","unit":"grams","unitParsed":"grams"}}},{"uid":13,"amount":"227","unit":"grams","name":"snap peas","notes":"","unit_id":3069,"id":5060,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"227","unit":"grams","unitParsed":"grams"}}},{"uid":14,"amount":"\u2153","unit":"cup","name":"cilantro\/Thai basil leaves","notes":"(or a combination of both)","unit_id":2929,"id":5061,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u2153","unit":"cup","unitParsed":"cup"}}},{"uid":15,"amount":"1","unit":"tablespoon","name":"toasted sesame seeds","notes":"","unit_id":2936,"id":1346,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"tablespoon","unitParsed":"tablespoon"}}},{"uid":16,"amount":"","unit":"","name":"sea salt and ground black pepper, to taste","notes":"","id":470,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"","unit":"","unitParsed":""}}},{"uid":17,"amount":"1","unit":"medium","name":"ripe avocado","notes":"","unit_id":2933,"id":2078,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"medium","unitParsed":"medium"}}}],"originalServings":"4","originalServingsParsed":4,"currentServings":"4","currentServingsParsed":4,"currentServingsFormatted":"4","currentServingsMultiplier":1,"originalSystem":1,"currentSystem":1,"unitSystems":[1],"originalAdvancedServings":{"shape":"round","unit":"inch","diameter":0,"width":0,"length":0,"height":0},"currentAdvancedServings":{"shape":"round","unit":"inch","diameter":0,"width":0,"length":0,"height":0}}}</script><link data-minify="1" rel='stylesheet' id='wprm-public-css' href='https://thefirstmess.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker/dist/public-modern.css?ver=1746733132' type='text/css' media='all' />
<link data-minify="1" rel='stylesheet' id='wprmp-public-css' href='https://thefirstmess.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker-premium/dist/public-premium.css?ver=1746733132' type='text/css' media='all' />
<style id='core-block-supports-inline-css' type='text/css'>
.wp-block-gallery.wp-block-gallery-1{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}
</style>
<script type="text/javascript" src="https://thefirstmess.com/wp-includes/js/comment-reply.min.js?ver=eac3ff6c141b27b729fdcfd267777bb0" id="comment-reply-js" async="async" data-wp-strategy="async"></script>
<script type="text/javascript" src="https://thefirstmess.com/wp-content/themes/thefirstmess2022/js/slick.min.js?ver=1.8.1" id="slick-js" data-rocket-defer defer></script>
<script type="text/javascript" src="https://thefirstmess.com/wp-content/themes/thefirstmess2022/js/jquery.mobile.events.min.js?ver=1.4.5" id="dmc-mobile-js-js" data-rocket-defer defer></script>
<script data-minify="1" type="text/javascript" src="https://thefirstmess.com/wp-content/cache/min/1/wp-content/themes/thefirstmess2022/js/functions.js?ver=1746733120" id="dmc-functions-js-js" data-rocket-defer defer></script>
<script type="text/javascript" id="wprm-public-js-extra">
/* <![CDATA[ */
var wprm_public = {"user":"0","endpoints":{"analytics":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/analytics","integrations":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/integrations","manage":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/manage","utilities":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/utilities"},"settings":{"jump_output_hash":true,"features_comment_ratings":true,"template_color_comment_rating":"#343434","instruction_media_toggle_default":"on","video_force_ratio":false,"analytics_enabled":false,"google_analytics_enabled":true,"print_new_tab":true,"print_recipe_identifier":"slug"},"post_id":"34193","home_url":"https:\/\/thefirstmess.com\/","print_slug":"wprm_print","permalinks":"\/%year%\/%monthnum%\/%day%\/%postname%\/","ajax_url":"https:\/\/thefirstmess.com\/wp-admin\/admin-ajax.php","nonce":"213c20bb13","api_nonce":"5d2312c54b","translations":[],"version":{"free":"9.8.3","premium":"9.8.2"}};
/* ]]> */
</script>
<script type="text/javascript" src="https://thefirstmess.com/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=9.8.3" id="wprm-public-js" data-rocket-defer defer></script>
<script type="text/javascript" id="wprmp-public-js-extra">
/* <![CDATA[ */
var wprmp_public = {"user":"0","endpoints":{"private_notes":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/private-notes","user_rating":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/user-rating"},"settings":{"recipe_template_mode":"modern","features_adjustable_servings":true,"adjustable_servings_url":false,"adjustable_servings_url_param":"servings","adjustable_servings_round_to_decimals":"2","unit_conversion_remember":false,"unit_conversion_temperature":false,"unit_conversion_temperature_precision":false,"unit_conversion_system_1_temperature":false,"unit_conversion_system_2_temperature":false,"unit_conversion_advanced_servings_conversion":false,"unit_conversion_system_1_length_unit":false,"unit_conversion_system_2_length_unit":false,"fractions_enabled":false,"fractions_use_mixed":true,"fractions_use_symbols":true,"fractions_max_denominator":"8","unit_conversion_system_1_fractions":false,"unit_conversion_system_2_fractions":false,"unit_conversion_enabled":false,"decimal_separator":"point","features_comment_ratings":true,"features_user_ratings":true,"user_ratings_type":"modal","user_ratings_force_comment_scroll_to_smooth":true,"user_ratings_modal_title":"Rate This Recipe","user_ratings_thank_you_title":"Rate This Recipe","user_ratings_thank_you_message_with_comment":"<p>Thank you for your review!<\/p>","user_ratings_problem_message":"<p>There was a problem rating this recipe. Please try again later.<\/p>","user_ratings_force_comment_scroll_to":"","user_ratings_open_url_parameter":"rate","user_ratings_require_comment":true,"user_ratings_require_name":true,"user_ratings_require_email":true,"user_ratings_comment_suggestions_enabled":"never","rating_details_zero":"No ratings yet","rating_details_one":"%average% from 1 vote","rating_details_multiple":"%average% from %votes% votes","rating_details_user_voted":"(Your vote: %user%)","rating_details_user_not_voted":"(Click on the stars to vote!)","servings_changer_display":"tooltip_slider","template_ingredient_list_style":"disc","template_instruction_list_style":"decimal","template_color_icon":"#343434"},"timer":{"sound_file":"https:\/\/thefirstmess.com\/wp-content\/plugins\/wp-recipe-maker-premium\/assets\/sounds\/alarm.mp3","text":{"start_timer":"Click to Start Timer"},"icons":{"pause":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M9,2H4C3.4,2,3,2.4,3,3v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C10,2.4,9.6,2,9,2z\"\/><path fill=\"#fffefe\" d=\"M20,2h-5c-0.6,0-1,0.4-1,1v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C21,2.4,20.6,2,20,2z\"\/><\/g><\/svg>","play":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M6.6,2.2C6.3,2,5.9,1.9,5.6,2.1C5.2,2.3,5,2.6,5,3v18c0,0.4,0.2,0.7,0.6,0.9C5.7,22,5.8,22,6,22c0.2,0,0.4-0.1,0.6-0.2l12-9c0.3-0.2,0.4-0.5,0.4-0.8s-0.1-0.6-0.4-0.8L6.6,2.2z\"\/><\/g><\/svg>","close":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M22.7,4.3l-3-3c-0.4-0.4-1-0.4-1.4,0L12,7.6L5.7,1.3c-0.4-0.4-1-0.4-1.4,0l-3,3c-0.4,0.4-0.4,1,0,1.4L7.6,12l-6.3,6.3c-0.4,0.4-0.4,1,0,1.4l3,3c0.4,0.4,1,0.4,1.4,0l6.3-6.3l6.3,6.3c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l3-3c0.4-0.4,0.4-1,0-1.4L16.4,12l6.3-6.3C23.1,5.3,23.1,4.7,22.7,4.3z\"\/><\/g><\/svg>"}},"recipe_submission":{"max_file_size":838860800,"text":{"image_size":"The file is too large. Maximum size:"}}};
/* ]]> */
</script>
<script type="text/javascript" src="https://thefirstmess.com/wp-content/plugins/wp-recipe-maker-premium/dist/public-premium.js?ver=9.8.2" id="wprmp-public-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://challenges.cloudflare.com/turnstile/v0/api.js?render=explicit" id="cfturnstile-js" defer="defer" data-wp-strategy="defer"></script>
<script data-minify="1" defer type="text/javascript" src="https://thefirstmess.com/wp-content/cache/min/1/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1746733133" id="akismet-frontend-js"></script>
<script type="rocketlazyloadscript"></script><div id="wprm-popup-modal-user-rating" class="wprm-popup-modal wprm-popup-modal-user-rating" data-type="user-rating" aria-hidden="true">
		<div class="wprm-popup-modal__overlay" tabindex="-1">
		<div class="wprm-popup-modal__container" role="dialog" aria-modal="true" aria-labelledby="wprm-popup-modal-user-rating-title">
			<header class="wprm-popup-modal__header">
				<h2 class="wprm-popup-modal__title" id="wprm-popup-modal-user-rating-title">
					Rate This Recipe				</h2>

				<button class="wprm-popup-modal__close" aria-label="Close" data-micromodal-close></button>
			</header>

			<div class="wprm-popup-modal__content" id="wprm-popup-modal-user-rating-content">
				<form id="wprm-user-ratings-modal-stars-form" onsubmit="window.WPRecipeMaker.userRatingModal.submit( this ); return false;">
	<div class="wprm-user-ratings-modal-recipe-name"></div>
	<div class="wprm-user-ratings-modal-stars-container">
		<fieldset class="wprm-user-ratings-modal-stars">
			<legend>Your vote:</legend>
			<input aria-label="Don&#039;t rate this recipe" name="wprm-user-rating-stars" value="0" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="margin-left: -31px !important; width: 34px !important; height: 34px !important;" checked="checked"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
    <polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-0" fill="none" stroke="#23443e" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
  </defs>
	<use xlink:href="#wprm-modal-star-empty-0" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-0" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-0" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-0" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-0" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 1 out of 5 stars" name="wprm-user-rating-stars" value="1" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
	<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-1" fill="none" stroke="#23443e" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-modal-star-full" id="wprm-modal-star-full-1" fill="#23443e" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-modal-star-full-1" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-1" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-1" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-1" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-1" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 2 out of 5 stars" name="wprm-user-rating-stars" value="2" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
	<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-2" fill="none" stroke="#23443e" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-modal-star-full" id="wprm-modal-star-full-2" fill="#23443e" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-modal-star-full-2" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-2" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-2" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-2" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-2" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 3 out of 5 stars" name="wprm-user-rating-stars" value="3" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
	<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-3" fill="none" stroke="#23443e" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-modal-star-full" id="wprm-modal-star-full-3" fill="#23443e" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-modal-star-full-3" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-3" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-3" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-3" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-3" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 4 out of 5 stars" name="wprm-user-rating-stars" value="4" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
	<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-4" fill="none" stroke="#23443e" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-modal-star-full" id="wprm-modal-star-full-4" fill="#23443e" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-modal-star-full-4" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-4" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-4" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-4" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-4" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 5 out of 5 stars" name="wprm-user-rating-stars" value="5" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
	<path class="wprm-modal-star-full" id="wprm-modal-star-full-5" fill="#23443e" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-modal-star-full-5" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-5" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-5" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-5" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-5" x="119.14285714286" y="2.5714285714286" />
</svg></span>		</fieldset>
	</div>
			<textarea name="wprm-user-rating-comment" class="wprm-user-rating-modal-comment" placeholder="To leave a star rating, please share your feedback." oninput="window.WPRecipeMaker.userRatingModal.checkFields();" aria-label="Comment"></textarea>
	<input type="hidden" name="wprm-user-rating-recipe-id" value="" />
	<div class="wprm-user-rating-modal-comment-meta">
				<div class="wprm-user-rating-modal-field">
			<label for="wprm-user-rating-name">Name *</label>
			<input type="text" id="wprm-user-rating-name" name="wprm-user-rating-name" value="" placeholder="" />		</div>
		<div class="wprm-user-rating-modal-field">
			<label for="wprm-user-rating-email">Email *</label>
			<input type="email" id="wprm-user-rating-email" name="wprm-user-rating-email" value="" placeholder="" />
		</div>	</div>
	<footer class="wprm-popup-modal__footer">
				<button type="submit" class="wprm-popup-modal__btn wprm-user-rating-modal-submit-comment">Rate and Review Recipe</button>
		<div id="wprm-user-rating-modal-errors">
			<div id="wprm-user-rating-modal-error-rating">A rating is required</div>
			<div id="wprm-user-rating-modal-error-name">A name is required</div>
			<div id="wprm-user-rating-modal-error-email">An email is required</div>
		</div>
		<div id="wprm-user-rating-modal-waiting">
			<div class="wprm-loader"></div>
		</div>
	</footer>
</form>
<div id="wprm-user-ratings-modal-message"></div>			</div>

					</div>
  	</div>
	</div><script>!function(){"use strict";!function(e){if(-1===e.cookie.indexOf("__adblocker")){e.cookie="__adblocker=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/";var t=new XMLHttpRequest;t.open("GET","https://ads.adthrive.com/abd/abd.js",!0),t.onreadystatechange=function(){if(XMLHttpRequest.DONE===t.readyState)if(200===t.status){var a=e.createElement("script");a.innerHTML=t.responseText,e.getElementsByTagName("head")[0].appendChild(a)}else{var n=new Date;n.setTime(n.getTime()+3e5),e.cookie="__adblocker=true; expires="+n.toUTCString()+"; path=/"}},t.send()}}(document)}();
</script><script type="rocketlazyloadscript">!function(){"use strict";var e;e=document,function(){var t,n;function r(){var t=e.createElement("script");t.src="https://cafemedia-com.videoplayerhub.com/galleryplayer.js",e.head.appendChild(t)}function a(){var t=e.cookie.match("(^|[^;]+)\\s*__adblocker\\s*=\\s*([^;]+)");return t&&t.pop()}function c(){clearInterval(n)}return{init:function(){var e;"true"===(t=a())?r():(e=0,n=setInterval((function(){100!==e&&"false"!==t||c(),"true"===t&&(r(),c()),t=a(),e++}),50))}}}().init()}();
</script><script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://thefirstmess.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script id="bs-cache-speculation-rules" type="speculationrules">
{"prerender":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/uploads\/*","\/wp-content\/themes\/*","\/checkout\/*","\/checkouts\/*","\/logout\/*","\/*\/delete\/*","\/*\/print\/*","\/wprm_print\/*","\/*\\?*(^|&)(_wpnonce|ac|add-to-cart|add_to_cart|add-to-checkout|attachment_id|cart|download_id|download_media_file|edd_action|edd_options|media_file|media_type|wlmapi|wc-api)=*"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prerender, .no-prerender a"}}]},"eagerness":"moderate"}]}
</script>
<script id="bs-cache-instant-prefetch-invoker-js" type="text/javascript">
/* <![CDATA[ */
document.addEventListener("DOMContentLoaded",function(){if(!(typeof HTMLScriptElement !== "undefined" && typeof HTMLScriptElement.supports === "function" && HTMLScriptElement.supports && HTMLScriptElement.supports("speculationrules"))) {document.querySelectorAll('script[type="speculationrules"]').forEach(script => script.remove());var bs_cache_instant_prefetch_script_element = document.createElement("script");bs_cache_instant_prefetch_script_element.id = "bs-cache-instant-prefetch-js", bs_cache_instant_prefetch_script_element.type = "module", bs_cache_instant_prefetch_script_element.src = "https://thefirstmess.com/wp-content/plugins/bigscoots-cache/assets/js/bs-cache-instant-prefetch-page.min.js", document.body.appendChild(bs_cache_instant_prefetch_script_element)}})
/* ]]> */
</script>
<!-- Hi there! Copyright 2021 Dan Miller Coding -->
</body>
</html><!--
Performance optimized by Redis Object Cache. Learn more: https://wprediscache.com

Retrieved 4529 objects (1 MB) from Redis using PhpRedis (v5.3.7).
-->