-
Notifications
You must be signed in to change notification settings - Fork 472
/
index2.html
1364 lines (1285 loc) · 461 KB
/
index2.html
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
<!DOCTYPE html><!-- Last Published: Fri Dec 06 2024 00:51:42 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="e2b-dev.webflow.io" data-wf-page="6717bb6618f6a40d53ac292f" data-wf-site="6717bb6618f6a40d53ac2929" lang="en"><head><meta charset="utf-8"/><title>Open-source Code Interpreting for AI Apps — E2B</title><meta content="Add code interpreting in your AI apps and AI agents." name="description"/><meta content="Open-source Code Interpreting for AI Apps — E2B" property="og:title"/><meta content="Add code interpreting in your AI apps and AI agents." property="og:description"/><meta content="https://cdn.prod.website-files.com/6717bb6618f6a40d53ac2929/6751a1cb33c1e000eaf3874c_e2b-share-image.png" property="og:image"/><meta content="Open-source Code Interpreting for AI Apps — E2B" property="twitter:title"/><meta content="Add code interpreting in your AI apps and AI agents." property="twitter:description"/><meta content="https://cdn.prod.website-files.com/6717bb6618f6a40d53ac2929/6751a1cb33c1e000eaf3874c_e2b-share-image.png" property="twitter:image"/><meta property="og:type" content="website"/><meta content="summary_large_image" name="twitter:card"/><meta content="width=device-width, initial-scale=1" name="viewport"/><link href="https://cdn.prod.website-files.com/6717bb6618f6a40d53ac2929/css/e2b-dev.webflow.deb31f633.min.css" rel="stylesheet" type="text/css"/><style>@media (min-width:992px) {html.w-mod-js:not(.w-mod-ix) [data-w-id="0f5a298f-5538-18aa-6088-cfdeb3ddee5f"] {-webkit-transform:translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);}html.w-mod-js:not(.w-mod-ix) [data-w-id="ec9502f6-c47c-5ca9-dd73-79d088ce7e41"] {-webkit-transform:translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);}}</style><link href="https://fonts.googleapis.com" rel="preconnect"/><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous"/><script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script><script type="text/javascript">WebFont.load({ google: { families: ["IBM Plex Sans:regular,500,600,700"] }});</script><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/6717bb6618f6a40d53ac2929/6751bc96a1a8a0ec9a69a57c_faviconV2.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/6717bb6618f6a40d53ac2929/6751bcfd480f0e8498dc744b_touch.png" rel="apple-touch-icon"/><link href="https://e2b.dev/" rel="canonical"/><style>
body {
font-feature-settings: "ss02";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
body {
font-feature-settings: "ss03";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>
<!-- Disable scrolling -->
<script defer src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-scrolldisable@1/scrolldisable.js"></script>
<!-- Light/Dark -->
<script defer tr-color-vars="content-primary,content-secondary,content-tertiary,content-quad,content-on-black,content-dark80,content-dark60,content-dark40,content-dark20,cta-primary,cta-primary-hover,stroke-primary,stroke-primary-hover,stroke-codesnippet,stroke-on-black,bg-primary,bg-secondary,bg-codesnippet"
duration="0.25"
ease="power1.out">
function colorModeToggle() {
function attr(defaultVal, attrVal) {
const defaultValType = typeof defaultVal;
if (typeof attrVal !== "string" || attrVal.trim() === "") return defaultVal;
if (attrVal === "true" && defaultValType === "boolean") return true;
if (attrVal === "false" && defaultValType === "boolean") return false;
if (isNaN(attrVal) && defaultValType === "string") return attrVal;
if (!isNaN(attrVal) && defaultValType === "number") return +attrVal;
return defaultVal;
}
const htmlElement = document.documentElement;
const computed = getComputedStyle(htmlElement);
let toggleEl;
let togglePressed = "false";
let previousTheme = "light"; // Default previous theme
const scriptTag = document.querySelector("[tr-color-vars]");
if (!scriptTag) {
console.warn("Script tag with tr-color-vars attribute not found");
return;
}
let colorModeDuration = attr(0.5, scriptTag.getAttribute("duration"));
let colorModeEase = attr("power1.out", scriptTag.getAttribute("ease"));
const cssVariables = scriptTag.getAttribute("tr-color-vars");
if (!cssVariables.length) {
console.warn("Value of tr-color-vars attribute not found");
return;
}
let lightColors = {};
let darkColors = {};
cssVariables.split(",").forEach(function (item) {
let lightValue = computed.getPropertyValue(`--color--${item}`);
let darkValue = computed.getPropertyValue(`--dark--${item}`);
if (lightValue.length) {
if (!darkValue.length) darkValue = lightValue;
lightColors[`--color--${item}`] = lightValue;
darkColors[`--color--${item}`] = darkValue;
}
});
if (!Object.keys(lightColors).length) {
console.warn("No variables found matching tr-color-vars attribute value");
return;
}
function setColors(colorObject, animate) {
if (typeof gsap !== "undefined" && animate) {
gsap.to(htmlElement, {
...colorObject,
duration: colorModeDuration,
ease: colorModeEase,
});
} else {
Object.keys(colorObject).forEach(function (key) {
htmlElement.style.setProperty(key, colorObject[key]);
});
}
}
function toggleBgDottedFilter(isDark) {
const bgDottedElements = document.querySelectorAll(".bg-dotted");
bgDottedElements.forEach((el) => {
el.style.filter = isDark ? "invert(1)" : "none";
});
}
function applyThemeBasedOnPreference(isDark) {
if (isDark) {
htmlElement.classList.add("dark-mode");
setColors(darkColors, false);
toggleBgDottedFilter(true); // Ensure the filter matches dark mode
togglePressed = "true";
previousTheme = "dark";
} else {
htmlElement.classList.remove("dark-mode");
setColors(lightColors, false);
toggleBgDottedFilter(false); // Ensure the filter matches light mode
togglePressed = "false";
previousTheme = "light";
}
}
function initializeTheme() {
const storagePreference = localStorage.getItem("dark-mode");
const isDark = storagePreference === "true";
applyThemeBasedOnPreference(isDark);
togglePressed = isDark ? "true" : "false";
}
function goDark(dark, animate) {
localStorage.setItem("dark-mode", dark ? "true" : "false");
applyThemeBasedOnPreference(dark, animate);
}
function checkPreference(e) {
applyThemeBasedOnPreference(e.matches);
}
const colorPreference = window.matchMedia("(prefers-color-scheme: dark)");
colorPreference.addEventListener("change", (e) => {
checkPreference(e);
});
window.addEventListener("DOMContentLoaded", () => {
toggleEl = document.querySelectorAll("[tr-color-toggle]");
// Initialize the theme from localStorage or default system preference
initializeTheme();
toggleEl.forEach((element) => {
element.setAttribute("aria-label", "View Dark Mode");
element.setAttribute("role", "button");
element.setAttribute("aria-pressed", togglePressed);
});
document.addEventListener("click", (e) => {
const targetElement = e.target.closest("[tr-color-toggle]");
if (targetElement) {
const isDark = htmlElement.classList.contains("dark-mode");
goDark(!isDark, true);
}
});
});
}
colorModeToggle();
</script>
<script>
document.addEventListener("DOMContentLoaded", function() {
const mainSection = document.getElementById("main");
const headerDivider = document.querySelector(".header-divider");
// Function to check the position of #main and update the divider opacity
function checkPosition() {
const rect = mainSection.getBoundingClientRect();
if (rect.top <= 100) {
headerDivider.style.opacity = "1"; // Show the divider
} else {
headerDivider.style.opacity = "0"; // Hide the divider
}
}
// Check position once on page load
checkPosition();
// Listen to scroll events to update as you scroll
window.addEventListener("scroll", checkPosition);
});
</script>
<!-- Custom right click -->
<script>
document.addEventListener("DOMContentLoaded", function () {
// Select the div that triggers the contextual menu and the menu itself
const triggerDiv = document.getElementById("right-click-menu");
const contextMenu = document.querySelector(".logo-right-click");
// Function to toggle the visibility of the contextual menu
function toggleContextMenu(event) {
event.preventDefault(); // Prevent any default action
const menuVisible = !contextMenu.classList.contains("hidden");
// Hide the menu if it's already visible
if (menuVisible) {
contextMenu.classList.add("hidden");
} else {
// Position the menu relative to the click and show it
contextMenu.classList.remove("hidden");
}
}
// Hide the contextual menu when clicking outside
function hideContextMenu() {
contextMenu.classList.add("hidden");
}
// Add event listeners
triggerDiv.addEventListener("contextmenu", toggleContextMenu); // Right-click opens menu
document.addEventListener("click", hideContextMenu); // Click outside closes menu
// Stop clicks on the menu itself from hiding it
contextMenu.addEventListener("click", function (event) {
event.stopPropagation();
});
});
</script><script>
document.addEventListener("DOMContentLoaded", function () {
// Select the tab with the class .external-link
const externalTab = document.querySelector('.external-link');
// Ensure the external tab is correctly set up
if (externalTab) {
// Disable Webflow's tab-switching behavior
externalTab.addEventListener('click', function (e) {
e.preventDefault(); // Prevent default tab behavior
e.stopImmediatePropagation(); // Stop all propagation, including Webflow's handlers
window.open('https://e2b.dev/docs/quickstart/connect-llms', '_blank'); // Open the external link in a new tab
});
// Optionally, set it to look like a regular link for clarity (optional)
externalTab.style.cursor = 'pointer';
}
});
</script></head><body class="body"><div class="page"><div class="header"><div class="toast-msg-bar"><div class="toast-msg-wrap"><div class="toast-msg-star"><div class="label on-black toast-msg-star-1">*<span class="label brand">*</span>*</div><div class="label on-black toast-msg-star-2"><span class="label brand">*</span>*<span class="label brand">*</span></div></div><a href="https://x.com/mlejva/status/1846568274009698402" target="_blank" class="toast-msg w-inline-block"><div class="label on-black center">we just closed a new funding round of <span class="label brand">$11.5M</span> LED by Decibel</div><div class="toast-msg-divider"></div><div class="label on-black">LEARN MORE →</div></a><div class="toast-msg-star"><div class="label on-black toast-msg-star-1">*<span class="label brand">*</span>*</div><div class="label on-black toast-msg-star-2"><span class="label brand">*</span>*<span class="label brand">*</span></div></div></div></div><div class="header-wrap-out"><div fs-scrolldisable-element="smart-nav" data-animation="default" data-collapse="medium" data-duration="1" data-easing="ease" data-easing2="ease" role="banner" class="navbar w-nav"><div class="navbar-container w-container"><div id="w-node-_9edbb656-9d1b-0e60-5e5a-b499e2f80eeb-7dfb0612" class="navbar-menu-button w-nav-button"><div class="icon-24 menu-open w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 12H20" stroke="currentColor" stroke-width="2"/>
<path d="M4 16H20" stroke="currentColor" stroke-width="2"/>
<path d="M4 8H20" stroke="currentColor" stroke-width="2"/>
</svg></div><div class="icon-24 menu-close w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.4116 11.9971L18.3656 7.04312L16.9514 5.62891L11.9974 10.5829L7.04703 5.63256L5.63281 7.04677L10.5832 11.9971L5.6377 16.9426L7.05191 18.3568L11.9974 13.4113L16.9465 18.3605L18.3607 16.9463L13.4116 11.9971Z" fill="currentColor" />
</svg></div></div><div id="w-node-_6f395481-6352-fe11-0c0b-f1987dfb0647-7dfb0612" class="navbar-logo"><a id="right-click-menu" ms-code-context-item="1" aria-label="logo" href="/" aria-current="page" class="logo w-node-_6f395481-6352-fe11-0c0b-f1987dfb0648-7dfb0612 w-inline-block w--current"><div class="logo-shape w-embed"><svg width="26" height="28" viewBox="0 0 26 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.8458 19.3029C21.6671 19.3029 21.5555 19.4963 21.6448 19.6511L23.5141 22.889C23.6175 23.0681 23.4528 23.2828 23.253 23.2293L17.5836 21.7101C17.3359 21.6437 17.0813 21.7907 17.0149 22.0384L15.4958 27.7079C15.4422 27.9077 15.1739 27.943 15.0705 27.7639L13.2008 24.5254C13.1115 24.3707 12.8881 24.3707 12.7987 24.5254L10.929 27.7639C10.8256 27.943 10.5573 27.9077 10.5038 27.7079L8.9846 22.0384C8.91824 21.7907 8.66365 21.6437 8.41597 21.7101L2.74652 23.2293C2.54675 23.2828 2.38199 23.0681 2.4854 22.889L4.35472 19.6511C4.44406 19.4963 4.33238 19.3029 4.15368 19.3029L0.415222 19.3028C0.208406 19.3028 0.104834 19.0528 0.251077 18.9066L4.40145 14.7563C4.58277 14.5749 4.58277 14.281 4.40145 14.0997L0.251079 9.94927C0.104837 9.80302 0.208414 9.55297 0.415232 9.55297L4.15328 9.55302C4.33198 9.55302 4.44368 9.35957 4.35433 9.20481L2.4854 5.96763C2.38199 5.78852 2.54676 5.5738 2.74652 5.62733L8.41597 7.14652C8.66365 7.21288 8.91824 7.0659 8.98461 6.81822L10.5038 1.14869C10.5573 0.948918 10.8256 0.913592 10.929 1.0927L12.7987 4.33116C12.8881 4.48593 13.1114 4.48593 13.2008 4.33116L15.0705 1.0927C15.1739 0.913592 15.4422 0.948917 15.4957 1.14869L17.0149 6.81822C17.0813 7.0659 17.3359 7.21288 17.5835 7.14652L23.253 5.62733C23.4528 5.5738 23.6175 5.78852 23.5141 5.96763L21.6452 9.20481C21.5558 9.35957 21.6675 9.55302 21.8462 9.55302L25.5844 9.55297C25.7912 9.55297 25.8948 9.80302 25.7486 9.94927L21.5982 14.0997C21.4169 14.281 21.4169 14.5749 21.5982 14.7563L25.7486 18.9066C25.8948 19.0528 25.7912 19.3028 25.5844 19.3028L21.8458 19.3029ZM20.419 10.404C20.5869 10.236 20.4241 9.9541 20.1947 10.0156L15.1461 11.3684C14.8984 11.4348 14.6438 11.2878 14.5775 11.0401L13.224 5.98888C13.1625 5.75947 12.837 5.75947 12.7755 5.98888L11.422 11.0401C11.3557 11.2878 11.1011 11.4348 10.8534 11.3684L5.80496 10.0156C5.57555 9.95414 5.41278 10.2361 5.58072 10.404L9.27643 14.0997C9.45774 14.281 9.45774 14.575 9.27643 14.7563L5.57985 18.4528C5.41191 18.6208 5.57467 18.9027 5.80409 18.8412L10.8534 17.4882C11.1011 17.4218 11.3557 17.5688 11.422 17.8165L12.7755 22.8677C12.837 23.0972 13.1625 23.0972 13.224 22.8677L14.5775 17.8165C14.6439 17.5688 14.8984 17.4218 15.1461 17.4882L20.1956 18.8413C20.425 18.9027 20.5878 18.6208 20.4198 18.4529L16.7232 14.7563C16.5419 14.575 16.5419 14.281 16.7232 14.0997L20.419 10.404Z" fill="currentColor" />
</svg></div></a><div class="logo-right-click hidden"><div class="icon-right-click-arrow w-embed"><svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5 0L10 5H0L5 0Z" fill="black" style="fill:black;fill-opacity:1;"/>
</svg></div><div class="logo-right-click-menu"><a href="http://e2b.dev" class="logo-right-click-menu-item w-inline-block"><div class="icon-24 right-click-menu-icon w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 14.9167V6.75" stroke="currentColor" stroke-width="1.15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.5 11.417L12 14.917L15.5 11.417" stroke="currentColor" stroke-width="1.15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.0846 17.25H7.91797" stroke="currentColor" stroke-width="1.15" stroke-linecap="round" stroke-linejoin="round"/>
</svg></div><div class="label on-black">Download LOGO (SVG/PNG)</div></a><div class="logo-right-click-divider"></div><a href="mailto:[email protected]" class="logo-right-click-menu-item w-inline-block"><div class="icon-24 right-click-menu-icon w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.666 7.3335H7.33268C6.68835 7.3335 6.16602 7.85583 6.16602 8.50016V15.5002C6.16602 16.1445 6.68835 16.6668 7.33268 16.6668H16.666C17.3103 16.6668 17.8327 16.1445 17.8327 15.5002V8.50016C17.8327 7.85583 17.3103 7.3335 16.666 7.3335Z" stroke="currentColor" stroke-width="1.15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.8327 9.0835L12.6002 12.4085C12.4201 12.5213 12.2119 12.5812 11.9993 12.5812C11.7868 12.5812 11.5786 12.5213 11.3985 12.4085L6.16602 9.0835" stroke="currentColor" stroke-width="1.15" stroke-linecap="round" stroke-linejoin="round"/>
</svg></div><div class="label on-black">Email CEO</div></a><div class="logo-right-click-divider"></div><a href="https://sandbox.company/" target="_blank" class="logo-right-click-menu-item w-inline-block"><div class="icon-24 right-click-menu-icon w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.5 8.5L8.5 15.5" stroke="currentColor" stroke-width="1.15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.832 8.5H15.4987V13.1667" stroke="currentColor" stroke-width="1.15" stroke-linecap="round" stroke-linejoin="round"/>
</svg></div><div class="label on-black">The SBX Co.</div></a></div></div></div><nav role="navigation" id="w-node-_9edbb656-9d1b-0e60-5e5a-b499e2f80ee4-7dfb0612" class="navbar-menu w-nav-menu"><div class="navbar-menu-primary"><a href="/" aria-current="page" class="navbar-item w-inline-block w--current"><div class="label navbar-link">Product</div></a><link rel="prefetch" href="/"/><a href="/pricing" class="navbar-item w-inline-block"><div class="label navbar-link">Pricing</div></a><link rel="prefetch" href="/pricing"/><a href="https://e2b.dev/changelog" class="navbar-item w-inline-block"><div class="label navbar-link">Changelog</div></a><a href="https://e2b.dev/docs" class="navbar-item w-inline-block"><div class="label navbar-link">Docs</div></a><a href="https://e2b.dev/blog" class="navbar-item w-inline-block"><div class="label navbar-link">Blog</div></a><a href="https://e2b.dev/careers" class="navbar-item hide-desktop w-inline-block"><div class="label navbar-link">Careers</div></a></div><div id="w-node-_6f395481-6352-fe11-0c0b-f1987dfb065b-7dfb0612" class="navbar-menu-secondary"><div class="nav-careers"><a href="http://e2b.dev/careers" class="navbar-item w-inline-block"><div class="label navbar-link">CAREERS</div></a></div><div class="nav-divider"></div><div id="w-node-_6f395481-6352-fe11-0c0b-f1987dfb0661-7dfb0612" class="nav-social"><a aria-label="github link" href="https://github.com/e2b-dev" target="_blank" class="w-inline-block"><div class="icon-24 w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4.6499C7.85775 4.6499 4.5 8.0129 4.5 12.1627C4.5 15.4814 6.64875 18.2977 9.62925 19.2907C10.0042 19.3597 10.1407 19.1279 10.1407 18.9284C10.1407 18.7507 10.1348 18.2774 10.131 17.6512C8.0445 18.1049 7.60425 16.6439 7.60425 16.6439C7.26375 15.7754 6.77175 15.5444 6.77175 15.5444C6.09075 15.0794 6.8235 15.0884 6.8235 15.0884C7.57575 15.1409 7.97175 15.8624 7.97175 15.8624C8.64075 17.0099 9.7275 16.6784 10.1542 16.4864C10.2232 16.0012 10.4167 15.6704 10.6313 15.4829C8.96625 15.2932 7.215 14.6482 7.215 11.7697C7.215 10.9499 7.5075 10.2787 7.98675 9.75365C7.9095 9.5639 7.65225 8.79965 8.06025 7.76615C8.06025 7.76615 8.69025 7.56365 10.1227 8.53565C10.7346 8.36879 11.3658 8.2838 12 8.2829C12.6375 8.2859 13.2787 8.36915 13.878 8.53565C15.3097 7.56365 15.9382 7.7654 15.9382 7.7654C16.3477 8.79965 16.0898 9.5639 16.0133 9.75365C16.4932 10.2787 16.7843 10.9499 16.7843 11.7697C16.7843 14.6557 15.03 15.2909 13.3597 15.4769C13.629 15.7087 13.8682 16.1669 13.8682 16.8682C13.8682 17.8717 13.8593 18.6824 13.8593 18.9284C13.8593 19.1294 13.9943 19.3634 14.3752 19.2899C15.8687 18.789 17.167 17.8314 18.0866 16.5524C19.0062 15.2735 19.5006 13.7379 19.5 12.1627C19.5 8.0129 16.1415 4.6499 12 4.6499Z" fill="currentColor"/>
</svg></div></a><a aria-label="discord link" href="https://discord.com/invite/U7KEcGErtQ" target="_blank" class="w-inline-block"><div class="icon-24 w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.1599 7.97777C15.9482 6.99847 14.229 6.81787 14.229 6.81787L14.1996 7.96937C12.8143 7.96937 11.3849 7.96937 9.99961 7.96937L9.99191 6.88997C9.99191 6.88997 8.25171 6.99847 7.02321 7.99107C6.38131 8.58677 5.09961 12.0721 5.09961 15.0849C5.09961 15.1381 5.11291 15.1899 5.13951 15.2361C6.02501 16.7992 8.43931 17.208 8.98881 17.2255C8.99231 17.2262 8.99511 17.2262 8.99861 17.2262C9.09591 17.2262 9.19881 17.187 9.24431 17.1002L9.79241 16.0607C9.34021 15.9459 8.87331 15.8094 8.36441 15.6288C7.99971 15.4993 7.81001 15.0989 7.93951 14.7349C8.06901 14.3709 8.47011 14.1812 8.83341 14.31C11.3016 15.1878 12.7702 15.1871 15.3749 14.3065C15.7424 14.184 16.1393 14.3793 16.2625 14.7454C16.3864 15.1115 16.1897 15.5091 15.8236 15.633C15.314 15.8052 14.8492 15.9368 14.3991 16.0488L14.9542 17.1009C14.9997 17.1877 15.1033 17.2269 15.1999 17.2269C15.2034 17.2269 15.2062 17.2269 15.2097 17.2262C15.7599 17.2087 18.1742 16.7992 19.059 15.2361C19.0863 15.1899 19.0996 15.1381 19.0996 15.0842C19.0996 12.0721 17.8179 8.58677 17.1599 7.97777ZM10.0276 13.561C9.44731 13.561 8.97761 12.9359 8.97761 12.1638C8.97761 11.3924 9.44731 10.7666 10.0276 10.7666C10.61 10.6896 11.065 11.3917 11.0776 12.1638C11.0776 12.9359 10.6079 13.561 10.0276 13.561ZM14.1968 13.5778C13.6165 13.5778 13.1468 12.9513 13.1468 12.1778C13.1468 11.4043 13.6165 10.7778 14.1968 10.7778C14.7771 10.7778 15.2468 11.4043 15.2468 12.1778C15.2468 12.9513 14.7771 13.5778 14.1968 13.5778Z" fill="currentColor" />
</svg></div></a><a aria-label="linkedin link" href="https://www.linkedin.com/company/e2b-dev/" target="_blank" class="w-inline-block"><div class="icon-24 w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.9665 5H6.03347C5.75938 5 5.49651 5.10888 5.3027 5.3027C5.10888 5.49651 5 5.75938 5 6.03347V17.9665C5 18.2406 5.10888 18.5035 5.3027 18.6973C5.49651 18.8911 5.75938 19 6.03347 19H17.9665C18.2406 19 18.5035 18.8911 18.6973 18.6973C18.8911 18.5035 19 18.2406 19 17.9665V6.03347C19 5.75938 18.8911 5.49651 18.6973 5.3027C18.5035 5.10888 18.2406 5 17.9665 5ZM9.17278 16.9262H7.06792V10.2403H9.17278V16.9262ZM8.11889 9.31375C7.88013 9.31241 7.64712 9.24036 7.44926 9.10672C7.25141 8.97307 7.09757 8.78381 7.00718 8.56282C6.91678 8.34183 6.89388 8.09901 6.94135 7.86502C6.98883 7.63102 7.10455 7.41633 7.27392 7.24804C7.4433 7.07975 7.65873 6.96541 7.89302 6.91944C8.12732 6.87346 8.36998 6.89793 8.59039 6.98974C8.81079 7.08155 8.99906 7.2366 9.13144 7.43531C9.26381 7.63402 9.33435 7.86749 9.33417 8.10625C9.33642 8.2661 9.30647 8.42477 9.24609 8.5728C9.18572 8.72083 9.09616 8.85519 8.98275 8.96787C8.86934 9.08055 8.73441 9.16925 8.586 9.22867C8.43758 9.28809 8.27872 9.31703 8.11889 9.31375ZM16.9311 16.9321H14.8272V13.2794C14.8272 12.2022 14.3693 11.8697 13.7782 11.8697C13.154 11.8697 12.5415 12.3403 12.5415 13.3067V16.9321H10.4367V10.2451H12.4608V11.1717H12.4881C12.6913 10.7604 13.4029 10.0575 14.4889 10.0575C15.6633 10.0575 16.9321 10.7546 16.9321 12.7963L16.9311 16.9321Z" fill="currentColor" />
</svg></div></a><a aria-label="x link" href="https://x.com/e2b_dev" target="_blank" class="w-inline-block"><div class="icon-24 w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.3021 10.8029L17.5685 5.84351L17.7862 5.59053H17.4524H16.4233H16.353L16.3072 5.64379L12.6657 9.87668L9.76624 5.65694L9.72061 5.59053H9.64004H6.16602H5.87501L6.03981 5.83037L10.5278 12.362L6.04994 17.5668L5.83228 17.8198H6.16602H7.19527H7.26553L7.31135 17.7666L11.1641 13.288L14.2325 17.7534L14.2781 17.8198H14.3587H17.8327H18.1237L17.9589 17.58L13.3021 10.8029ZM14.9226 16.774L11.8527 12.3829V12.3826L11.8251 12.3431L11.3636 11.6831L11.3636 11.683L7.86001 6.67158H9.06721L11.9848 10.845L11.9848 10.845L12.4463 11.5051L12.4463 11.5051L16.1299 16.774H14.9226Z" fill="currentColor" stroke="currentColor" stroke-width="0.30625"/>
</svg></div></a></div><div class="nav-divider"></div><div tr-color-toggle="" id="w-node-_6f395481-6352-fe11-0c0b-f1987dfb066b-7dfb0612" class="nav-switch"><div class="icon-24 switch-dark w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 6C11.2044 6.79565 10.7574 7.87478 10.7574 9C10.7574 10.1252 11.2044 11.2043 12 12C12.7957 12.7956 13.8748 13.2426 15 13.2426C16.1252 13.2426 17.2044 12.7956 18 12C18 13.1867 17.6481 14.3467 16.9888 15.3334C16.3295 16.3201 15.3925 17.0892 14.2961 17.5433C13.1997 17.9974 11.9933 18.1162 10.8295 17.8847C9.66557 17.6532 8.59648 17.0818 7.75736 16.2426C6.91825 15.4035 6.3468 14.3344 6.11529 13.1705C5.88378 12.0067 6.0026 10.8003 6.45673 9.7039C6.91085 8.60754 7.67989 7.67047 8.66658 7.01118C9.65328 6.35189 10.8133 6 12 6Z" fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg></div><div class="icon-24 switch-light w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4C12.2761 4 12.5 4.22386 12.5 4.5V6C12.5 6.27614 12.2761 6.5 12 6.5C11.7239 6.5 11.5 6.27614 11.5 6V4.5C11.5 4.22386 11.7239 4 12 4ZM12 15.5C13.933 15.5 15.5 13.933 15.5 12C15.5 10.067 13.933 8.5 12 8.5C10.067 8.5 8.5 10.067 8.5 12C8.5 13.933 10.067 15.5 12 15.5ZM12.5 18C12.5 17.7239 12.2761 17.5 12 17.5C11.7239 17.5 11.5 17.7239 11.5 18V19.5C11.5 19.7761 11.7239 20 12 20C12.2761 20 12.5 19.7761 12.5 19.5V18ZM6.34371 6.34469C6.53897 6.14943 6.85556 6.14943 7.05082 6.34469L8.10832 7.40219C8.30358 7.59745 8.30358 7.91403 8.10832 8.1093C7.91306 8.30456 7.59647 8.30456 7.40121 8.1093L6.34371 7.0518C6.14845 6.85653 6.14845 6.53995 6.34371 6.34469ZM16.5987 15.8916C16.4034 15.6963 16.0868 15.6963 15.8916 15.8916C15.6963 16.0868 15.6963 16.4034 15.8916 16.5987L16.9491 17.6562C17.1443 17.8514 17.4609 17.8514 17.6562 17.6562C17.8514 17.4609 17.8514 17.1443 17.6562 16.9491L16.5987 15.8916ZM4 12C4 11.7239 4.22386 11.5 4.5 11.5H6C6.27614 11.5 6.5 11.7239 6.5 12C6.5 12.2761 6.27614 12.5 6 12.5H4.5C4.22386 12.5 4 12.2761 4 12ZM18 11.5C17.7239 11.5 17.5 11.7239 17.5 12C17.5 12.2761 17.7239 12.5 18 12.5H19.5C19.7761 12.5 20 12.2761 20 12C20 11.7239 19.7761 11.5 19.5 11.5H18ZM8.10832 15.8916C8.30358 16.0868 8.30358 16.4034 8.10832 16.5987L7.05082 17.6562C6.85556 17.8514 6.53897 17.8514 6.34371 17.6562C6.14845 17.4609 6.14845 17.1443 6.34371 16.9491L7.40121 15.8916C7.59647 15.6963 7.91306 15.6963 8.10832 15.8916ZM17.6562 7.05082C17.8514 6.85556 17.8514 6.53897 17.6562 6.34371C17.4609 6.14845 17.1443 6.14845 16.9491 6.34371L15.8916 7.40121C15.6963 7.59647 15.6963 7.91306 15.8916 8.10832C16.0868 8.30358 16.4034 8.30358 16.5987 8.10832L17.6562 7.05082Z" fill="currentColor" />
</svg></div><div class="label switch-mode">Light/DARK</div></div><div id="w-node-_6f395481-6352-fe11-0c0b-f1987dfb066e-7dfb0612" class="wrap-buttons-small"><a href="https://e2b.dev/auth/sign-up" class="button small primary mobile-w100 w-button">SIGN UP</a><a href="https://e2b.dev/auth/sign-in" class="button small secondary mobile-w100 w-button">SIGN IN</a></div></div></nav></div></div></div><div class="header-divider"></div></div><div id="main" class="main"><div class="s-intro"><div class="promo-banner"><div class="tag brand"><div class="label on-black keep-white">NEW</div></div><a href="https://github.com/e2b-dev/desktop" target="_blank" class="promo-banner-text w-inline-block"><div class="label underline">DESKTOP SANDBOX FOR COMPUTER USE</div><div class="label">→</div></a></div><div class="wrap-h"><div class="h-hpcover desktop"><div style="display:block" class="h1 float s-1">AI-generated code</div><div style="display:none" class="h1 float s-2">A1-G3NER4–ED c0de</div><div style="display:none" class="h1 float s-3">4I-GE7ER#T3D ©–de</div><div style="display:none" class="h1 float s-4">A*-GEN€RATED c0de</div><div style="display:none" class="h1 float s-5">—I-G3NERA+ED c°de</div></div><div class="h-hpcover mobile"><div style="display:block" class="h1 float s-1">AI-generated</div><div style="display:none" class="h1 float s-2">A1-G3NER4–ED</div><div style="display:none" class="h1 float s-3">4I-GE7ER#T3D</div><div style="display:none" class="h1 float s-4">A*-GEN€RATED</div><div style="display:none" class="h1 float s-5">—I-G3NERA+ED</div></div><h1 class="h1">RUN AI-GENERATED code SECURELY in your APP</h1></div><div class="p perex sec-intro">E2B is an open-source runtime for executing AI-generated code in secure cloud sandboxes. Made for agentic & AI use cases.</div><div class="wrap-buttons"><a href="https://e2b.dev/auth/sign-up" class="button large primary _w-fixed w-button">START FOR FREE</a><a href="https://e2b.dev/docs" class="button large secondary _w-fixed w-button">VIEW DOCS</a></div><div class="s-intro-trusted-by"><div class="label">TRUSTED BY</div><div class="s-logo-carousel"><div id="s-logos-carousel-gradient" class="s-logo-carousel-gradient"></div><div id="s-logos-carousel-gradient" class="s-logo-carousel-gradient right"></div><div class="wrap-logos"><div class="client-logo w-embed"><svg width="7.375rem" height="1.875rem" viewBox="0 0 118 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.3284 2.08733L11.9434 9.47933H19.3284V2.08733ZM19.3284 2.08733V4.11111M11.9263 1V29M19.3284 16.8698L11.9434 9.47778M19.3284 16.8698V27.467L11.9434 20.075M19.3284 16.8698L11.9426 9.47778M19.3284 16.8698L19.3276 20.0322H22.4971V9.47778H11.9426M11.9434 9.47778V20.075M11.9434 9.47778L4.55763 16.8698M11.9434 20.075L4.55763 27.467V16.8698M4.55763 16.8698L4.55685 20.0322H1.38818V9.47778H11.9426M4.55763 16.8698L11.9426 9.47778M11.9426 9.47933L4.55685 2.08733V9.47933H11.9426Z" stroke="currentColor" stroke-width="1.36111" stroke-miterlimit="10"/>
<path d="M44.1341 11.1328C44.5954 10.2703 45.2401 9.60606 46.0716 9.13862C46.9015 8.67273 47.8752 8.43939 48.9921 8.43939C50.109 8.43939 51.0338 8.66884 51.8077 9.12851C52.5824 9.58817 53.1618 10.1972 53.5452 10.9555C53.9287 11.7146 54.1208 12.5461 54.1208 13.4498V14.7021H45.4322C45.5022 15.7878 45.8686 16.6512 46.5312 17.2913C47.1939 17.9322 48.0837 18.2518 49.2014 18.2518C50.1082 18.2518 50.8036 18.0675 51.2842 17.6988C51.7665 17.3302 52.118 16.8192 52.342 16.1643H54.3316C54.0664 17.1801 53.5258 18.0613 52.7091 18.8056C51.8932 19.5507 50.7235 19.9225 49.2021 19.9225C48.0572 19.9225 47.0485 19.6892 46.1758 19.2233C45.3039 18.7574 44.6296 18.0924 44.1551 17.2291C43.6807 16.3657 43.4435 15.3499 43.4435 14.1802C43.4435 13.0104 43.6737 11.9954 44.1349 11.1321L44.1341 11.1328ZM52.0278 13.1364C52.0278 12.1898 51.7836 11.4494 51.2951 10.9127C50.8067 10.3768 50.039 10.1093 48.9914 10.1093C48.0145 10.1093 47.2149 10.3698 46.5942 10.8917C45.9728 11.4136 45.5925 12.1626 45.4532 13.1364H52.0278ZM56.731 8.75206V10.4849C56.731 10.5829 56.78 10.6312 56.878 10.6312C56.934 10.6312 56.9752 10.6172 57.004 10.5892C57.0328 10.5612 57.06 10.5059 57.0872 10.4227C57.4497 9.28173 58.3504 8.71084 59.7885 8.71084H60.7094V10.5892H59.5155C58.5798 10.5892 57.8821 10.8116 57.4209 11.2573C56.9597 11.7029 56.7295 12.4333 56.7295 13.4498V19.6091H54.8449V8.75128H56.731V8.75206ZM71.7748 17.3224C71.2794 18.1919 70.6369 18.8429 69.8482 19.2738C69.0596 19.7047 68.211 19.9209 67.3041 19.9209C65.5176 19.9209 64.2607 19.2116 63.535 17.7914C63.479 17.681 63.409 17.6249 63.3258 17.6249C63.2426 17.6249 63.1998 17.6669 63.1998 17.7502V23.5749H61.3152V8.75284H63.1998V10.6109C63.1998 10.6942 63.2418 10.7362 63.3258 10.7362C63.4098 10.7362 63.479 10.6802 63.535 10.5697C64.2607 9.1495 65.5176 8.44017 67.3041 8.44017C68.211 8.44017 69.0596 8.65639 69.8482 9.08728C70.6369 9.51817 71.2786 10.1692 71.7748 11.0395C72.2702 11.9091 72.5184 12.9575 72.5184 14.181C72.5184 15.4044 72.2702 16.4521 71.7748 17.3224ZM69.597 11.1842C68.9056 10.4671 67.9948 10.1085 66.8647 10.1085C65.7346 10.1085 64.823 10.4671 64.1324 11.1842C63.4409 11.9013 63.1874 12.8999 63.1874 14.1802C63.1874 15.4604 63.4409 16.4598 64.1324 17.1762C64.8238 17.8933 65.7346 18.2518 66.8647 18.2518C67.9948 18.2518 68.9064 17.8941 69.597 17.1762C70.2885 16.4591 70.6338 15.4604 70.6338 14.1802C70.6338 12.8999 70.2885 11.9013 69.597 11.1842ZM75.253 4.57617V19.6083H73.3685V4.57773H75.253V4.57617ZM76.8047 11.1321C77.2651 10.2695 77.9107 9.60528 78.7421 9.13784C79.572 8.67195 80.5458 8.43862 81.6619 8.43862C82.778 8.43862 83.7044 8.66806 84.4782 9.12773C85.2529 9.58739 85.8324 10.1964 86.2158 10.9547C86.6 11.7138 86.7914 12.5453 86.7914 13.4491V14.7013H78.1028C78.1728 15.7871 78.5391 16.6504 79.2018 17.2905C79.8645 17.9314 80.7542 18.2511 81.8719 18.2511C82.7788 18.2511 83.4734 18.0667 83.9548 17.6981C84.437 17.3294 84.7886 16.8184 85.0126 16.1635H87.0021C86.7369 17.1793 86.1956 18.0605 85.3797 18.8048C84.5638 19.5499 83.394 19.9217 81.8727 19.9217C80.7278 19.9217 79.719 19.6884 78.8463 19.2225C77.9745 18.7566 77.3001 18.0916 76.8257 17.2283C76.3512 16.3649 76.114 15.3492 76.114 14.1794C76.114 13.0096 76.3442 11.9946 76.8055 11.1313H76.8047V11.1321ZM84.6984 13.1356C84.6984 12.1891 84.4541 11.4486 83.9657 10.9119C83.4772 10.3761 82.7096 10.1085 81.6619 10.1085C80.6858 10.1085 79.8855 10.3691 79.2648 10.8909C78.6434 11.4128 78.2638 12.1618 78.1238 13.1356H84.6984ZM85.9529 19.1906L90.2657 13.8659L86.7276 9.16895V8.75128H88.8004L91.7536 12.8012L94.9362 8.75128H97.0502V9.18995L92.9887 14.1802L96.7368 19.1906V19.6083H94.706L91.5023 15.2449L88.0692 19.6083H85.9545V19.1906H85.9529ZM99.7865 5.21784V7.56751H97.5854V5.21784H99.7865ZM99.6721 19.6091H97.7868V8.75206H99.6721V19.6091ZM100.266 8.75206H102.317V5.82917H104.202V8.75206H106.359L106.889 10.3434H104.202V15.5374C104.202 16.2467 104.184 16.7725 104.149 17.1139C104.114 17.4554 104.097 17.6607 104.097 17.7299C104.097 17.8279 104.124 17.9042 104.18 17.9594C104.236 18.0154 104.312 18.0426 104.411 18.0426C104.48 18.0426 104.686 18.0255 105.029 17.9905C105.37 17.9555 105.897 17.9384 106.61 17.9384H107.343V19.6083H105.877C104.676 19.6083 103.783 19.3166 103.197 18.7309C102.611 18.1461 102.317 17.2563 102.317 16.0585V10.3426H100.268V8.75128H100.266V8.75206ZM106.927 8.75206H108.848L111.968 17.8606C112.011 17.9726 112.077 18.1196 112.291 18.1196C112.505 18.1196 112.571 17.9718 112.613 17.8606L115.732 8.75206H117.524V9.16973L113.622 20.8823C113.286 21.8848 112.816 22.5841 112.209 22.9807C111.602 23.3774 110.896 23.5757 109.723 23.5757H107.713V21.9058H109.242C109.73 21.9058 110.128 21.9229 110.435 21.9579C110.741 21.9929 110.937 22.0101 111.021 22.0101C111.259 22.0101 111.419 21.9058 111.504 21.6974L112.09 20.1107C112.16 19.9443 112.166 19.8191 112.111 19.7343C112.083 19.6783 112.049 19.6433 112.007 19.6301C111.965 19.6161 111.902 19.6091 111.819 19.6091H110.542L106.929 8.75284H106.927V8.75206ZM42.2457 17.3403C41.7502 18.2098 41.1078 18.8608 40.3191 19.2917C39.5305 19.7226 38.6819 19.9388 37.775 19.9388C35.9885 19.9388 34.7316 19.2295 34.0059 17.8093C33.9499 17.6988 33.8799 17.6428 33.7967 17.6428C33.7135 17.6428 33.6707 17.6848 33.6707 17.7681V23.5928H31.7861V8.77073H33.6707V10.6288C33.6707 10.7121 33.7127 10.7541 33.7967 10.7541C33.8807 10.7541 33.9499 10.6981 34.0059 10.5876C34.7308 9.16739 35.9885 8.45806 37.775 8.45806C38.6819 8.45806 39.5305 8.67428 40.3191 9.10517C41.1078 9.53606 41.7495 10.1871 42.2457 11.0566C42.7411 11.9262 42.9892 12.9746 42.9892 14.1988C42.9892 15.4231 42.7411 16.4707 42.2457 17.3403ZM40.0679 11.2021C39.3765 10.4849 38.4657 10.1264 37.3356 10.1264C36.2055 10.1264 35.2939 10.4849 34.6032 11.2021C33.9118 11.9192 33.6582 12.9178 33.6582 14.1981C33.6582 15.4783 33.9118 16.4777 34.6032 17.1941C35.2947 17.9112 36.2055 18.2697 37.3356 18.2697C38.4657 18.2697 39.3772 17.9119 40.0679 17.1941C40.7594 16.4769 41.1047 15.4783 41.1047 14.1981C41.1047 12.9178 40.7594 11.9192 40.0679 11.2021Z" fill="currentColor"/>
</svg></div><div class="client-logo w-embed"><svg width="7.125rem" height="1.625rem" viewBox="0 0 114 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_7725_2856" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="3" width="114" height="23">
</mask>
<path d="M26.1644 5.80413H23.4141V20.1082H32.6899V17.6507H26.1644V5.80413ZM41.2755 11.2128C41.0036 10.9292 40.6899 10.6982 40.3239 10.5091C39.7696 10.2256 39.1526 10.0786 38.4624 10.0786C37.5526 10.0786 36.7474 10.2991 36.0467 10.7507C35.3356 11.2023 34.7814 11.8114 34.3736 12.5781C33.9657 13.3552 33.767 14.2269 33.767 15.2036C33.767 16.1804 33.9657 17.0311 34.3736 17.8082C34.7814 18.5854 35.3356 19.1945 36.0467 19.6356C36.7579 20.0873 37.5526 20.3078 38.452 20.3078C39.1526 20.3078 39.7905 20.1607 40.3448 19.8772C40.7108 19.6881 41.0245 19.4571 41.2859 19.184V20.0978H43.9631V10.2781H41.2859V11.2023L41.2755 11.2128ZM40.7526 17.0941C40.2925 17.5982 39.6964 17.8502 38.9539 17.8502C38.4833 17.8502 38.0546 17.7347 37.6781 17.5036C37.3016 17.2726 37.0088 16.9575 36.7997 16.569C36.5905 16.1804 36.486 15.7183 36.486 15.1827C36.486 14.647 36.5905 14.2164 36.7997 13.8174C37.0088 13.4288 37.3016 13.1137 37.6677 12.8827C38.0337 12.6516 38.4624 12.5361 38.9539 12.5361C39.4454 12.5361 39.8847 12.6516 40.2506 12.8722C40.6167 13.0927 40.9094 13.4078 41.1186 13.8174C41.3383 14.2269 41.4428 14.6891 41.4428 15.2036C41.4428 15.9598 41.2128 16.59 40.7526 17.0941ZM53.6885 10.6141C53.1238 10.2571 52.4859 10.0786 51.7539 10.0786C51.0219 10.0786 50.3421 10.2361 49.7565 10.5617C49.4428 10.7402 49.1604 10.9502 48.9199 11.2023V10.2781H46.2637V20.1082H48.9199V14.4685C48.9199 14.0904 49.0036 13.7439 49.1709 13.4393C49.3382 13.1347 49.5683 12.9036 49.8715 12.7356C50.1644 12.5676 50.5094 12.4941 50.8859 12.4941C51.4506 12.4941 51.9212 12.6726 52.2873 13.0402C52.6532 13.4078 52.831 13.8804 52.831 14.4685V20.1082H55.5081V13.8594C55.5081 13.2082 55.3408 12.5991 55.0166 12.0214C54.6925 11.4439 54.2533 10.9818 53.6885 10.6141ZM64.533 11.1288C64.282 10.8873 63.9892 10.6877 63.665 10.5196C63.1003 10.2256 62.4624 10.0786 61.7618 10.0786C60.852 10.0786 60.0467 10.2991 59.346 10.7507C58.6349 11.2023 58.0702 11.8114 57.6519 12.5781C57.2336 13.3552 57.0245 14.2269 57.0245 15.2036C57.0245 16.1804 57.2336 17.0311 57.6519 17.8082C58.0702 18.5854 58.6349 19.1945 59.346 19.6356C60.0572 20.0873 60.8624 20.3078 61.7618 20.3078C62.4728 20.3078 63.1212 20.1607 63.6859 19.8667C64.0206 19.6986 64.3029 19.4886 64.5539 19.247V20.1082H67.231V5.39453H64.533V11.1183V11.1288ZM64.397 16.569C64.1879 16.9575 63.8951 17.2726 63.5186 17.5036C63.1421 17.7347 62.7134 17.8502 62.2219 17.8502C61.7303 17.8502 61.3225 17.7347 60.946 17.5141C60.5696 17.2936 60.2767 16.9785 60.0676 16.5795C59.8584 16.1804 59.7539 15.7183 59.7539 15.1827C59.7539 14.647 59.8584 14.2059 60.0676 13.8069C60.2767 13.4078 60.5696 13.0927 60.9356 12.8722C61.312 12.6516 61.7408 12.5361 62.2427 12.5361C62.7447 12.5361 63.1526 12.6516 63.529 12.8827C63.8951 13.1137 64.1879 13.4288 64.397 13.8174C64.6062 14.2059 64.7107 14.668 64.7107 15.2036C64.7107 15.7393 64.6062 16.1699 64.397 16.569ZM70.8702 5.64659C70.4414 5.64659 70.0755 5.79362 69.7931 6.09819C69.5107 6.39225 69.3643 6.75983 69.3643 7.17992C69.3643 7.60002 69.5107 7.97809 69.7931 8.27216C70.0755 8.56622 70.431 8.71325 70.8702 8.71325C71.3094 8.71325 71.6754 8.56622 71.9574 8.27216C72.2298 7.97809 72.3757 7.62102 72.3757 7.17992C72.3757 6.73882 72.2399 6.40275 71.9574 6.09819C71.6859 5.80413 71.3199 5.64659 70.8702 5.64659ZM69.5107 20.1082H72.209V10.2781H69.5107V20.1082ZM81.9761 10.6141C81.4112 10.2571 80.7736 10.0786 80.0412 10.0786C79.3095 10.0786 78.6296 10.2361 78.0438 10.5617C77.7304 10.7402 77.448 10.9502 77.2072 11.2023V10.2781H74.5514V20.1082H77.2072V14.4685C77.2072 14.0904 77.2913 13.7439 77.4587 13.4393C77.6255 13.1347 77.8555 12.9036 78.1588 12.7356C78.4521 12.5676 78.7971 12.4941 79.1737 12.4941C79.7379 12.4941 80.2087 12.6726 80.5745 13.0402C80.9411 13.4078 81.1186 13.8804 81.1186 14.4685V20.1082H83.796V13.8594C83.796 13.2082 83.6285 12.5991 83.3043 12.0214C82.9802 11.4439 82.541 10.9818 81.9761 10.6141ZM92.7056 10.2781V11.0973C92.4547 10.8557 92.1723 10.6562 91.8373 10.4881C91.2731 10.2151 90.6241 10.0681 89.9132 10.0681C89.0349 10.0681 88.24 10.2781 87.5392 10.7087C86.8392 11.1393 86.2843 11.7169 85.8875 12.4521C85.4901 13.1873 85.291 14.0064 85.291 14.9306C85.291 15.8548 85.4901 16.6845 85.8875 17.4301C86.2843 18.1758 86.8392 18.764 87.5392 19.1945C88.24 19.6251 89.0349 19.8352 89.9132 19.8352C90.6241 19.8352 91.2623 19.6881 91.8273 19.4046C92.1514 19.2365 92.444 19.037 92.6848 18.7955V19.6462C92.6848 20.3603 92.444 20.9379 91.9523 21.3685C91.4715 21.7991 90.8232 22.0091 90.0074 22.0091C89.3483 22.0091 88.7841 21.8936 88.3133 21.6521C87.8425 21.4105 87.4242 21.0745 87.0483 20.6229L85.3434 22.3137C85.8243 22.9963 86.4625 23.5215 87.2575 23.889C88.0517 24.2567 88.9724 24.4457 90.0182 24.4457C91.064 24.4457 91.9732 24.2462 92.7681 23.847C93.5631 23.448 94.1905 22.8808 94.6405 22.1457C95.0897 21.4105 95.3197 20.5703 95.3197 19.6041V10.2781H92.6848H92.7056ZM92.5381 16.2329C92.3397 16.611 92.0673 16.8945 91.7123 17.0941C91.3565 17.2936 90.9274 17.3986 90.4257 17.3986C89.9657 17.3986 89.5474 17.2936 89.1816 17.0836C88.8049 16.8735 88.5225 16.5795 88.3241 16.2119C88.125 15.8338 88.0208 15.4137 88.0208 14.9411C88.0208 14.4685 88.125 14.0589 88.3342 13.6913C88.5433 13.3133 88.8258 13.0297 89.1816 12.8196C89.5366 12.6096 89.9657 12.5046 90.4466 12.5046C90.9274 12.5046 91.3357 12.6096 91.7015 12.8196C92.0673 13.0297 92.3498 13.3238 92.5381 13.6913C92.7365 14.0695 92.8307 14.4895 92.8307 14.9621C92.8307 15.4347 92.7365 15.8653 92.5381 16.2329Z" fill="currentColor"/>
<path d="M102.755 5.8042L97.0039 20.1083H99.9213L100.935 17.4407H106.782L107.785 20.1083H110.724L105.035 5.8042H102.765H102.755ZM101.814 15.1197L103.864 9.72155L105.893 15.1197H101.804H101.814ZM111.037 20.1083H113.788V5.8042H111.037V20.1083Z" fill="currentColor"/>
<path d="M0 16.7896V21.5366L3.79607 23.5845V18.827L0 16.7896Z" fill="currentColor"/>
<path d="M0 11.2129V15.9599L3.79607 18.0079V13.2503L0 11.2129Z" fill="currentColor"/>
<path d="M0 5.63623V10.3832L3.79607 12.4312V7.68418L0 5.63623Z" fill="currentColor"/>
<path d="M13.5742 18.8265V23.5841L17.3702 21.5361V16.7891L13.5742 18.8265Z" fill="currentColor"/>
<path d="M4.52783 13.2498V18.0074L8.32387 15.9595V11.2124L4.52783 13.2498Z" fill="currentColor"/>
<path d="M4.52783 7.68418V12.4312L8.32387 10.3832V5.63623L4.52783 7.68418Z" fill="currentColor"/>
<path d="M7.93702 5.03744L4.16187 3L0.386719 5.03744L4.16187 7.06438L7.93702 5.03744Z" fill="currentColor"/>
<path d="M4.52783 19.2051V23.9521L8.32387 26.0001V21.2531L4.52783 19.2051Z" fill="currentColor"/>
<path d="M9.05615 21.2531V26.0001L12.8522 23.9521V19.2051L9.05615 21.2531Z" fill="currentColor"/>
<path d="M4.91553 18.6065L8.6907 20.644L12.4554 18.6065L8.6907 16.5796L4.91553 18.6065Z" fill="currentColor"/>
<path d="M16.9937 16.1803L13.2185 14.1533L9.44336 16.1803L13.2185 18.2177L16.9937 16.1803Z" fill="currentColor"/>
</svg></div><div class="client-logo w-embed"><svg width="2.25rem" height="2rem" viewBox="0 0 36 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_7725_2785)">
<path d="M6.9799 23.7911V23.7828C6.9799 23.304 6.62977 22.9042 6.13377 22.9042C5.63775 22.9042 5.29597 23.2956 5.29597 23.7745V23.7828C5.29597 24.2616 5.64609 24.6613 6.14211 24.6613C6.63811 24.6613 6.9799 24.27 6.9799 23.7911ZM4.6499 23.7911V23.7828C4.6499 22.9876 5.27929 22.3379 6.14211 22.3379C7.00491 22.3379 7.62596 22.9792 7.62596 23.7745V23.7828C7.62596 24.5781 6.99657 25.2276 6.13377 25.2276C5.27096 25.2317 4.6499 24.5865 4.6499 23.7911Z" fill="currentColor"/>
<path d="M8.25146 22.3862H10.3814V22.9441H8.86836V23.5396H10.2022V24.0974H8.86836V25.18H8.25146V22.3862Z" fill="currentColor"/>
<path d="M13.9073 24.0197L13.5363 23.112L13.1653 24.0197H13.9073ZM13.2612 22.375H13.8281L15.0285 25.1897H14.3866L14.1323 24.5609H12.9486L12.6943 25.1897H12.0649L13.2612 22.375Z" fill="currentColor"/>
<path d="M15.5415 22.3862H16.2041L16.9377 23.5686L17.6755 22.3862H18.3382V25.18H17.7256V23.3564L16.9377 24.5514H16.9211L16.1416 23.3687V25.18H15.5415V22.3862Z" fill="currentColor"/>
<path d="M19.0259 22.3862H21.1349V22.9316H19.6385V23.4979H20.9557V24.0475H19.6385V24.6345H21.1557V25.18H19.0259V22.3862Z" fill="currentColor"/>
<path d="M23.0231 23.7436C23.3232 23.7436 23.4941 23.5853 23.4941 23.348V23.3397C23.4941 23.0773 23.3106 22.94 23.0106 22.94H22.3978V23.7436H23.0231ZM21.7852 22.3862H23.0648C23.4191 22.3862 23.6941 22.486 23.8817 22.6692C24.036 22.8234 24.1193 23.044 24.1193 23.3064V23.3147C24.1193 23.7643 23.8776 24.0475 23.519 24.1807L24.2027 25.18H23.4816L22.8813 24.2848H22.3978V25.18H21.7852V22.3862Z" fill="currentColor"/>
<path d="M24.7822 22.3862H25.3991V25.18H24.7822V22.3862Z" fill="currentColor"/>
<path d="M26.0532 23.7911V23.7828C26.0532 22.9876 26.6535 22.3379 27.5121 22.3379C28.0414 22.3379 28.354 22.5128 28.6166 22.7711L28.2248 23.2207C28.0081 23.025 27.7872 22.9042 27.5079 22.9042C27.0369 22.9042 26.6952 23.2956 26.6952 23.7745V23.7828C26.6952 24.2616 27.0285 24.6613 27.5079 24.6613C27.8288 24.6613 28.0248 24.5322 28.2414 24.3324L28.6333 24.728C28.3458 25.0362 28.0248 25.2276 27.487 25.2276C26.666 25.2317 26.0532 24.5947 26.0532 23.7911Z" fill="currentColor"/>
<path d="M30.8174 24.0197L30.4465 23.112L30.0754 24.0197H30.8174ZM30.1672 22.375H30.734L31.9345 25.1897H31.2926L31.0383 24.5609H29.8545L29.6003 25.1897H28.9751L30.1672 22.375Z" fill="black"/>
<path d="M22.8027 16.5258L23.728 16.2551V15.0976H17.7175V16.2551L18.6429 16.5258C19.3015 16.7257 19.3264 16.8005 19.3264 17.3251V18.9032C18.9931 18.9698 18.3678 18.974 17.9635 18.9157C15.7919 18.5993 15.1917 17.0004 15.1917 15.3224C15.1917 14.3814 15.5084 13.5236 16.2295 12.8283C16.7422 12.3328 17.5301 11.8831 18.7263 11.9248C19.2473 11.9456 19.8475 12.1912 20.0518 12.337C20.6478 12.7492 20.7853 13.2363 20.9437 13.8401H22.4818L22.4734 11.4792C22.4734 11.4792 20.9186 10.4175 18.2386 10.4175C16.1087 10.4175 11.9155 11.3044 11.9155 15.464C11.9155 18.0205 14.0621 20.015 17.8009 20.2023C20.3769 20.3314 22.1233 19.5735 22.1233 19.5735L22.1191 17.3251C22.1191 16.8047 22.1442 16.7298 22.8027 16.5258Z" fill="currentColor"/>
<path d="M8.15957 14.8308C7.99284 14.9849 7.61353 15.1722 7.3051 15.2472C6.46313 15.4596 5.38359 15.3762 5.3419 15.3762V11.8079C6.05466 11.8079 7.30092 11.6996 8.10121 12.2742C8.49719 12.5574 8.72643 13.0071 8.73894 13.59C8.74727 14.0063 8.59722 14.456 8.15957 14.8308ZM7.93448 10.642C7.4885 10.5921 6.18803 10.5796 6.18803 10.5796L0.902832 10.5838V11.7371L1.79065 12.0119C2.51173 12.2451 2.51173 12.3117 2.51173 12.8405L2.5159 17.8621C2.5159 18.3908 2.5159 18.4242 1.79481 18.6531L0.911168 18.9071V20.0688H6.94664V18.9071L6.06298 18.6531C5.3419 18.4242 5.3419 18.3908 5.3419 17.8621L5.34607 16.6504H6.77574C8.08871 16.6296 9.15576 16.5463 10.1019 16.0091C11.0064 15.497 11.5024 14.5477 11.5024 13.5567C11.4983 11.9578 10.2353 10.8794 7.93448 10.642Z" fill="currentColor"/>
<path d="M27.2242 16.8086C27.8329 15.651 28.6915 13.9939 28.7499 13.8731C28.8082 14.0106 29.5918 15.6261 30.167 16.8086H27.2242ZM34.8604 18.6781C34.3227 18.4783 34.2018 18.3825 34.0475 18.0452L30.2962 10.5879H28.7415L24.5442 18.1867C24.3941 18.4741 24.2566 18.5408 23.9023 18.6656L22.9478 18.9571V20.0688H27.6036V18.9321L26.5699 18.6656C26.349 18.6115 26.3574 18.4658 26.4115 18.3658C26.4115 18.3658 26.5449 18.1076 26.7491 17.7204H30.6464C30.8548 18.1119 30.9089 18.191 30.9756 18.3325C31.0757 18.5408 30.884 18.6323 30.638 18.7031L29.7044 18.9613V20.0729H35.6814V18.9821C35.6814 18.9738 34.8604 18.6781 34.8604 18.6781Z" fill="currentColor"/>
<path d="M15.2078 29.8789L14.8034 29.9788L14.6992 29.5624L15.362 29.3667H15.708V31.6943H15.2078V29.8789Z" fill="black"/>
<path d="M17.588 30.1361V30.1277C17.588 29.9237 17.438 29.7739 17.1796 29.7739C16.9295 29.7739 16.7877 29.9196 16.7877 30.1236V30.1319C16.7877 30.336 16.9378 30.4775 17.1921 30.4775C17.4464 30.4775 17.588 30.336 17.588 30.1361ZM16.3334 31.456L16.6001 31.0688C16.767 31.2062 16.9129 31.2687 17.1046 31.2687C17.388 31.2687 17.5422 31.0522 17.5756 30.744C17.463 30.8398 17.3087 30.9023 17.1046 30.9023C16.6001 30.9023 16.2793 30.6233 16.2793 30.1569V30.1485C16.2793 29.6822 16.6377 29.3408 17.163 29.3408C17.4755 29.3408 17.6547 29.4158 17.8298 29.5906C17.9965 29.7572 18.1048 30.007 18.1048 30.4608V30.4692C18.1048 31.2187 17.7505 31.7308 17.0921 31.7308C16.7586 31.7308 16.5294 31.6184 16.3334 31.456Z" fill="currentColor"/>
<path d="M18.9554 29.8789L18.551 29.9788L18.4468 29.5624L19.1095 29.3667H19.4597V31.6943H18.9554V29.8789Z" fill="black"/>
<path d="M21.3433 30.9564V30.948C21.3433 30.7524 21.1933 30.6107 20.9391 30.6107C20.689 30.6107 20.5431 30.7482 20.5431 30.9438V30.9522C20.5431 31.148 20.6931 31.2977 20.9473 31.2977C21.1974 31.2977 21.3433 31.1521 21.3433 30.9564ZM20.2971 31.4852C20.1304 31.3186 20.022 31.0688 20.022 30.6107V30.6025C20.022 29.8904 20.3471 29.3408 21.039 29.3408C21.3517 29.3408 21.5601 29.4324 21.7644 29.5948L21.4976 29.9862C21.3475 29.8697 21.2225 29.803 21.0266 29.803C20.7389 29.803 20.593 30.0362 20.5597 30.3401C20.6765 30.2651 20.8098 30.1902 21.039 30.1902C21.4976 30.1902 21.8519 30.4442 21.8519 30.9272V30.9356C21.8519 31.4061 21.4726 31.735 20.9682 31.735C20.6639 31.7308 20.4597 31.6476 20.2971 31.4852Z" fill="currentColor"/>
<path d="M19.7843 2.20618C19.4758 2.23115 19.3342 2.59341 19.3925 2.95149C19.7427 2.91401 20.0678 2.85156 20.3637 2.75996C20.3303 2.62672 20.2762 2.50596 20.1928 2.4102C20.1052 2.3061 19.9719 2.18953 19.7843 2.20618ZM16.8332 2.21867C16.6666 2.17287 16.5081 2.25615 16.4206 2.33525C16.3039 2.44351 16.2247 2.59756 16.183 2.75996C16.4831 2.84739 16.8041 2.91401 17.1542 2.95149C17.2 2.62672 17.0917 2.29778 16.8332 2.21867ZM18.2504 2.19785C18.0046 2.21451 17.8044 2.30611 17.6627 2.44767C17.5293 2.58092 17.4417 2.76411 17.421 2.97647C17.9545 3.03477 18.588 3.02644 19.1174 2.98064C19.0923 2.7433 19.0007 2.5601 18.8506 2.4227C18.7257 2.31027 18.4963 2.1812 18.2504 2.19785ZM20.472 4.12568C20.4636 3.98411 20.4262 3.86752 20.3553 3.77176C20.2887 3.68016 20.1928 3.60521 20.0553 3.60104C19.826 3.59687 19.6801 3.75926 19.5925 3.90083C19.4883 4.06738 19.43 4.26724 19.4425 4.49624C19.3508 4.5129 19.2508 4.5379 19.1591 4.54622C19.1507 4.28807 19.0465 4.09654 18.8965 3.95912C18.7506 3.82173 18.5463 3.72595 18.2754 3.72595C18.0046 3.72595 17.8086 3.82588 17.6585 3.95912C17.5044 4.09654 17.4043 4.29223 17.3918 4.54622C17.2917 4.53373 17.1959 4.51707 17.1084 4.49209C17.1209 4.10485 16.9709 3.80506 16.7249 3.65933C16.5749 3.57189 16.3873 3.58438 16.2706 3.68849C16.1622 3.78425 16.0955 3.92997 16.0872 4.11735C16.0747 4.1215 15.687 3.78425 15.5953 3.66349C15.5953 3.66349 15.5953 3.66349 15.5953 3.65933C15.5912 3.6052 15.587 3.5469 15.587 3.48862C15.587 2.00632 16.7958 0.798819 18.2796 0.798819C19.7635 0.798819 20.9722 2.00632 20.9722 3.48862C20.9722 3.53025 20.9722 3.57606 20.9681 3.61769C20.9013 3.72595 20.7597 3.92581 20.472 4.12568ZM20.3095 4.70028C20.2137 4.84184 20.0761 4.98341 19.8718 5.00007C19.7719 5.00424 19.6718 4.96676 19.605 4.90429C19.505 4.81269 19.4591 4.67946 19.4384 4.50041C19.8177 4.42131 20.1636 4.30471 20.4595 4.13816C20.4637 4.13816 20.4637 4.14233 20.4637 4.14233C20.472 4.33803 20.4178 4.54205 20.3095 4.70028ZM18.8923 5.14579C18.7423 5.28321 18.5422 5.38314 18.2713 5.38314C18.0003 5.38314 17.7962 5.28321 17.6503 5.14579C17.5001 5.0084 17.3918 4.81686 17.3877 4.56287C17.3877 4.55871 17.3877 4.55038 17.3918 4.55038C17.9211 4.64198 18.6297 4.63366 19.1507 4.55455C19.1507 4.81686 19.0424 5.0084 18.8923 5.14579ZM16.6957 4.9959C16.4956 4.9959 16.3414 4.846 16.2498 4.7086C16.1456 4.55455 16.0747 4.363 16.0788 4.13816V4.12983C16.3748 4.29638 16.7208 4.41297 17.1 4.49624C17.0792 4.75441 16.95 4.99174 16.6957 4.9959ZM18.2713 0.27002C16.4915 0.27002 15.041 1.71901 15.041 3.49694C15.041 5.27488 16.4915 6.72387 18.2713 6.72387C20.051 6.72387 21.5016 5.27903 21.5016 3.49694C21.5016 1.71484 20.0553 0.27002 18.2713 0.27002Z" fill="currentColor"/>
<path d="M28.7505 29.3266C28.4628 29.2933 28.2836 29.2933 27.6626 29.4057C27.1291 29.5223 26.8206 29.643 26.633 29.743C26.5163 29.5807 25.5285 28.2732 24.6115 27.0532H23.7153L26.4871 31.471L26.5288 31.5001C26.5705 31.5251 26.9374 31.7333 27.9961 31.7125C28.6588 31.7 29.5049 31.5293 29.5507 31.5168C30.001 31.4002 30.2635 30.4966 30.3553 30.1136L30.3886 29.9761L30.2802 29.8846C30.2593 29.8637 29.6966 29.4016 28.7505 29.3266Z" fill="currentColor"/>
<path d="M7.83463 29.3266C8.12223 29.2933 8.30146 29.2933 8.92251 29.4057C9.45604 29.5223 9.76449 29.643 9.95205 29.743C10.0688 29.5807 11.0566 28.2732 11.9736 27.0532H12.8656L10.0938 31.471L10.0521 31.5001C10.0104 31.5251 9.64361 31.7333 8.58489 31.7125C7.92217 31.7 7.07604 31.5293 7.03019 31.5168C6.58002 31.4002 6.31743 30.4966 6.22573 30.1136L6.19238 29.9761L6.30076 29.8846C6.32577 29.8637 6.88846 29.4016 7.83463 29.3266Z" fill="currentColor"/>
<path d="M23.8528 9.32982L27.5624 3.44224C27.5624 3.44224 27.4207 3.00921 26.9872 2.7802C26.5663 2.55535 26.1119 2.65113 26.1119 2.65113L22.7065 8.7802C23.2359 8.98839 23.6235 9.19241 23.8528 9.32982Z" fill="currentColor"/>
<path d="M13.9869 8.95215L10.4857 2.64819C10.4857 2.64819 10.0313 2.55243 9.61036 2.77727C9.18104 3.00628 9.03516 3.43931 9.03516 3.43931L12.8865 9.5559C13.2366 9.33106 13.6034 9.12702 13.9869 8.95215Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_7725_2785">
<rect width="2.182rem" height="2rem" fill="currentColor"/>
</clipPath>
</defs>
</svg></div><div class="client-logo w-embed"><svg width="5.688rem" height="1.5rem" viewBox="0 0 91 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.54466 3.08753C9.01541 3.1702 8.28707 3.36957 7.89862 3.53492C7.81551 3.57154 7.70508 3.61728 7.61409 3.65497C7.57219 3.67233 7.53441 3.68798 7.50533 3.70024C7.19457 3.83642 7.09745 3.88503 6.60705 4.1768C5.35917 4.91596 4.27638 6.01008 3.54319 7.26953C2.62063 8.84509 2.23218 10.7951 2.47982 12.57C2.57694 13.2557 2.62548 13.4599 2.85371 14.1747C3.53833 16.2998 5.05812 18.0504 7.11687 19.0861C8.3162 19.689 9.49611 19.9614 10.9285 19.9614C12.7979 19.9614 14.4828 19.3925 16.0511 18.2303C17.3524 17.2626 18.474 15.6482 19.0082 13.9656C19.2801 13.1146 19.4209 11.5439 19.2898 10.8437C19.2072 10.4158 18.8188 9.44322 18.6731 9.31192C18.6586 9.29733 18.5906 9.20981 18.5275 9.1174C18.4158 8.9472 18.1002 8.63114 18.0468 8.63114C18.0273 8.63114 17.9642 8.58251 17.8962 8.51927C17.7845 8.41716 17.6049 8.30532 17.1679 8.06218C16.9543 7.94061 16.4104 7.78013 16.0026 7.71692C15.818 7.68288 14.5702 7.65856 13.0164 7.65371L10.3458 7.63912L9.8894 7.77528C9.32616 7.94061 8.97655 8.12539 8.47158 8.51927C7.45192 9.33138 6.92751 10.7124 7.13629 12.0594C7.25769 12.8569 7.60245 13.5328 8.19481 14.131C8.82605 14.7728 9.57379 15.1327 10.5109 15.2445C11.8996 15.4147 13.3514 14.7193 14.1137 13.5182C14.3031 13.2216 14.5459 12.6721 14.5459 12.5408V12.4241H12.6376H10.7294L10.4624 12.288C10.2439 12.181 10.1759 12.1129 10.0691 11.8941C9.8894 11.5391 9.8894 11.2959 10.0739 10.9993C10.1565 10.8777 10.3118 10.7124 10.4235 10.6395L10.6274 10.5033L13.1086 10.4741C15.7501 10.4498 15.7889 10.4498 16.1094 10.6832C16.1871 10.7367 16.3036 10.8632 16.3667 10.9653C16.6581 11.4272 16.4833 12.8375 16.0074 13.8586C15.5024 14.9382 14.643 15.8621 13.6476 16.3921C13.0795 16.6936 12.5697 16.8833 12.0113 17C11.5743 17.0924 11.4092 17.1021 10.71 17.0778C9.89911 17.0486 9.71945 17.0195 9.03483 16.7812C8.2191 16.4991 7.1703 15.7843 6.65559 15.1619C5.66021 13.9559 5.21836 12.7159 5.29118 11.2959C5.33975 10.2164 5.42714 9.85169 5.81074 9.06877C6.45167 7.75582 7.46649 6.793 8.81146 6.22404C9.75831 5.8253 10.1662 5.77667 13.2835 5.73777C13.2835 5.73777 16.7752 5.78466 17.2256 5.73777C17.2533 5.73488 17.2886 5.7321 17.3304 5.72881C17.9675 5.67864 20.1244 5.5088 20.3331 3H17.2256H11.5597C10.3847 3.00487 9.94282 3.01946 9.54466 3.08753ZM31.5076 19.3086L31.3414 17.0656C31.113 17.1487 31.0091 17.1695 30.8431 17.1695C30.5522 17.1695 30.3446 16.941 30.3446 16.5464V9.23603H27.4992V14.9265C27.4992 16.1934 26.6892 17.0449 25.5262 17.0449C24.4879 17.0449 23.8856 16.2972 23.8856 15.1134V9.23603H21.0196V15.778C21.0196 17.8548 22.3072 19.5163 24.6124 19.5163C26.0871 19.5163 27.0632 18.8102 27.6239 17.7718C27.9146 18.914 28.7247 19.5163 30.0124 19.5163C30.6353 19.5163 31.113 19.4332 31.5076 19.3086ZM48.5142 12.9951C48.5142 10.7313 47.3097 9.13218 45.0459 9.13218C43.3636 9.13218 42.263 10.0252 41.7437 11.2505C41.266 9.98368 40.1861 9.13218 38.5452 9.13218C37.1331 9.13218 36.1362 9.776 35.5548 10.7106L35.4717 9.23603H32.7301V19.4124H35.5754V13.722C35.5754 12.4551 36.3647 11.6036 37.5069 11.6036C38.566 11.6036 39.1892 12.3513 39.1892 13.6181V19.4124H42.0344V13.722C42.0344 12.4551 42.8236 11.6036 43.966 11.6036C45.0043 11.6036 45.6482 12.3305 45.6482 13.6181V19.4124H48.5142V12.9951ZM54.266 19.3086L54.1 17.0656C53.8714 17.1487 53.7676 17.1695 53.6015 17.1695C53.3106 17.1695 53.103 16.941 53.103 16.5464V4.66701H50.2578V16.7126C50.2578 18.5194 51.1093 19.5163 52.7708 19.5163C53.3937 19.5163 53.8714 19.4332 54.266 19.3086ZM65.3231 14.2827C65.3231 11.2298 63.246 9.13218 60.0893 9.13218C56.974 9.13218 54.8764 11.3128 54.8764 14.3865C54.8764 17.4395 56.974 19.5163 60.0893 19.5163C63.246 19.5163 65.3231 17.3356 65.3231 14.2827ZM57.7426 14.345C57.7426 12.6212 58.677 11.479 60.0893 11.479C61.543 11.479 62.4361 12.6212 62.4361 14.345C62.4361 16.0272 61.543 17.1695 60.0893 17.1695C58.677 17.1695 57.7426 16.0272 57.7426 14.345ZM76.6053 14.2827C76.6053 11.2298 74.5285 9.13218 71.3716 9.13218C68.2564 9.13218 66.1588 11.3128 66.1588 14.3865C66.1588 17.4395 68.2564 19.5163 71.3716 19.5163C74.5285 19.5163 76.6053 17.3356 76.6053 14.2827ZM69.0248 14.345C69.0248 12.6212 69.9594 11.479 71.3716 11.479C72.8254 11.479 73.7185 12.6212 73.7185 14.345C73.7185 16.0272 72.8254 17.1695 71.3716 17.1695C69.9594 17.1695 69.0248 16.0272 69.0248 14.345ZM88.4068 14.1581C88.4068 10.939 86.5583 9.13218 83.9832 9.13218C82.4462 9.13218 81.3871 9.79678 80.8055 10.7106L80.7432 9.21525H77.9811V23.6076H80.8263V17.9587C81.3871 18.8932 82.3839 19.5163 83.8793 19.5163C86.6414 19.5163 88.4068 17.3149 88.4068 14.1581ZM85.52 14.2827C85.52 16.0065 84.5854 17.1279 83.2354 17.1279C81.7194 17.1279 80.8263 15.8611 80.8263 14.6358V13.9919C80.8263 12.8497 81.6778 11.5205 83.2561 11.5205C84.6477 11.5205 85.52 12.6005 85.52 14.2827Z" fill="currentColor"/>
</svg></div><div class="client-logo w-embed"><svg width="8.188rem" height="1.563rem" viewBox="0 0 131 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5633 13.8399C9.78508 13.139 9.82827 11.9225 10.621 11.2515C11.4378 10.5602 12.6824 10.6816 13.3461 11.5191C13.7757 12.0614 13.8305 12.8181 13.4844 13.4323C13.1321 14.0575 12.392 14.4335 11.6853 14.3519C11.2681 14.3038 10.8986 14.1538 10.5633 13.8399Z" fill="currentColor"/>
<path d="M10.3034 18.7849C10.1697 17.9562 10.4655 17.3507 11.1375 17.0168C11.7775 16.6988 12.5484 16.8404 13.0522 17.3686C13.6614 18.0071 13.5891 19.0219 12.8949 19.5766C12.1506 20.1714 11.0636 20.0165 10.5173 19.2311C10.4316 19.1078 10.3809 18.9603 10.3034 18.7849Z" fill="currentColor"/>
<path d="M10.7574 5.64019C11.2244 5.28097 11.6984 5.11179 12.2572 5.27571C12.9407 5.47619 13.3952 5.98064 13.4592 6.63298C13.5172 7.22527 13.1939 7.81502 12.6515 8.10644C12.0781 8.41446 11.3272 8.34697 10.8321 7.9429C10.0947 7.34103 10.0548 6.4489 10.7574 5.64019Z" fill="currentColor"/>
<path d="M18.2236 14.3539C19.0251 15.21 18.6544 16.4856 17.6759 16.861C16.9985 17.1208 16.2565 16.8907 15.8311 16.2818C15.4452 15.7293 15.4876 14.9505 15.9317 14.436C16.406 13.8864 17.1392 13.7253 17.7788 14.0427C17.9287 14.1171 18.0587 14.2318 18.2236 14.3539Z" fill="currentColor"/>
<path d="M15.8438 10.4907C15.2568 9.65684 15.6522 8.41831 16.702 8.12938C17.3883 7.94051 18.1332 8.25245 18.4778 8.88837C18.8211 9.52166 18.671 10.3213 18.1221 10.7843C17.5715 11.2486 16.7524 11.2769 16.1903 10.8425C16.0706 10.75 15.9726 10.6295 15.8438 10.4907Z" fill="currentColor"/>
<path d="M5.38773 8.65337C6.07366 7.98681 6.80436 7.89025 7.47985 8.35202C8.1454 8.80698 8.34545 9.68563 7.94237 10.3834C7.53669 11.0858 6.6277 11.356 5.89989 10.9906C5.18399 10.6312 4.86053 9.77509 5.16763 9.03754C5.21941 8.91317 5.29772 8.79986 5.38773 8.65337Z" fill="currentColor"/>
<path d="M7.70215 14.3508C8.46284 15.1342 8.20131 16.4112 7.21365 16.8411C6.55336 17.1285 5.78595 16.9174 5.34822 16.3304C4.93246 15.7728 4.95968 14.9701 5.41223 14.4434C5.89783 13.8783 6.65471 13.7225 7.30216 14.0636C7.43565 14.1339 7.55196 14.2368 7.70215 14.3508Z" fill="currentColor"/>
<path d="M7.87997 21.489C7.60387 22.3622 6.90056 22.7399 6.13564 22.4621C5.55838 22.2525 5.21962 21.6867 5.31473 21.091C5.40705 20.5129 5.96829 20.0642 6.59946 20.064C7.21909 20.0637 7.75922 20.4776 7.86383 21.0436C7.88828 21.176 7.87819 21.3147 7.87997 21.489Z" fill="currentColor"/>
<path d="M18.0651 22.1444C17.4018 22.6578 16.7372 22.6704 16.2358 22.2065C15.7225 21.7318 15.6725 21.038 16.1139 20.5158C16.5395 20.0122 17.3228 19.9123 17.8723 20.2915C18.4225 20.6711 18.573 21.3892 18.2192 21.9588C18.1837 22.0161 18.1333 22.0642 18.0651 22.1444Z" fill="currentColor"/>
<path d="M21.0385 12.7753C21.0155 11.885 21.4359 11.3575 22.1905 11.2846C22.7777 11.2278 23.327 11.5622 23.5279 12.0987C23.7229 12.6193 23.5572 13.1714 23.1054 13.5061C22.6226 13.8637 21.9326 13.8693 21.5003 13.4714C21.3087 13.2951 21.1941 13.0352 21.0385 12.7753Z" fill="currentColor"/>
<path d="M16.1571 4.57C15.7463 3.99297 15.717 3.48937 16.044 3.03897C16.3734 2.5853 16.9574 2.38823 17.4958 2.54907C18.1616 2.74799 18.5457 3.41155 18.3745 4.06691C18.2083 4.70315 17.4568 5.13258 16.7995 4.93584C16.5798 4.87007 16.3875 4.71249 16.1571 4.57Z" fill="currentColor"/>
<path d="M7.65308 4.47288C7.19195 4.97872 6.6669 5.11683 6.06637 4.87023C5.50598 4.64011 5.19622 4.02608 5.32803 3.46074C5.46239 2.88442 6.03277 2.47038 6.65667 2.49627C7.28845 2.52248 7.81059 2.98154 7.87917 3.578C7.91492 3.88896 7.87943 4.18689 7.65308 4.47288Z" fill="currentColor"/>
<path d="M1.56165 13.7351C0.635642 13.7986 0.0230482 13.3221 0.000632914 12.5633C-0.0182595 11.9238 0.387185 11.4286 1.03107 11.305C1.66872 11.1826 2.29056 11.5243 2.50555 12.1152C2.71861 12.7008 2.46858 13.3126 1.88668 13.617C1.79744 13.6637 1.6968 13.6886 1.56165 13.7351Z" fill="currentColor"/>
<path d="M22.4462 17.4517C22.534 17.4596 22.5874 17.4568 22.6343 17.473C23.1329 17.6455 23.3847 17.9633 23.3638 18.3887C23.3462 18.7459 23.0576 19.0835 22.683 19.185C22.2321 19.3072 21.7548 19.1398 21.5156 18.7755C21.2665 18.3962 21.3736 17.8712 21.7883 17.6273C21.9678 17.5217 22.2003 17.5062 22.4462 17.4517Z" fill="currentColor"/>
<path d="M1.17976 17.4586C1.53615 17.425 1.82109 17.5044 2.05807 17.7256C2.44004 18.0821 2.42898 18.6347 2.02865 18.9702C1.68316 19.2597 1.29058 19.296 0.889064 19.1201C0.575915 18.9828 0.373295 18.7378 0.35965 18.3789C0.346197 18.025 0.51121 17.7604 0.811032 17.5849C0.911034 17.5263 1.03132 17.5024 1.17976 17.4586Z" fill="currentColor"/>
<path d="M12.8085 1.13497C12.3951 1.85097 11.6106 1.98773 11.1079 1.4664C10.7444 1.08946 10.8033 0.469267 11.2462 0.189782C11.6165 -0.0439603 12.0163 -0.0686949 12.4003 0.154157C12.7576 0.361571 12.9124 0.680033 12.8085 1.13497Z" fill="currentColor"/>
<path d="M11.3439 23.3897C11.8047 23.2007 12.2082 23.2123 12.5649 23.5377C12.8126 23.7636 12.9076 24.0473 12.8156 24.3702C12.7252 24.6871 12.515 24.9098 12.1828 24.9666C11.9851 25.0004 11.7714 25.016 11.5767 24.9785C10.8855 24.8454 10.6452 24.0957 11.1134 23.5662C11.1687 23.5036 11.2443 23.4588 11.3439 23.3897Z" fill="currentColor"/>
<path d="M1.72816 5.889C1.88641 5.99371 2.04372 6.06012 2.11943 6.17865C2.2236 6.34176 2.31507 6.54167 2.32512 6.73045C2.34896 7.1778 1.93383 7.54969 1.43077 7.57987C0.869898 7.61352 0.409201 7.27701 0.359251 6.7972C0.312126 6.34451 0.66027 5.89845 1.14224 5.83355C1.32007 5.8096 1.50768 5.85834 1.72816 5.889Z" fill="currentColor"/>
<path d="M23.1832 7.22802C22.8614 7.56974 22.4934 7.63932 22.0882 7.55169C21.7211 7.47229 21.4463 7.1784 21.394 6.82966C21.3428 6.48757 21.5331 6.12502 21.8602 5.9417C22.2469 5.72496 22.7615 5.78927 23.0863 6.09493C23.3973 6.38758 23.4319 6.70641 23.1832 7.22802Z" fill="currentColor"/>
<path d="M73.2205 16.2069C73.2205 16.5275 73.2205 16.7989 73.2205 17.1312C72.9429 17.1476 72.6849 17.1628 72.3857 17.1804C72.3857 14.5235 72.3857 11.9156 72.3857 9.28033C72.6538 9.28033 72.9185 9.28033 73.2101 9.28033C73.2101 10.8115 73.2101 12.3213 73.2101 13.8432C73.4489 13.8779 73.5204 13.6895 73.6265 13.5812C74.8876 12.2931 76.1656 11.0202 77.3858 9.69422C77.7827 9.26291 78.1878 9.20501 78.7791 9.2859C77.6376 10.4874 76.5434 11.6391 75.398 12.8447C76.5851 14.2528 77.773 15.662 78.999 17.1162C78.4447 17.2147 78.0335 17.2164 77.6538 16.7401C76.87 15.7572 76.0148 14.8312 75.1885 13.8823C75.0776 13.755 74.9637 13.6303 74.8594 13.5136C74.3281 14.0211 73.8094 14.5064 73.3072 15.0081C73.2374 15.0777 73.2308 15.2276 73.2259 15.3416C73.2143 15.6133 73.2212 15.8857 73.2205 16.2069Z" fill="currentColor"/>
<path d="M103.808 9.66368C103.722 9.53573 103.657 9.43737 103.539 9.2575C103.851 9.2575 104.105 9.22142 104.341 9.2711C104.481 9.30068 104.618 9.44575 104.713 9.57197C105.346 10.4155 105.966 11.2684 106.593 12.117C106.671 12.2226 106.759 12.3205 106.877 12.4632C107.1 12.159 107.298 11.8901 107.496 11.6214C107.97 10.9776 108.47 10.3506 108.908 9.68314C109.136 9.33558 109.396 9.19791 109.788 9.25295C109.87 9.26453 109.954 9.26502 110.132 9.27704C109.189 10.5641 108.284 11.799 107.349 13.0751C108.329 14.4091 109.307 15.7418 110.322 17.123C109.752 17.2216 109.354 17.2078 109.024 16.7067C108.445 15.827 107.788 14.9982 107.162 14.1493C107.064 14.0161 106.957 13.8896 106.82 13.7179C106.462 14.2046 106.132 14.6516 105.804 15.1C105.422 15.6215 104.998 16.1187 104.673 16.6737C104.356 17.2142 103.933 17.2231 103.362 17.1217C104.361 15.7678 105.327 14.4583 106.327 13.102C105.491 11.9611 104.66 10.8272 103.808 9.66368Z" fill="currentColor"/>
<path d="M61.4395 13.1503C61.4723 11.8781 61.932 10.8547 62.8971 10.085C64.4011 8.88538 66.8127 8.88918 68.1995 10.0835C68.2861 10.1581 68.3583 10.2493 68.4536 10.35C68.2867 10.5232 68.1364 10.6792 67.9556 10.8669C67.0992 10.0776 66.103 9.83019 65.0092 9.99918C64.2118 10.1224 63.5332 10.4899 63.0076 11.121C62.0037 12.3264 62.0232 14.2074 63.0739 15.3944C63.7055 16.1079 64.5204 16.442 65.4668 16.4753C66.4098 16.5085 67.2376 16.2192 67.9431 15.5509C68.1159 15.7428 68.2608 15.9037 68.4291 16.0907C68.233 16.3862 67.9142 16.577 67.5932 16.7557C66.1999 17.5315 63.4469 17.5888 62.0373 15.3788C61.6119 14.7118 61.4385 13.9794 61.4395 13.1503Z" fill="currentColor"/>
<path d="M43.2857 15.2913C43.2857 13.2689 43.2857 11.2974 43.2857 9.2915C43.571 9.2915 43.8329 9.2915 44.1325 9.2915C44.1325 11.6591 44.1325 14.0176 44.1325 16.4217C45.6059 16.4217 47.0433 16.4217 48.5133 16.4217C48.5133 16.6795 48.5133 16.8917 48.5133 17.1351C46.7911 17.1351 45.0787 17.1351 43.2958 17.1351C43.2731 16.5505 43.2917 15.9459 43.2857 15.2913Z" fill="currentColor"/>
<path d="M129.22 16.8779C129.224 14.3513 129.228 11.871 129.234 9.39073C129.234 9.36151 129.262 9.33235 129.288 9.27979C129.524 9.27979 129.772 9.27979 130.045 9.27979C130.045 11.8887 130.045 14.4834 130.045 17.1536C129.819 17.1536 129.589 17.1682 129.363 17.1431C129.308 17.137 129.267 17.0007 129.22 16.8779Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.6533 14.7813V9.29139C32.7022 9.28751 32.7491 9.28287 32.7946 9.27837C32.8888 9.26905 32.9771 9.2603 33.0655 9.26005C34.0865 9.25715 35.1075 9.25682 36.1286 9.25786C36.6784 9.25843 37.2161 9.33576 37.7184 9.56983C39.0817 10.2051 39.2553 11.967 38.0469 12.8695C37.9971 12.9066 37.9466 12.9427 37.8807 12.9897C37.8447 13.0154 37.8041 13.0444 37.7565 13.0786C37.8212 13.1084 37.8792 13.1347 37.9328 13.1588L37.9328 13.1589C38.0367 13.2058 38.1237 13.2451 38.2087 13.288C38.8564 13.6148 39.2041 14.1385 39.249 14.8657C39.2967 15.6392 39.0525 16.2725 38.381 16.702C37.9547 16.9746 37.4755 17.1128 36.9788 17.1226C35.9186 17.1436 34.858 17.1476 33.7974 17.1516H33.7974C33.4631 17.1529 33.1288 17.1542 32.7945 17.156C32.7764 17.1561 32.7582 17.1455 32.7275 17.1277C32.7085 17.1167 32.6848 17.1029 32.6533 17.0872L32.6533 14.7813ZM37.7661 13.8161C37.3355 13.5797 36.8648 13.5236 36.3856 13.52C35.5361 13.5134 34.6865 13.5129 33.837 13.5157C33.7601 13.5159 33.6832 13.533 33.613 13.5487L33.613 13.5487C33.5824 13.5554 33.5532 13.562 33.5258 13.5667V13.5668L33.5257 13.5668V16.4457C33.5592 16.4507 33.5889 16.4561 33.6161 16.461H33.6161C33.6679 16.4704 33.7106 16.4781 33.7533 16.4781C33.9644 16.4778 34.1756 16.4781 34.3868 16.4783C35.0592 16.4792 35.7316 16.48 36.4036 16.4647C36.7232 16.4574 37.046 16.4031 37.3589 16.3329C37.6408 16.2696 37.8809 16.1533 38.0598 15.976C38.2239 15.8134 38.3365 15.5995 38.3825 15.3281C38.3962 15.2473 38.4063 15.1673 38.4121 15.0885C38.4483 14.5974 38.3142 14.1536 37.7997 13.836L37.7863 13.8287L37.7661 13.8161ZM37.0143 10.1238C37.1046 10.1522 37.1933 10.1841 37.2794 10.219C37.7627 10.4147 37.9969 10.8225 38.0003 11.3504C38.0038 11.8888 37.8079 12.3406 37.2975 12.5452C36.9274 12.6936 36.5159 12.7782 36.1169 12.8058C35.667 12.837 35.2147 12.8337 34.7455 12.8303C34.5442 12.8288 34.3397 12.8273 34.131 12.8285L33.5502 12.8287C33.5502 12.8286 33.5502 12.8285 33.5501 12.8285C33.5499 12.8285 33.5498 12.8285 33.5496 12.8285C33.4747 12.4938 33.4835 12.1668 33.4922 11.844C33.4962 11.6955 33.5001 11.548 33.4959 11.401C33.4869 11.0849 33.489 10.7685 33.4912 10.4463V10.4463C33.4921 10.3033 33.4931 10.1591 33.4931 10.0133C33.5215 10.0057 33.5474 9.99718 33.5716 9.98923L33.5716 9.98923C33.6188 9.9737 33.6594 9.96032 33.7001 9.96027C33.9114 9.95997 34.1228 9.95841 34.3341 9.95686C34.9557 9.95229 35.5774 9.94771 36.1977 9.97514C36.4698 9.98716 36.7491 10.0405 37.0143 10.1238Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M82.5093 15.1897V9.29674C82.5601 9.29205 82.6082 9.28652 82.6547 9.28119L82.6547 9.28119C82.7498 9.27027 82.8376 9.2602 82.9253 9.25993C83.2009 9.25908 83.4766 9.25636 83.7522 9.25363C84.5139 9.24611 85.2755 9.23858 86.0355 9.27062C86.5354 9.29169 87.0542 9.38717 87.5215 9.56311C89.0699 10.1462 88.9644 12.1706 87.9376 12.8432C87.8854 12.8775 87.8357 12.9158 87.771 12.9658L87.7709 12.9658C87.7356 12.9931 87.6957 13.024 87.6484 13.0595C87.7073 13.092 87.7603 13.1217 87.8095 13.1493C87.9059 13.2034 87.988 13.2494 88.0716 13.2923C88.7582 13.6447 89.0847 14.2103 89.1025 14.9774C89.1206 15.7598 88.8289 16.3623 88.1384 16.7552C87.6839 17.0138 87.186 17.1312 86.6729 17.1368C85.7048 17.1474 84.7366 17.1455 83.7411 17.1435H83.7411H83.7409C83.3387 17.1427 82.9321 17.1419 82.5192 17.1419L82.516 16.863C82.5134 16.6473 82.5108 16.4285 82.5097 16.2097C82.5085 15.9876 82.5087 15.7656 82.509 15.5269L82.5093 15.1897ZM83.3535 16.1175L83.3983 16.4354C83.7023 16.4354 84.0037 16.4363 84.3031 16.4371H84.3032H84.3032C85.1096 16.4395 85.9021 16.4418 86.6942 16.4268C86.7478 16.4258 86.8019 16.4216 86.8561 16.4148C86.8687 16.4132 86.8814 16.4115 86.894 16.4096C87.0948 16.38 87.2962 16.3156 87.4829 16.2406C88.0125 16.0281 88.2561 15.6044 88.2686 15.0403C88.2814 14.4606 88.0826 13.9803 87.5151 13.7773C87.1224 13.6368 86.6939 13.55 86.2774 13.5318C85.6428 13.504 85.0067 13.5087 84.3708 13.5135H84.3707C84.1387 13.5152 83.9066 13.5169 83.6746 13.517C83.611 13.5171 83.5474 13.5251 83.4741 13.5343L83.4741 13.5343C83.4369 13.5389 83.3972 13.5439 83.3537 13.5483V13.5483L83.3534 13.5484L83.3535 16.1175ZM84.3208 9.95203H83.3885V12.7908C83.3888 12.7908 83.3891 12.7908 83.3894 12.7908V12.7909C83.6628 12.7909 83.9335 12.7918 84.2021 12.7927C84.9174 12.7952 85.6184 12.7976 86.319 12.7823C86.5659 12.7769 86.8219 12.6936 87.0539 12.598C87.5978 12.374 87.8572 11.9485 87.8525 11.3589C87.848 10.7842 87.5739 10.3841 87.0489 10.179C86.7937 10.0792 86.5163 10.0083 86.2434 9.98448C86.2333 9.9836 86.2232 9.98278 86.2132 9.98202C85.866 9.95599 85.517 9.95537 85.1318 9.95469C85.129 9.95468 85.1263 9.95468 85.1235 9.95467C84.9812 9.95438 84.8361 9.95399 84.6872 9.952L84.3208 9.95203Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M99.3073 16.3152C100.975 14.8906 101.009 12.6421 100.245 11.2689C99.5109 9.98089 98.3985 9.32696 96.9908 9.21136C93.7868 8.94822 91.6466 11.6925 92.6753 14.6242C93.7531 17.6954 97.5803 17.7904 99.3073 16.3152ZM95.4898 16.3215C93.4667 15.6961 92.7396 13.3812 93.6378 11.6518C93.639 11.6496 93.6402 11.6475 93.6414 11.6453C93.646 11.6361 93.6507 11.627 93.6554 11.6179C94.7198 9.68474 97.4024 9.48542 98.8031 10.7531C99.855 11.705 100.178 13.2703 99.6037 14.5903C99.0465 15.8702 97.7203 16.6029 96.2295 16.4662C95.9665 16.442 95.7198 16.3927 95.4898 16.3215Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M54.3742 9.28484C53.4009 11.413 52.4394 13.5155 51.4637 15.6538C51.3917 15.8285 51.3106 15.9948 51.2304 16.1594C51.0752 16.4775 50.9231 16.7895 50.8457 17.1433C50.8827 17.147 50.9148 17.1506 50.9438 17.154C50.9978 17.1602 51.0408 17.1651 51.0838 17.166L51.084 17.166C51.6557 17.178 51.6572 17.178 51.8804 16.6754C51.9271 16.5703 51.9748 16.4655 52.0225 16.3607C52.1583 16.0627 52.294 15.7646 52.4067 15.4581C52.5177 15.1562 52.6885 15.0484 53.0118 15.053C53.8311 15.0647 54.6506 15.0627 55.4701 15.0607C55.8424 15.0597 56.2147 15.0588 56.587 15.0592C56.6772 15.0593 56.7673 15.0659 56.8629 15.073C56.9089 15.0763 56.9561 15.0798 57.0052 15.0827L57.93 17.1303H58.8135L55.226 9.28369H54.3747L54.3742 9.28484ZM54.7989 10.1419L54.7986 10.1412L54.7948 10.1495C54.3784 11.0714 54.0095 11.8882 53.6267 12.7408C53.3894 13.2821 53.166 13.7875 52.9192 14.3458L52.9183 14.3478H56.6792L56.6792 14.3477H56.6799L54.7992 10.1411L54.7989 10.1419Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M125.778 17.1384C125.688 16.9249 125.623 16.7717 125.546 16.5837C124.424 14.1308 123.314 11.7127 122.2 9.28701L122.193 9.27295H121.354L117.764 17.1403H118.632L119.568 15.0879H123.991C124.067 15.2598 124.143 15.4298 124.218 15.5985C124.404 16.0142 124.586 16.4223 124.759 16.8344C124.856 17.0658 124.987 17.2003 125.253 17.1686C125.361 17.1558 125.47 17.1521 125.592 17.148C125.651 17.146 125.713 17.1439 125.779 17.1406L125.778 17.1384ZM123.657 14.3405H123.657L121.774 10.1404L121.773 10.1423C121.61 10.4975 121.499 10.7404 121.374 11.0192C120.878 12.1365 120.395 13.2176 119.895 14.3391L119.894 14.3405H119.894L119.894 14.3406H123.657L123.657 14.3405Z" fill="currentColor"/>
</svg></div></div><div class="wrap-logos _2"><div class="client-logo w-embed"><svg width="7.375rem" height="1.875rem" viewBox="0 0 118 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.3284 2.08733L11.9434 9.47933H19.3284V2.08733ZM19.3284 2.08733V4.11111M11.9263 1V29M19.3284 16.8698L11.9434 9.47778M19.3284 16.8698V27.467L11.9434 20.075M19.3284 16.8698L11.9426 9.47778M19.3284 16.8698L19.3276 20.0322H22.4971V9.47778H11.9426M11.9434 9.47778V20.075M11.9434 9.47778L4.55763 16.8698M11.9434 20.075L4.55763 27.467V16.8698M4.55763 16.8698L4.55685 20.0322H1.38818V9.47778H11.9426M4.55763 16.8698L11.9426 9.47778M11.9426 9.47933L4.55685 2.08733V9.47933H11.9426Z" stroke="currentColor" stroke-width="1.36111" stroke-miterlimit="10"/>
<path d="M44.1341 11.1328C44.5954 10.2703 45.2401 9.60606 46.0716 9.13862C46.9015 8.67273 47.8752 8.43939 48.9921 8.43939C50.109 8.43939 51.0338 8.66884 51.8077 9.12851C52.5824 9.58817 53.1618 10.1972 53.5452 10.9555C53.9287 11.7146 54.1208 12.5461 54.1208 13.4498V14.7021H45.4322C45.5022 15.7878 45.8686 16.6512 46.5312 17.2913C47.1939 17.9322 48.0837 18.2518 49.2014 18.2518C50.1082 18.2518 50.8036 18.0675 51.2842 17.6988C51.7665 17.3302 52.118 16.8192 52.342 16.1643H54.3316C54.0664 17.1801 53.5258 18.0613 52.7091 18.8056C51.8932 19.5507 50.7235 19.9225 49.2021 19.9225C48.0572 19.9225 47.0485 19.6892 46.1758 19.2233C45.3039 18.7574 44.6296 18.0924 44.1551 17.2291C43.6807 16.3657 43.4435 15.3499 43.4435 14.1802C43.4435 13.0104 43.6737 11.9954 44.1349 11.1321L44.1341 11.1328ZM52.0278 13.1364C52.0278 12.1898 51.7836 11.4494 51.2951 10.9127C50.8067 10.3768 50.039 10.1093 48.9914 10.1093C48.0145 10.1093 47.2149 10.3698 46.5942 10.8917C45.9728 11.4136 45.5925 12.1626 45.4532 13.1364H52.0278ZM56.731 8.75206V10.4849C56.731 10.5829 56.78 10.6312 56.878 10.6312C56.934 10.6312 56.9752 10.6172 57.004 10.5892C57.0328 10.5612 57.06 10.5059 57.0872 10.4227C57.4497 9.28173 58.3504 8.71084 59.7885 8.71084H60.7094V10.5892H59.5155C58.5798 10.5892 57.8821 10.8116 57.4209 11.2573C56.9597 11.7029 56.7295 12.4333 56.7295 13.4498V19.6091H54.8449V8.75128H56.731V8.75206ZM71.7748 17.3224C71.2794 18.1919 70.6369 18.8429 69.8482 19.2738C69.0596 19.7047 68.211 19.9209 67.3041 19.9209C65.5176 19.9209 64.2607 19.2116 63.535 17.7914C63.479 17.681 63.409 17.6249 63.3258 17.6249C63.2426 17.6249 63.1998 17.6669 63.1998 17.7502V23.5749H61.3152V8.75284H63.1998V10.6109C63.1998 10.6942 63.2418 10.7362 63.3258 10.7362C63.4098 10.7362 63.479 10.6802 63.535 10.5697C64.2607 9.1495 65.5176 8.44017 67.3041 8.44017C68.211 8.44017 69.0596 8.65639 69.8482 9.08728C70.6369 9.51817 71.2786 10.1692 71.7748 11.0395C72.2702 11.9091 72.5184 12.9575 72.5184 14.181C72.5184 15.4044 72.2702 16.4521 71.7748 17.3224ZM69.597 11.1842C68.9056 10.4671 67.9948 10.1085 66.8647 10.1085C65.7346 10.1085 64.823 10.4671 64.1324 11.1842C63.4409 11.9013 63.1874 12.8999 63.1874 14.1802C63.1874 15.4604 63.4409 16.4598 64.1324 17.1762C64.8238 17.8933 65.7346 18.2518 66.8647 18.2518C67.9948 18.2518 68.9064 17.8941 69.597 17.1762C70.2885 16.4591 70.6338 15.4604 70.6338 14.1802C70.6338 12.8999 70.2885 11.9013 69.597 11.1842ZM75.253 4.57617V19.6083H73.3685V4.57773H75.253V4.57617ZM76.8047 11.1321C77.2651 10.2695 77.9107 9.60528 78.7421 9.13784C79.572 8.67195 80.5458 8.43862 81.6619 8.43862C82.778 8.43862 83.7044 8.66806 84.4782 9.12773C85.2529 9.58739 85.8324 10.1964 86.2158 10.9547C86.6 11.7138 86.7914 12.5453 86.7914 13.4491V14.7013H78.1028C78.1728 15.7871 78.5391 16.6504 79.2018 17.2905C79.8645 17.9314 80.7542 18.2511 81.8719 18.2511C82.7788 18.2511 83.4734 18.0667 83.9548 17.6981C84.437 17.3294 84.7886 16.8184 85.0126 16.1635H87.0021C86.7369 17.1793 86.1956 18.0605 85.3797 18.8048C84.5638 19.5499 83.394 19.9217 81.8727 19.9217C80.7278 19.9217 79.719 19.6884 78.8463 19.2225C77.9745 18.7566 77.3001 18.0916 76.8257 17.2283C76.3512 16.3649 76.114 15.3492 76.114 14.1794C76.114 13.0096 76.3442 11.9946 76.8055 11.1313H76.8047V11.1321ZM84.6984 13.1356C84.6984 12.1891 84.4541 11.4486 83.9657 10.9119C83.4772 10.3761 82.7096 10.1085 81.6619 10.1085C80.6858 10.1085 79.8855 10.3691 79.2648 10.8909C78.6434 11.4128 78.2638 12.1618 78.1238 13.1356H84.6984ZM85.9529 19.1906L90.2657 13.8659L86.7276 9.16895V8.75128H88.8004L91.7536 12.8012L94.9362 8.75128H97.0502V9.18995L92.9887 14.1802L96.7368 19.1906V19.6083H94.706L91.5023 15.2449L88.0692 19.6083H85.9545V19.1906H85.9529ZM99.7865 5.21784V7.56751H97.5854V5.21784H99.7865ZM99.6721 19.6091H97.7868V8.75206H99.6721V19.6091ZM100.266 8.75206H102.317V5.82917H104.202V8.75206H106.359L106.889 10.3434H104.202V15.5374C104.202 16.2467 104.184 16.7725 104.149 17.1139C104.114 17.4554 104.097 17.6607 104.097 17.7299C104.097 17.8279 104.124 17.9042 104.18 17.9594C104.236 18.0154 104.312 18.0426 104.411 18.0426C104.48 18.0426 104.686 18.0255 105.029 17.9905C105.37 17.9555 105.897 17.9384 106.61 17.9384H107.343V19.6083H105.877C104.676 19.6083 103.783 19.3166 103.197 18.7309C102.611 18.1461 102.317 17.2563 102.317 16.0585V10.3426H100.268V8.75128H100.266V8.75206ZM106.927 8.75206H108.848L111.968 17.8606C112.011 17.9726 112.077 18.1196 112.291 18.1196C112.505 18.1196 112.571 17.9718 112.613 17.8606L115.732 8.75206H117.524V9.16973L113.622 20.8823C113.286 21.8848 112.816 22.5841 112.209 22.9807C111.602 23.3774 110.896 23.5757 109.723 23.5757H107.713V21.9058H109.242C109.73 21.9058 110.128 21.9229 110.435 21.9579C110.741 21.9929 110.937 22.0101 111.021 22.0101C111.259 22.0101 111.419 21.9058 111.504 21.6974L112.09 20.1107C112.16 19.9443 112.166 19.8191 112.111 19.7343C112.083 19.6783 112.049 19.6433 112.007 19.6301C111.965 19.6161 111.902 19.6091 111.819 19.6091H110.542L106.929 8.75284H106.927V8.75206ZM42.2457 17.3403C41.7502 18.2098 41.1078 18.8608 40.3191 19.2917C39.5305 19.7226 38.6819 19.9388 37.775 19.9388C35.9885 19.9388 34.7316 19.2295 34.0059 17.8093C33.9499 17.6988 33.8799 17.6428 33.7967 17.6428C33.7135 17.6428 33.6707 17.6848 33.6707 17.7681V23.5928H31.7861V8.77073H33.6707V10.6288C33.6707 10.7121 33.7127 10.7541 33.7967 10.7541C33.8807 10.7541 33.9499 10.6981 34.0059 10.5876C34.7308 9.16739 35.9885 8.45806 37.775 8.45806C38.6819 8.45806 39.5305 8.67428 40.3191 9.10517C41.1078 9.53606 41.7495 10.1871 42.2457 11.0566C42.7411 11.9262 42.9892 12.9746 42.9892 14.1988C42.9892 15.4231 42.7411 16.4707 42.2457 17.3403ZM40.0679 11.2021C39.3765 10.4849 38.4657 10.1264 37.3356 10.1264C36.2055 10.1264 35.2939 10.4849 34.6032 11.2021C33.9118 11.9192 33.6582 12.9178 33.6582 14.1981C33.6582 15.4783 33.9118 16.4777 34.6032 17.1941C35.2947 17.9112 36.2055 18.2697 37.3356 18.2697C38.4657 18.2697 39.3772 17.9119 40.0679 17.1941C40.7594 16.4769 41.1047 15.4783 41.1047 14.1981C41.1047 12.9178 40.7594 11.9192 40.0679 11.2021Z" fill="currentColor"/>
</svg></div><div class="client-logo w-embed"><svg width="7.125rem" height="1.625rem" viewBox="0 0 114 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_7725_2856" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="3" width="114" height="23">
</mask>
<path d="M26.1644 5.80413H23.4141V20.1082H32.6899V17.6507H26.1644V5.80413ZM41.2755 11.2128C41.0036 10.9292 40.6899 10.6982 40.3239 10.5091C39.7696 10.2256 39.1526 10.0786 38.4624 10.0786C37.5526 10.0786 36.7474 10.2991 36.0467 10.7507C35.3356 11.2023 34.7814 11.8114 34.3736 12.5781C33.9657 13.3552 33.767 14.2269 33.767 15.2036C33.767 16.1804 33.9657 17.0311 34.3736 17.8082C34.7814 18.5854 35.3356 19.1945 36.0467 19.6356C36.7579 20.0873 37.5526 20.3078 38.452 20.3078C39.1526 20.3078 39.7905 20.1607 40.3448 19.8772C40.7108 19.6881 41.0245 19.4571 41.2859 19.184V20.0978H43.9631V10.2781H41.2859V11.2023L41.2755 11.2128ZM40.7526 17.0941C40.2925 17.5982 39.6964 17.8502 38.9539 17.8502C38.4833 17.8502 38.0546 17.7347 37.6781 17.5036C37.3016 17.2726 37.0088 16.9575 36.7997 16.569C36.5905 16.1804 36.486 15.7183 36.486 15.1827C36.486 14.647 36.5905 14.2164 36.7997 13.8174C37.0088 13.4288 37.3016 13.1137 37.6677 12.8827C38.0337 12.6516 38.4624 12.5361 38.9539 12.5361C39.4454 12.5361 39.8847 12.6516 40.2506 12.8722C40.6167 13.0927 40.9094 13.4078 41.1186 13.8174C41.3383 14.2269 41.4428 14.6891 41.4428 15.2036C41.4428 15.9598 41.2128 16.59 40.7526 17.0941ZM53.6885 10.6141C53.1238 10.2571 52.4859 10.0786 51.7539 10.0786C51.0219 10.0786 50.3421 10.2361 49.7565 10.5617C49.4428 10.7402 49.1604 10.9502 48.9199 11.2023V10.2781H46.2637V20.1082H48.9199V14.4685C48.9199 14.0904 49.0036 13.7439 49.1709 13.4393C49.3382 13.1347 49.5683 12.9036 49.8715 12.7356C50.1644 12.5676 50.5094 12.4941 50.8859 12.4941C51.4506 12.4941 51.9212 12.6726 52.2873 13.0402C52.6532 13.4078 52.831 13.8804 52.831 14.4685V20.1082H55.5081V13.8594C55.5081 13.2082 55.3408 12.5991 55.0166 12.0214C54.6925 11.4439 54.2533 10.9818 53.6885 10.6141ZM64.533 11.1288C64.282 10.8873 63.9892 10.6877 63.665 10.5196C63.1003 10.2256 62.4624 10.0786 61.7618 10.0786C60.852 10.0786 60.0467 10.2991 59.346 10.7507C58.6349 11.2023 58.0702 11.8114 57.6519 12.5781C57.2336 13.3552 57.0245 14.2269 57.0245 15.2036C57.0245 16.1804 57.2336 17.0311 57.6519 17.8082C58.0702 18.5854 58.6349 19.1945 59.346 19.6356C60.0572 20.0873 60.8624 20.3078 61.7618 20.3078C62.4728 20.3078 63.1212 20.1607 63.6859 19.8667C64.0206 19.6986 64.3029 19.4886 64.5539 19.247V20.1082H67.231V5.39453H64.533V11.1183V11.1288ZM64.397 16.569C64.1879 16.9575 63.8951 17.2726 63.5186 17.5036C63.1421 17.7347 62.7134 17.8502 62.2219 17.8502C61.7303 17.8502 61.3225 17.7347 60.946 17.5141C60.5696 17.2936 60.2767 16.9785 60.0676 16.5795C59.8584 16.1804 59.7539 15.7183 59.7539 15.1827C59.7539 14.647 59.8584 14.2059 60.0676 13.8069C60.2767 13.4078 60.5696 13.0927 60.9356 12.8722C61.312 12.6516 61.7408 12.5361 62.2427 12.5361C62.7447 12.5361 63.1526 12.6516 63.529 12.8827C63.8951 13.1137 64.1879 13.4288 64.397 13.8174C64.6062 14.2059 64.7107 14.668 64.7107 15.2036C64.7107 15.7393 64.6062 16.1699 64.397 16.569ZM70.8702 5.64659C70.4414 5.64659 70.0755 5.79362 69.7931 6.09819C69.5107 6.39225 69.3643 6.75983 69.3643 7.17992C69.3643 7.60002 69.5107 7.97809 69.7931 8.27216C70.0755 8.56622 70.431 8.71325 70.8702 8.71325C71.3094 8.71325 71.6754 8.56622 71.9574 8.27216C72.2298 7.97809 72.3757 7.62102 72.3757 7.17992C72.3757 6.73882 72.2399 6.40275 71.9574 6.09819C71.6859 5.80413 71.3199 5.64659 70.8702 5.64659ZM69.5107 20.1082H72.209V10.2781H69.5107V20.1082ZM81.9761 10.6141C81.4112 10.2571 80.7736 10.0786 80.0412 10.0786C79.3095 10.0786 78.6296 10.2361 78.0438 10.5617C77.7304 10.7402 77.448 10.9502 77.2072 11.2023V10.2781H74.5514V20.1082H77.2072V14.4685C77.2072 14.0904 77.2913 13.7439 77.4587 13.4393C77.6255 13.1347 77.8555 12.9036 78.1588 12.7356C78.4521 12.5676 78.7971 12.4941 79.1737 12.4941C79.7379 12.4941 80.2087 12.6726 80.5745 13.0402C80.9411 13.4078 81.1186 13.8804 81.1186 14.4685V20.1082H83.796V13.8594C83.796 13.2082 83.6285 12.5991 83.3043 12.0214C82.9802 11.4439 82.541 10.9818 81.9761 10.6141ZM92.7056 10.2781V11.0973C92.4547 10.8557 92.1723 10.6562 91.8373 10.4881C91.2731 10.2151 90.6241 10.0681 89.9132 10.0681C89.0349 10.0681 88.24 10.2781 87.5392 10.7087C86.8392 11.1393 86.2843 11.7169 85.8875 12.4521C85.4901 13.1873 85.291 14.0064 85.291 14.9306C85.291 15.8548 85.4901 16.6845 85.8875 17.4301C86.2843 18.1758 86.8392 18.764 87.5392 19.1945C88.24 19.6251 89.0349 19.8352 89.9132 19.8352C90.6241 19.8352 91.2623 19.6881 91.8273 19.4046C92.1514 19.2365 92.444 19.037 92.6848 18.7955V19.6462C92.6848 20.3603 92.444 20.9379 91.9523 21.3685C91.4715 21.7991 90.8232 22.0091 90.0074 22.0091C89.3483 22.0091 88.7841 21.8936 88.3133 21.6521C87.8425 21.4105 87.4242 21.0745 87.0483 20.6229L85.3434 22.3137C85.8243 22.9963 86.4625 23.5215 87.2575 23.889C88.0517 24.2567 88.9724 24.4457 90.0182 24.4457C91.064 24.4457 91.9732 24.2462 92.7681 23.847C93.5631 23.448 94.1905 22.8808 94.6405 22.1457C95.0897 21.4105 95.3197 20.5703 95.3197 19.6041V10.2781H92.6848H92.7056ZM92.5381 16.2329C92.3397 16.611 92.0673 16.8945 91.7123 17.0941C91.3565 17.2936 90.9274 17.3986 90.4257 17.3986C89.9657 17.3986 89.5474 17.2936 89.1816 17.0836C88.8049 16.8735 88.5225 16.5795 88.3241 16.2119C88.125 15.8338 88.0208 15.4137 88.0208 14.9411C88.0208 14.4685 88.125 14.0589 88.3342 13.6913C88.5433 13.3133 88.8258 13.0297 89.1816 12.8196C89.5366 12.6096 89.9657 12.5046 90.4466 12.5046C90.9274 12.5046 91.3357 12.6096 91.7015 12.8196C92.0673 13.0297 92.3498 13.3238 92.5381 13.6913C92.7365 14.0695 92.8307 14.4895 92.8307 14.9621C92.8307 15.4347 92.7365 15.8653 92.5381 16.2329Z" fill="currentColor"/>
<path d="M102.755 5.8042L97.0039 20.1083H99.9213L100.935 17.4407H106.782L107.785 20.1083H110.724L105.035 5.8042H102.765H102.755ZM101.814 15.1197L103.864 9.72155L105.893 15.1197H101.804H101.814ZM111.037 20.1083H113.788V5.8042H111.037V20.1083Z" fill="currentColor"/>
<path d="M0 16.7896V21.5366L3.79607 23.5845V18.827L0 16.7896Z" fill="currentColor"/>
<path d="M0 11.2129V15.9599L3.79607 18.0079V13.2503L0 11.2129Z" fill="currentColor"/>
<path d="M0 5.63623V10.3832L3.79607 12.4312V7.68418L0 5.63623Z" fill="currentColor"/>
<path d="M13.5742 18.8265V23.5841L17.3702 21.5361V16.7891L13.5742 18.8265Z" fill="currentColor"/>
<path d="M4.52783 13.2498V18.0074L8.32387 15.9595V11.2124L4.52783 13.2498Z" fill="currentColor"/>
<path d="M4.52783 7.68418V12.4312L8.32387 10.3832V5.63623L4.52783 7.68418Z" fill="currentColor"/>
<path d="M7.93702 5.03744L4.16187 3L0.386719 5.03744L4.16187 7.06438L7.93702 5.03744Z" fill="currentColor"/>
<path d="M4.52783 19.2051V23.9521L8.32387 26.0001V21.2531L4.52783 19.2051Z" fill="currentColor"/>
<path d="M9.05615 21.2531V26.0001L12.8522 23.9521V19.2051L9.05615 21.2531Z" fill="currentColor"/>
<path d="M4.91553 18.6065L8.6907 20.644L12.4554 18.6065L8.6907 16.5796L4.91553 18.6065Z" fill="currentColor"/>
<path d="M16.9937 16.1803L13.2185 14.1533L9.44336 16.1803L13.2185 18.2177L16.9937 16.1803Z" fill="currentColor"/>
</svg></div><div class="client-logo w-embed"><svg width="2.25rem" height="2rem" viewBox="0 0 36 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_7725_2785)">
<path d="M6.9799 23.7911V23.7828C6.9799 23.304 6.62977 22.9042 6.13377 22.9042C5.63775 22.9042 5.29597 23.2956 5.29597 23.7745V23.7828C5.29597 24.2616 5.64609 24.6613 6.14211 24.6613C6.63811 24.6613 6.9799 24.27 6.9799 23.7911ZM4.6499 23.7911V23.7828C4.6499 22.9876 5.27929 22.3379 6.14211 22.3379C7.00491 22.3379 7.62596 22.9792 7.62596 23.7745V23.7828C7.62596 24.5781 6.99657 25.2276 6.13377 25.2276C5.27096 25.2317 4.6499 24.5865 4.6499 23.7911Z" fill="currentColor"/>
<path d="M8.25146 22.3862H10.3814V22.9441H8.86836V23.5396H10.2022V24.0974H8.86836V25.18H8.25146V22.3862Z" fill="currentColor"/>
<path d="M13.9073 24.0197L13.5363 23.112L13.1653 24.0197H13.9073ZM13.2612 22.375H13.8281L15.0285 25.1897H14.3866L14.1323 24.5609H12.9486L12.6943 25.1897H12.0649L13.2612 22.375Z" fill="currentColor"/>
<path d="M15.5415 22.3862H16.2041L16.9377 23.5686L17.6755 22.3862H18.3382V25.18H17.7256V23.3564L16.9377 24.5514H16.9211L16.1416 23.3687V25.18H15.5415V22.3862Z" fill="currentColor"/>
<path d="M19.0259 22.3862H21.1349V22.9316H19.6385V23.4979H20.9557V24.0475H19.6385V24.6345H21.1557V25.18H19.0259V22.3862Z" fill="currentColor"/>
<path d="M23.0231 23.7436C23.3232 23.7436 23.4941 23.5853 23.4941 23.348V23.3397C23.4941 23.0773 23.3106 22.94 23.0106 22.94H22.3978V23.7436H23.0231ZM21.7852 22.3862H23.0648C23.4191 22.3862 23.6941 22.486 23.8817 22.6692C24.036 22.8234 24.1193 23.044 24.1193 23.3064V23.3147C24.1193 23.7643 23.8776 24.0475 23.519 24.1807L24.2027 25.18H23.4816L22.8813 24.2848H22.3978V25.18H21.7852V22.3862Z" fill="currentColor"/>
<path d="M24.7822 22.3862H25.3991V25.18H24.7822V22.3862Z" fill="currentColor"/>
<path d="M26.0532 23.7911V23.7828C26.0532 22.9876 26.6535 22.3379 27.5121 22.3379C28.0414 22.3379 28.354 22.5128 28.6166 22.7711L28.2248 23.2207C28.0081 23.025 27.7872 22.9042 27.5079 22.9042C27.0369 22.9042 26.6952 23.2956 26.6952 23.7745V23.7828C26.6952 24.2616 27.0285 24.6613 27.5079 24.6613C27.8288 24.6613 28.0248 24.5322 28.2414 24.3324L28.6333 24.728C28.3458 25.0362 28.0248 25.2276 27.487 25.2276C26.666 25.2317 26.0532 24.5947 26.0532 23.7911Z" fill="currentColor"/>
<path d="M30.8174 24.0197L30.4465 23.112L30.0754 24.0197H30.8174ZM30.1672 22.375H30.734L31.9345 25.1897H31.2926L31.0383 24.5609H29.8545L29.6003 25.1897H28.9751L30.1672 22.375Z" fill="black"/>
<path d="M22.8027 16.5258L23.728 16.2551V15.0976H17.7175V16.2551L18.6429 16.5258C19.3015 16.7257 19.3264 16.8005 19.3264 17.3251V18.9032C18.9931 18.9698 18.3678 18.974 17.9635 18.9157C15.7919 18.5993 15.1917 17.0004 15.1917 15.3224C15.1917 14.3814 15.5084 13.5236 16.2295 12.8283C16.7422 12.3328 17.5301 11.8831 18.7263 11.9248C19.2473 11.9456 19.8475 12.1912 20.0518 12.337C20.6478 12.7492 20.7853 13.2363 20.9437 13.8401H22.4818L22.4734 11.4792C22.4734 11.4792 20.9186 10.4175 18.2386 10.4175C16.1087 10.4175 11.9155 11.3044 11.9155 15.464C11.9155 18.0205 14.0621 20.015 17.8009 20.2023C20.3769 20.3314 22.1233 19.5735 22.1233 19.5735L22.1191 17.3251C22.1191 16.8047 22.1442 16.7298 22.8027 16.5258Z" fill="currentColor"/>
<path d="M8.15957 14.8308C7.99284 14.9849 7.61353 15.1722 7.3051 15.2472C6.46313 15.4596 5.38359 15.3762 5.3419 15.3762V11.8079C6.05466 11.8079 7.30092 11.6996 8.10121 12.2742C8.49719 12.5574 8.72643 13.0071 8.73894 13.59C8.74727 14.0063 8.59722 14.456 8.15957 14.8308ZM7.93448 10.642C7.4885 10.5921 6.18803 10.5796 6.18803 10.5796L0.902832 10.5838V11.7371L1.79065 12.0119C2.51173 12.2451 2.51173 12.3117 2.51173 12.8405L2.5159 17.8621C2.5159 18.3908 2.5159 18.4242 1.79481 18.6531L0.911168 18.9071V20.0688H6.94664V18.9071L6.06298 18.6531C5.3419 18.4242 5.3419 18.3908 5.3419 17.8621L5.34607 16.6504H6.77574C8.08871 16.6296 9.15576 16.5463 10.1019 16.0091C11.0064 15.497 11.5024 14.5477 11.5024 13.5567C11.4983 11.9578 10.2353 10.8794 7.93448 10.642Z" fill="currentColor"/>
<path d="M27.2242 16.8086C27.8329 15.651 28.6915 13.9939 28.7499 13.8731C28.8082 14.0106 29.5918 15.6261 30.167 16.8086H27.2242ZM34.8604 18.6781C34.3227 18.4783 34.2018 18.3825 34.0475 18.0452L30.2962 10.5879H28.7415L24.5442 18.1867C24.3941 18.4741 24.2566 18.5408 23.9023 18.6656L22.9478 18.9571V20.0688H27.6036V18.9321L26.5699 18.6656C26.349 18.6115 26.3574 18.4658 26.4115 18.3658C26.4115 18.3658 26.5449 18.1076 26.7491 17.7204H30.6464C30.8548 18.1119 30.9089 18.191 30.9756 18.3325C31.0757 18.5408 30.884 18.6323 30.638 18.7031L29.7044 18.9613V20.0729H35.6814V18.9821C35.6814 18.9738 34.8604 18.6781 34.8604 18.6781Z" fill="currentColor"/>
<path d="M15.2078 29.8789L14.8034 29.9788L14.6992 29.5624L15.362 29.3667H15.708V31.6943H15.2078V29.8789Z" fill="black"/>
<path d="M17.588 30.1361V30.1277C17.588 29.9237 17.438 29.7739 17.1796 29.7739C16.9295 29.7739 16.7877 29.9196 16.7877 30.1236V30.1319C16.7877 30.336 16.9378 30.4775 17.1921 30.4775C17.4464 30.4775 17.588 30.336 17.588 30.1361ZM16.3334 31.456L16.6001 31.0688C16.767 31.2062 16.9129 31.2687 17.1046 31.2687C17.388 31.2687 17.5422 31.0522 17.5756 30.744C17.463 30.8398 17.3087 30.9023 17.1046 30.9023C16.6001 30.9023 16.2793 30.6233 16.2793 30.1569V30.1485C16.2793 29.6822 16.6377 29.3408 17.163 29.3408C17.4755 29.3408 17.6547 29.4158 17.8298 29.5906C17.9965 29.7572 18.1048 30.007 18.1048 30.4608V30.4692C18.1048 31.2187 17.7505 31.7308 17.0921 31.7308C16.7586 31.7308 16.5294 31.6184 16.3334 31.456Z" fill="currentColor"/>
<path d="M18.9554 29.8789L18.551 29.9788L18.4468 29.5624L19.1095 29.3667H19.4597V31.6943H18.9554V29.8789Z" fill="black"/>
<path d="M21.3433 30.9564V30.948C21.3433 30.7524 21.1933 30.6107 20.9391 30.6107C20.689 30.6107 20.5431 30.7482 20.5431 30.9438V30.9522C20.5431 31.148 20.6931 31.2977 20.9473 31.2977C21.1974 31.2977 21.3433 31.1521 21.3433 30.9564ZM20.2971 31.4852C20.1304 31.3186 20.022 31.0688 20.022 30.6107V30.6025C20.022 29.8904 20.3471 29.3408 21.039 29.3408C21.3517 29.3408 21.5601 29.4324 21.7644 29.5948L21.4976 29.9862C21.3475 29.8697 21.2225 29.803 21.0266 29.803C20.7389 29.803 20.593 30.0362 20.5597 30.3401C20.6765 30.2651 20.8098 30.1902 21.039 30.1902C21.4976 30.1902 21.8519 30.4442 21.8519 30.9272V30.9356C21.8519 31.4061 21.4726 31.735 20.9682 31.735C20.6639 31.7308 20.4597 31.6476 20.2971 31.4852Z" fill="currentColor"/>
<path d="M19.7843 2.20618C19.4758 2.23115 19.3342 2.59341 19.3925 2.95149C19.7427 2.91401 20.0678 2.85156 20.3637 2.75996C20.3303 2.62672 20.2762 2.50596 20.1928 2.4102C20.1052 2.3061 19.9719 2.18953 19.7843 2.20618ZM16.8332 2.21867C16.6666 2.17287 16.5081 2.25615 16.4206 2.33525C16.3039 2.44351 16.2247 2.59756 16.183 2.75996C16.4831 2.84739 16.8041 2.91401 17.1542 2.95149C17.2 2.62672 17.0917 2.29778 16.8332 2.21867ZM18.2504 2.19785C18.0046 2.21451 17.8044 2.30611 17.6627 2.44767C17.5293 2.58092 17.4417 2.76411 17.421 2.97647C17.9545 3.03477 18.588 3.02644 19.1174 2.98064C19.0923 2.7433 19.0007 2.5601 18.8506 2.4227C18.7257 2.31027 18.4963 2.1812 18.2504 2.19785ZM20.472 4.12568C20.4636 3.98411 20.4262 3.86752 20.3553 3.77176C20.2887 3.68016 20.1928 3.60521 20.0553 3.60104C19.826 3.59687 19.6801 3.75926 19.5925 3.90083C19.4883 4.06738 19.43 4.26724 19.4425 4.49624C19.3508 4.5129 19.2508 4.5379 19.1591 4.54622C19.1507 4.28807 19.0465 4.09654 18.8965 3.95912C18.7506 3.82173 18.5463 3.72595 18.2754 3.72595C18.0046 3.72595 17.8086 3.82588 17.6585 3.95912C17.5044 4.09654 17.4043 4.29223 17.3918 4.54622C17.2917 4.53373 17.1959 4.51707 17.1084 4.49209C17.1209 4.10485 16.9709 3.80506 16.7249 3.65933C16.5749 3.57189 16.3873 3.58438 16.2706 3.68849C16.1622 3.78425 16.0955 3.92997 16.0872 4.11735C16.0747 4.1215 15.687 3.78425 15.5953 3.66349C15.5953 3.66349 15.5953 3.66349 15.5953 3.65933C15.5912 3.6052 15.587 3.5469 15.587 3.48862C15.587 2.00632 16.7958 0.798819 18.2796 0.798819C19.7635 0.798819 20.9722 2.00632 20.9722 3.48862C20.9722 3.53025 20.9722 3.57606 20.9681 3.61769C20.9013 3.72595 20.7597 3.92581 20.472 4.12568ZM20.3095 4.70028C20.2137 4.84184 20.0761 4.98341 19.8718 5.00007C19.7719 5.00424 19.6718 4.96676 19.605 4.90429C19.505 4.81269 19.4591 4.67946 19.4384 4.50041C19.8177 4.42131 20.1636 4.30471 20.4595 4.13816C20.4637 4.13816 20.4637 4.14233 20.4637 4.14233C20.472 4.33803 20.4178 4.54205 20.3095 4.70028ZM18.8923 5.14579C18.7423 5.28321 18.5422 5.38314 18.2713 5.38314C18.0003 5.38314 17.7962 5.28321 17.6503 5.14579C17.5001 5.0084 17.3918 4.81686 17.3877 4.56287C17.3877 4.55871 17.3877 4.55038 17.3918 4.55038C17.9211 4.64198 18.6297 4.63366 19.1507 4.55455C19.1507 4.81686 19.0424 5.0084 18.8923 5.14579ZM16.6957 4.9959C16.4956 4.9959 16.3414 4.846 16.2498 4.7086C16.1456 4.55455 16.0747 4.363 16.0788 4.13816V4.12983C16.3748 4.29638 16.7208 4.41297 17.1 4.49624C17.0792 4.75441 16.95 4.99174 16.6957 4.9959ZM18.2713 0.27002C16.4915 0.27002 15.041 1.71901 15.041 3.49694C15.041 5.27488 16.4915 6.72387 18.2713 6.72387C20.051 6.72387 21.5016 5.27903 21.5016 3.49694C21.5016 1.71484 20.0553 0.27002 18.2713 0.27002Z" fill="currentColor"/>
<path d="M28.7505 29.3266C28.4628 29.2933 28.2836 29.2933 27.6626 29.4057C27.1291 29.5223 26.8206 29.643 26.633 29.743C26.5163 29.5807 25.5285 28.2732 24.6115 27.0532H23.7153L26.4871 31.471L26.5288 31.5001C26.5705 31.5251 26.9374 31.7333 27.9961 31.7125C28.6588 31.7 29.5049 31.5293 29.5507 31.5168C30.001 31.4002 30.2635 30.4966 30.3553 30.1136L30.3886 29.9761L30.2802 29.8846C30.2593 29.8637 29.6966 29.4016 28.7505 29.3266Z" fill="currentColor"/>
<path d="M7.83463 29.3266C8.12223 29.2933 8.30146 29.2933 8.92251 29.4057C9.45604 29.5223 9.76449 29.643 9.95205 29.743C10.0688 29.5807 11.0566 28.2732 11.9736 27.0532H12.8656L10.0938 31.471L10.0521 31.5001C10.0104 31.5251 9.64361 31.7333 8.58489 31.7125C7.92217 31.7 7.07604 31.5293 7.03019 31.5168C6.58002 31.4002 6.31743 30.4966 6.22573 30.1136L6.19238 29.9761L6.30076 29.8846C6.32577 29.8637 6.88846 29.4016 7.83463 29.3266Z" fill="currentColor"/>
<path d="M23.8528 9.32982L27.5624 3.44224C27.5624 3.44224 27.4207 3.00921 26.9872 2.7802C26.5663 2.55535 26.1119 2.65113 26.1119 2.65113L22.7065 8.7802C23.2359 8.98839 23.6235 9.19241 23.8528 9.32982Z" fill="currentColor"/>
<path d="M13.9869 8.95215L10.4857 2.64819C10.4857 2.64819 10.0313 2.55243 9.61036 2.77727C9.18104 3.00628 9.03516 3.43931 9.03516 3.43931L12.8865 9.5559C13.2366 9.33106 13.6034 9.12702 13.9869 8.95215Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_7725_2785">
<rect width="2.182rem" height="2rem" fill="currentColor"/>
</clipPath>
</defs>
</svg></div><div class="client-logo w-embed"><svg width="5.688rem" height="1.5rem" viewBox="0 0 91 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.54466 3.08753C9.01541 3.1702 8.28707 3.36957 7.89862 3.53492C7.81551 3.57154 7.70508 3.61728 7.61409 3.65497C7.57219 3.67233 7.53441 3.68798 7.50533 3.70024C7.19457 3.83642 7.09745 3.88503 6.60705 4.1768C5.35917 4.91596 4.27638 6.01008 3.54319 7.26953C2.62063 8.84509 2.23218 10.7951 2.47982 12.57C2.57694 13.2557 2.62548 13.4599 2.85371 14.1747C3.53833 16.2998 5.05812 18.0504 7.11687 19.0861C8.3162 19.689 9.49611 19.9614 10.9285 19.9614C12.7979 19.9614 14.4828 19.3925 16.0511 18.2303C17.3524 17.2626 18.474 15.6482 19.0082 13.9656C19.2801 13.1146 19.4209 11.5439 19.2898 10.8437C19.2072 10.4158 18.8188 9.44322 18.6731 9.31192C18.6586 9.29733 18.5906 9.20981 18.5275 9.1174C18.4158 8.9472 18.1002 8.63114 18.0468 8.63114C18.0273 8.63114 17.9642 8.58251 17.8962 8.51927C17.7845 8.41716 17.6049 8.30532 17.1679 8.06218C16.9543 7.94061 16.4104 7.78013 16.0026 7.71692C15.818 7.68288 14.5702 7.65856 13.0164 7.65371L10.3458 7.63912L9.8894 7.77528C9.32616 7.94061 8.97655 8.12539 8.47158 8.51927C7.45192 9.33138 6.92751 10.7124 7.13629 12.0594C7.25769 12.8569 7.60245 13.5328 8.19481 14.131C8.82605 14.7728 9.57379 15.1327 10.5109 15.2445C11.8996 15.4147 13.3514 14.7193 14.1137 13.5182C14.3031 13.2216 14.5459 12.6721 14.5459 12.5408V12.4241H12.6376H10.7294L10.4624 12.288C10.2439 12.181 10.1759 12.1129 10.0691 11.8941C9.8894 11.5391 9.8894 11.2959 10.0739 10.9993C10.1565 10.8777 10.3118 10.7124 10.4235 10.6395L10.6274 10.5033L13.1086 10.4741C15.7501 10.4498 15.7889 10.4498 16.1094 10.6832C16.1871 10.7367 16.3036 10.8632 16.3667 10.9653C16.6581 11.4272 16.4833 12.8375 16.0074 13.8586C15.5024 14.9382 14.643 15.8621 13.6476 16.3921C13.0795 16.6936 12.5697 16.8833 12.0113 17C11.5743 17.0924 11.4092 17.1021 10.71 17.0778C9.89911 17.0486 9.71945 17.0195 9.03483 16.7812C8.2191 16.4991 7.1703 15.7843 6.65559 15.1619C5.66021 13.9559 5.21836 12.7159 5.29118 11.2959C5.33975 10.2164 5.42714 9.85169 5.81074 9.06877C6.45167 7.75582 7.46649 6.793 8.81146 6.22404C9.75831 5.8253 10.1662 5.77667 13.2835 5.73777C13.2835 5.73777 16.7752 5.78466 17.2256 5.73777C17.2533 5.73488 17.2886 5.7321 17.3304 5.72881C17.9675 5.67864 20.1244 5.5088 20.3331 3H17.2256H11.5597C10.3847 3.00487 9.94282 3.01946 9.54466 3.08753ZM31.5076 19.3086L31.3414 17.0656C31.113 17.1487 31.0091 17.1695 30.8431 17.1695C30.5522 17.1695 30.3446 16.941 30.3446 16.5464V9.23603H27.4992V14.9265C27.4992 16.1934 26.6892 17.0449 25.5262 17.0449C24.4879 17.0449 23.8856 16.2972 23.8856 15.1134V9.23603H21.0196V15.778C21.0196 17.8548 22.3072 19.5163 24.6124 19.5163C26.0871 19.5163 27.0632 18.8102 27.6239 17.7718C27.9146 18.914 28.7247 19.5163 30.0124 19.5163C30.6353 19.5163 31.113 19.4332 31.5076 19.3086ZM48.5142 12.9951C48.5142 10.7313 47.3097 9.13218 45.0459 9.13218C43.3636 9.13218 42.263 10.0252 41.7437 11.2505C41.266 9.98368 40.1861 9.13218 38.5452 9.13218C37.1331 9.13218 36.1362 9.776 35.5548 10.7106L35.4717 9.23603H32.7301V19.4124H35.5754V13.722C35.5754 12.4551 36.3647 11.6036 37.5069 11.6036C38.566 11.6036 39.1892 12.3513 39.1892 13.6181V19.4124H42.0344V13.722C42.0344 12.4551 42.8236 11.6036 43.966 11.6036C45.0043 11.6036 45.6482 12.3305 45.6482 13.6181V19.4124H48.5142V12.9951ZM54.266 19.3086L54.1 17.0656C53.8714 17.1487 53.7676 17.1695 53.6015 17.1695C53.3106 17.1695 53.103 16.941 53.103 16.5464V4.66701H50.2578V16.7126C50.2578 18.5194 51.1093 19.5163 52.7708 19.5163C53.3937 19.5163 53.8714 19.4332 54.266 19.3086ZM65.3231 14.2827C65.3231 11.2298 63.246 9.13218 60.0893 9.13218C56.974 9.13218 54.8764 11.3128 54.8764 14.3865C54.8764 17.4395 56.974 19.5163 60.0893 19.5163C63.246 19.5163 65.3231 17.3356 65.3231 14.2827ZM57.7426 14.345C57.7426 12.6212 58.677 11.479 60.0893 11.479C61.543 11.479 62.4361 12.6212 62.4361 14.345C62.4361 16.0272 61.543 17.1695 60.0893 17.1695C58.677 17.1695 57.7426 16.0272 57.7426 14.345ZM76.6053 14.2827C76.6053 11.2298 74.5285 9.13218 71.3716 9.13218C68.2564 9.13218 66.1588 11.3128 66.1588 14.3865C66.1588 17.4395 68.2564 19.5163 71.3716 19.5163C74.5285 19.5163 76.6053 17.3356 76.6053 14.2827ZM69.0248 14.345C69.0248 12.6212 69.9594 11.479 71.3716 11.479C72.8254 11.479 73.7185 12.6212 73.7185 14.345C73.7185 16.0272 72.8254 17.1695 71.3716 17.1695C69.9594 17.1695 69.0248 16.0272 69.0248 14.345ZM88.4068 14.1581C88.4068 10.939 86.5583 9.13218 83.9832 9.13218C82.4462 9.13218 81.3871 9.79678 80.8055 10.7106L80.7432 9.21525H77.9811V23.6076H80.8263V17.9587C81.3871 18.8932 82.3839 19.5163 83.8793 19.5163C86.6414 19.5163 88.4068 17.3149 88.4068 14.1581ZM85.52 14.2827C85.52 16.0065 84.5854 17.1279 83.2354 17.1279C81.7194 17.1279 80.8263 15.8611 80.8263 14.6358V13.9919C80.8263 12.8497 81.6778 11.5205 83.2561 11.5205C84.6477 11.5205 85.52 12.6005 85.52 14.2827Z" fill="currentColor"/>
</svg></div><div class="client-logo w-embed"><svg width="8.188rem" height="1.563rem" viewBox="0 0 131 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5633 13.8399C9.78508 13.139 9.82827 11.9225 10.621 11.2515C11.4378 10.5602 12.6824 10.6816 13.3461 11.5191C13.7757 12.0614 13.8305 12.8181 13.4844 13.4323C13.1321 14.0575 12.392 14.4335 11.6853 14.3519C11.2681 14.3038 10.8986 14.1538 10.5633 13.8399Z" fill="currentColor"/>
<path d="M10.3034 18.7849C10.1697 17.9562 10.4655 17.3507 11.1375 17.0168C11.7775 16.6988 12.5484 16.8404 13.0522 17.3686C13.6614 18.0071 13.5891 19.0219 12.8949 19.5766C12.1506 20.1714 11.0636 20.0165 10.5173 19.2311C10.4316 19.1078 10.3809 18.9603 10.3034 18.7849Z" fill="currentColor"/>
<path d="M10.7574 5.64019C11.2244 5.28097 11.6984 5.11179 12.2572 5.27571C12.9407 5.47619 13.3952 5.98064 13.4592 6.63298C13.5172 7.22527 13.1939 7.81502 12.6515 8.10644C12.0781 8.41446 11.3272 8.34697 10.8321 7.9429C10.0947 7.34103 10.0548 6.4489 10.7574 5.64019Z" fill="currentColor"/>
<path d="M18.2236 14.3539C19.0251 15.21 18.6544 16.4856 17.6759 16.861C16.9985 17.1208 16.2565 16.8907 15.8311 16.2818C15.4452 15.7293 15.4876 14.9505 15.9317 14.436C16.406 13.8864 17.1392 13.7253 17.7788 14.0427C17.9287 14.1171 18.0587 14.2318 18.2236 14.3539Z" fill="currentColor"/>
<path d="M15.8438 10.4907C15.2568 9.65684 15.6522 8.41831 16.702 8.12938C17.3883 7.94051 18.1332 8.25245 18.4778 8.88837C18.8211 9.52166 18.671 10.3213 18.1221 10.7843C17.5715 11.2486 16.7524 11.2769 16.1903 10.8425C16.0706 10.75 15.9726 10.6295 15.8438 10.4907Z" fill="currentColor"/>
<path d="M5.38773 8.65337C6.07366 7.98681 6.80436 7.89025 7.47985 8.35202C8.1454 8.80698 8.34545 9.68563 7.94237 10.3834C7.53669 11.0858 6.6277 11.356 5.89989 10.9906C5.18399 10.6312 4.86053 9.77509 5.16763 9.03754C5.21941 8.91317 5.29772 8.79986 5.38773 8.65337Z" fill="currentColor"/>
<path d="M7.70215 14.3508C8.46284 15.1342 8.20131 16.4112 7.21365 16.8411C6.55336 17.1285 5.78595 16.9174 5.34822 16.3304C4.93246 15.7728 4.95968 14.9701 5.41223 14.4434C5.89783 13.8783 6.65471 13.7225 7.30216 14.0636C7.43565 14.1339 7.55196 14.2368 7.70215 14.3508Z" fill="currentColor"/>
<path d="M7.87997 21.489C7.60387 22.3622 6.90056 22.7399 6.13564 22.4621C5.55838 22.2525 5.21962 21.6867 5.31473 21.091C5.40705 20.5129 5.96829 20.0642 6.59946 20.064C7.21909 20.0637 7.75922 20.4776 7.86383 21.0436C7.88828 21.176 7.87819 21.3147 7.87997 21.489Z" fill="currentColor"/>
<path d="M18.0651 22.1444C17.4018 22.6578 16.7372 22.6704 16.2358 22.2065C15.7225 21.7318 15.6725 21.038 16.1139 20.5158C16.5395 20.0122 17.3228 19.9123 17.8723 20.2915C18.4225 20.6711 18.573 21.3892 18.2192 21.9588C18.1837 22.0161 18.1333 22.0642 18.0651 22.1444Z" fill="currentColor"/>
<path d="M21.0385 12.7753C21.0155 11.885 21.4359 11.3575 22.1905 11.2846C22.7777 11.2278 23.327 11.5622 23.5279 12.0987C23.7229 12.6193 23.5572 13.1714 23.1054 13.5061C22.6226 13.8637 21.9326 13.8693 21.5003 13.4714C21.3087 13.2951 21.1941 13.0352 21.0385 12.7753Z" fill="currentColor"/>
<path d="M16.1571 4.57C15.7463 3.99297 15.717 3.48937 16.044 3.03897C16.3734 2.5853 16.9574 2.38823 17.4958 2.54907C18.1616 2.74799 18.5457 3.41155 18.3745 4.06691C18.2083 4.70315 17.4568 5.13258 16.7995 4.93584C16.5798 4.87007 16.3875 4.71249 16.1571 4.57Z" fill="currentColor"/>
<path d="M7.65308 4.47288C7.19195 4.97872 6.6669 5.11683 6.06637 4.87023C5.50598 4.64011 5.19622 4.02608 5.32803 3.46074C5.46239 2.88442 6.03277 2.47038 6.65667 2.49627C7.28845 2.52248 7.81059 2.98154 7.87917 3.578C7.91492 3.88896 7.87943 4.18689 7.65308 4.47288Z" fill="currentColor"/>
<path d="M1.56165 13.7351C0.635642 13.7986 0.0230482 13.3221 0.000632914 12.5633C-0.0182595 11.9238 0.387185 11.4286 1.03107 11.305C1.66872 11.1826 2.29056 11.5243 2.50555 12.1152C2.71861 12.7008 2.46858 13.3126 1.88668 13.617C1.79744 13.6637 1.6968 13.6886 1.56165 13.7351Z" fill="currentColor"/>
<path d="M22.4462 17.4517C22.534 17.4596 22.5874 17.4568 22.6343 17.473C23.1329 17.6455 23.3847 17.9633 23.3638 18.3887C23.3462 18.7459 23.0576 19.0835 22.683 19.185C22.2321 19.3072 21.7548 19.1398 21.5156 18.7755C21.2665 18.3962 21.3736 17.8712 21.7883 17.6273C21.9678 17.5217 22.2003 17.5062 22.4462 17.4517Z" fill="currentColor"/>
<path d="M1.17976 17.4586C1.53615 17.425 1.82109 17.5044 2.05807 17.7256C2.44004 18.0821 2.42898 18.6347 2.02865 18.9702C1.68316 19.2597 1.29058 19.296 0.889064 19.1201C0.575915 18.9828 0.373295 18.7378 0.35965 18.3789C0.346197 18.025 0.51121 17.7604 0.811032 17.5849C0.911034 17.5263 1.03132 17.5024 1.17976 17.4586Z" fill="currentColor"/>
<path d="M12.8085 1.13497C12.3951 1.85097 11.6106 1.98773 11.1079 1.4664C10.7444 1.08946 10.8033 0.469267 11.2462 0.189782C11.6165 -0.0439603 12.0163 -0.0686949 12.4003 0.154157C12.7576 0.361571 12.9124 0.680033 12.8085 1.13497Z" fill="currentColor"/>
<path d="M11.3439 23.3897C11.8047 23.2007 12.2082 23.2123 12.5649 23.5377C12.8126 23.7636 12.9076 24.0473 12.8156 24.3702C12.7252 24.6871 12.515 24.9098 12.1828 24.9666C11.9851 25.0004 11.7714 25.016 11.5767 24.9785C10.8855 24.8454 10.6452 24.0957 11.1134 23.5662C11.1687 23.5036 11.2443 23.4588 11.3439 23.3897Z" fill="currentColor"/>
<path d="M1.72816 5.889C1.88641 5.99371 2.04372 6.06012 2.11943 6.17865C2.2236 6.34176 2.31507 6.54167 2.32512 6.73045C2.34896 7.1778 1.93383 7.54969 1.43077 7.57987C0.869898 7.61352 0.409201 7.27701 0.359251 6.7972C0.312126 6.34451 0.66027 5.89845 1.14224 5.83355C1.32007 5.8096 1.50768 5.85834 1.72816 5.889Z" fill="currentColor"/>
<path d="M23.1832 7.22802C22.8614 7.56974 22.4934 7.63932 22.0882 7.55169C21.7211 7.47229 21.4463 7.1784 21.394 6.82966C21.3428 6.48757 21.5331 6.12502 21.8602 5.9417C22.2469 5.72496 22.7615 5.78927 23.0863 6.09493C23.3973 6.38758 23.4319 6.70641 23.1832 7.22802Z" fill="currentColor"/>
<path d="M73.2205 16.2069C73.2205 16.5275 73.2205 16.7989 73.2205 17.1312C72.9429 17.1476 72.6849 17.1628 72.3857 17.1804C72.3857 14.5235 72.3857 11.9156 72.3857 9.28033C72.6538 9.28033 72.9185 9.28033 73.2101 9.28033C73.2101 10.8115 73.2101 12.3213 73.2101 13.8432C73.4489 13.8779 73.5204 13.6895 73.6265 13.5812C74.8876 12.2931 76.1656 11.0202 77.3858 9.69422C77.7827 9.26291 78.1878 9.20501 78.7791 9.2859C77.6376 10.4874 76.5434 11.6391 75.398 12.8447C76.5851 14.2528 77.773 15.662 78.999 17.1162C78.4447 17.2147 78.0335 17.2164 77.6538 16.7401C76.87 15.7572 76.0148 14.8312 75.1885 13.8823C75.0776 13.755 74.9637 13.6303 74.8594 13.5136C74.3281 14.0211 73.8094 14.5064 73.3072 15.0081C73.2374 15.0777 73.2308 15.2276 73.2259 15.3416C73.2143 15.6133 73.2212 15.8857 73.2205 16.2069Z" fill="currentColor"/>
<path d="M103.808 9.66368C103.722 9.53573 103.657 9.43737 103.539 9.2575C103.851 9.2575 104.105 9.22142 104.341 9.2711C104.481 9.30068 104.618 9.44575 104.713 9.57197C105.346 10.4155 105.966 11.2684 106.593 12.117C106.671 12.2226 106.759 12.3205 106.877 12.4632C107.1 12.159 107.298 11.8901 107.496 11.6214C107.97 10.9776 108.47 10.3506 108.908 9.68314C109.136 9.33558 109.396 9.19791 109.788 9.25295C109.87 9.26453 109.954 9.26502 110.132 9.27704C109.189 10.5641 108.284 11.799 107.349 13.0751C108.329 14.4091 109.307 15.7418 110.322 17.123C109.752 17.2216 109.354 17.2078 109.024 16.7067C108.445 15.827 107.788 14.9982 107.162 14.1493C107.064 14.0161 106.957 13.8896 106.82 13.7179C106.462 14.2046 106.132 14.6516 105.804 15.1C105.422 15.6215 104.998 16.1187 104.673 16.6737C104.356 17.2142 103.933 17.2231 103.362 17.1217C104.361 15.7678 105.327 14.4583 106.327 13.102C105.491 11.9611 104.66 10.8272 103.808 9.66368Z" fill="currentColor"/>
<path d="M61.4395 13.1503C61.4723 11.8781 61.932 10.8547 62.8971 10.085C64.4011 8.88538 66.8127 8.88918 68.1995 10.0835C68.2861 10.1581 68.3583 10.2493 68.4536 10.35C68.2867 10.5232 68.1364 10.6792 67.9556 10.8669C67.0992 10.0776 66.103 9.83019 65.0092 9.99918C64.2118 10.1224 63.5332 10.4899 63.0076 11.121C62.0037 12.3264 62.0232 14.2074 63.0739 15.3944C63.7055 16.1079 64.5204 16.442 65.4668 16.4753C66.4098 16.5085 67.2376 16.2192 67.9431 15.5509C68.1159 15.7428 68.2608 15.9037 68.4291 16.0907C68.233 16.3862 67.9142 16.577 67.5932 16.7557C66.1999 17.5315 63.4469 17.5888 62.0373 15.3788C61.6119 14.7118 61.4385 13.9794 61.4395 13.1503Z" fill="currentColor"/>
<path d="M43.2857 15.2913C43.2857 13.2689 43.2857 11.2974 43.2857 9.2915C43.571 9.2915 43.8329 9.2915 44.1325 9.2915C44.1325 11.6591 44.1325 14.0176 44.1325 16.4217C45.6059 16.4217 47.0433 16.4217 48.5133 16.4217C48.5133 16.6795 48.5133 16.8917 48.5133 17.1351C46.7911 17.1351 45.0787 17.1351 43.2958 17.1351C43.2731 16.5505 43.2917 15.9459 43.2857 15.2913Z" fill="currentColor"/>
<path d="M129.22 16.8779C129.224 14.3513 129.228 11.871 129.234 9.39073C129.234 9.36151 129.262 9.33235 129.288 9.27979C129.524 9.27979 129.772 9.27979 130.045 9.27979C130.045 11.8887 130.045 14.4834 130.045 17.1536C129.819 17.1536 129.589 17.1682 129.363 17.1431C129.308 17.137 129.267 17.0007 129.22 16.8779Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.6533 14.7813V9.29139C32.7022 9.28751 32.7491 9.28287 32.7946 9.27837C32.8888 9.26905 32.9771 9.2603 33.0655 9.26005C34.0865 9.25715 35.1075 9.25682 36.1286 9.25786C36.6784 9.25843 37.2161 9.33576 37.7184 9.56983C39.0817 10.2051 39.2553 11.967 38.0469 12.8695C37.9971 12.9066 37.9466 12.9427 37.8807 12.9897C37.8447 13.0154 37.8041 13.0444 37.7565 13.0786C37.8212 13.1084 37.8792 13.1347 37.9328 13.1588L37.9328 13.1589C38.0367 13.2058 38.1237 13.2451 38.2087 13.288C38.8564 13.6148 39.2041 14.1385 39.249 14.8657C39.2967 15.6392 39.0525 16.2725 38.381 16.702C37.9547 16.9746 37.4755 17.1128 36.9788 17.1226C35.9186 17.1436 34.858 17.1476 33.7974 17.1516H33.7974C33.4631 17.1529 33.1288 17.1542 32.7945 17.156C32.7764 17.1561 32.7582 17.1455 32.7275 17.1277C32.7085 17.1167 32.6848 17.1029 32.6533 17.0872L32.6533 14.7813ZM37.7661 13.8161C37.3355 13.5797 36.8648 13.5236 36.3856 13.52C35.5361 13.5134 34.6865 13.5129 33.837 13.5157C33.7601 13.5159 33.6832 13.533 33.613 13.5487L33.613 13.5487C33.5824 13.5554 33.5532 13.562 33.5258 13.5667V13.5668L33.5257 13.5668V16.4457C33.5592 16.4507 33.5889 16.4561 33.6161 16.461H33.6161C33.6679 16.4704 33.7106 16.4781 33.7533 16.4781C33.9644 16.4778 34.1756 16.4781 34.3868 16.4783C35.0592 16.4792 35.7316 16.48 36.4036 16.4647C36.7232 16.4574 37.046 16.4031 37.3589 16.3329C37.6408 16.2696 37.8809 16.1533 38.0598 15.976C38.2239 15.8134 38.3365 15.5995 38.3825 15.3281C38.3962 15.2473 38.4063 15.1673 38.4121 15.0885C38.4483 14.5974 38.3142 14.1536 37.7997 13.836L37.7863 13.8287L37.7661 13.8161ZM37.0143 10.1238C37.1046 10.1522 37.1933 10.1841 37.2794 10.219C37.7627 10.4147 37.9969 10.8225 38.0003 11.3504C38.0038 11.8888 37.8079 12.3406 37.2975 12.5452C36.9274 12.6936 36.5159 12.7782 36.1169 12.8058C35.667 12.837 35.2147 12.8337 34.7455 12.8303C34.5442 12.8288 34.3397 12.8273 34.131 12.8285L33.5502 12.8287C33.5502 12.8286 33.5502 12.8285 33.5501 12.8285C33.5499 12.8285 33.5498 12.8285 33.5496 12.8285C33.4747 12.4938 33.4835 12.1668 33.4922 11.844C33.4962 11.6955 33.5001 11.548 33.4959 11.401C33.4869 11.0849 33.489 10.7685 33.4912 10.4463V10.4463C33.4921 10.3033 33.4931 10.1591 33.4931 10.0133C33.5215 10.0057 33.5474 9.99718 33.5716 9.98923L33.5716 9.98923C33.6188 9.9737 33.6594 9.96032 33.7001 9.96027C33.9114 9.95997 34.1228 9.95841 34.3341 9.95686C34.9557 9.95229 35.5774 9.94771 36.1977 9.97514C36.4698 9.98716 36.7491 10.0405 37.0143 10.1238Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M82.5093 15.1897V9.29674C82.5601 9.29205 82.6082 9.28652 82.6547 9.28119L82.6547 9.28119C82.7498 9.27027 82.8376 9.2602 82.9253 9.25993C83.2009 9.25908 83.4766 9.25636 83.7522 9.25363C84.5139 9.24611 85.2755 9.23858 86.0355 9.27062C86.5354 9.29169 87.0542 9.38717 87.5215 9.56311C89.0699 10.1462 88.9644 12.1706 87.9376 12.8432C87.8854 12.8775 87.8357 12.9158 87.771 12.9658L87.7709 12.9658C87.7356 12.9931 87.6957 13.024 87.6484 13.0595C87.7073 13.092 87.7603 13.1217 87.8095 13.1493C87.9059 13.2034 87.988 13.2494 88.0716 13.2923C88.7582 13.6447 89.0847 14.2103 89.1025 14.9774C89.1206 15.7598 88.8289 16.3623 88.1384 16.7552C87.6839 17.0138 87.186 17.1312 86.6729 17.1368C85.7048 17.1474 84.7366 17.1455 83.7411 17.1435H83.7411H83.7409C83.3387 17.1427 82.9321 17.1419 82.5192 17.1419L82.516 16.863C82.5134 16.6473 82.5108 16.4285 82.5097 16.2097C82.5085 15.9876 82.5087 15.7656 82.509 15.5269L82.5093 15.1897ZM83.3535 16.1175L83.3983 16.4354C83.7023 16.4354 84.0037 16.4363 84.3031 16.4371H84.3032H84.3032C85.1096 16.4395 85.9021 16.4418 86.6942 16.4268C86.7478 16.4258 86.8019 16.4216 86.8561 16.4148C86.8687 16.4132 86.8814 16.4115 86.894 16.4096C87.0948 16.38 87.2962 16.3156 87.4829 16.2406C88.0125 16.0281 88.2561 15.6044 88.2686 15.0403C88.2814 14.4606 88.0826 13.9803 87.5151 13.7773C87.1224 13.6368 86.6939 13.55 86.2774 13.5318C85.6428 13.504 85.0067 13.5087 84.3708 13.5135H84.3707C84.1387 13.5152 83.9066 13.5169 83.6746 13.517C83.611 13.5171 83.5474 13.5251 83.4741 13.5343L83.4741 13.5343C83.4369 13.5389 83.3972 13.5439 83.3537 13.5483V13.5483L83.3534 13.5484L83.3535 16.1175ZM84.3208 9.95203H83.3885V12.7908C83.3888 12.7908 83.3891 12.7908 83.3894 12.7908V12.7909C83.6628 12.7909 83.9335 12.7918 84.2021 12.7927C84.9174 12.7952 85.6184 12.7976 86.319 12.7823C86.5659 12.7769 86.8219 12.6936 87.0539 12.598C87.5978 12.374 87.8572 11.9485 87.8525 11.3589C87.848 10.7842 87.5739 10.3841 87.0489 10.179C86.7937 10.0792 86.5163 10.0083 86.2434 9.98448C86.2333 9.9836 86.2232 9.98278 86.2132 9.98202C85.866 9.95599 85.517 9.95537 85.1318 9.95469C85.129 9.95468 85.1263 9.95468 85.1235 9.95467C84.9812 9.95438 84.8361 9.95399 84.6872 9.952L84.3208 9.95203Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M99.3073 16.3152C100.975 14.8906 101.009 12.6421 100.245 11.2689C99.5109 9.98089 98.3985 9.32696 96.9908 9.21136C93.7868 8.94822 91.6466 11.6925 92.6753 14.6242C93.7531 17.6954 97.5803 17.7904 99.3073 16.3152ZM95.4898 16.3215C93.4667 15.6961 92.7396 13.3812 93.6378 11.6518C93.639 11.6496 93.6402 11.6475 93.6414 11.6453C93.646 11.6361 93.6507 11.627 93.6554 11.6179C94.7198 9.68474 97.4024 9.48542 98.8031 10.7531C99.855 11.705 100.178 13.2703 99.6037 14.5903C99.0465 15.8702 97.7203 16.6029 96.2295 16.4662C95.9665 16.442 95.7198 16.3927 95.4898 16.3215Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M54.3742 9.28484C53.4009 11.413 52.4394 13.5155 51.4637 15.6538C51.3917 15.8285 51.3106 15.9948 51.2304 16.1594C51.0752 16.4775 50.9231 16.7895 50.8457 17.1433C50.8827 17.147 50.9148 17.1506 50.9438 17.154C50.9978 17.1602 51.0408 17.1651 51.0838 17.166L51.084 17.166C51.6557 17.178 51.6572 17.178 51.8804 16.6754C51.9271 16.5703 51.9748 16.4655 52.0225 16.3607C52.1583 16.0627 52.294 15.7646 52.4067 15.4581C52.5177 15.1562 52.6885 15.0484 53.0118 15.053C53.8311 15.0647 54.6506 15.0627 55.4701 15.0607C55.8424 15.0597 56.2147 15.0588 56.587 15.0592C56.6772 15.0593 56.7673 15.0659 56.8629 15.073C56.9089 15.0763 56.9561 15.0798 57.0052 15.0827L57.93 17.1303H58.8135L55.226 9.28369H54.3747L54.3742 9.28484ZM54.7989 10.1419L54.7986 10.1412L54.7948 10.1495C54.3784 11.0714 54.0095 11.8882 53.6267 12.7408C53.3894 13.2821 53.166 13.7875 52.9192 14.3458L52.9183 14.3478H56.6792L56.6792 14.3477H56.6799L54.7992 10.1411L54.7989 10.1419Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M125.778 17.1384C125.688 16.9249 125.623 16.7717 125.546 16.5837C124.424 14.1308 123.314 11.7127 122.2 9.28701L122.193 9.27295H121.354L117.764 17.1403H118.632L119.568 15.0879H123.991C124.067 15.2598 124.143 15.4298 124.218 15.5985C124.404 16.0142 124.586 16.4223 124.759 16.8344C124.856 17.0658 124.987 17.2003 125.253 17.1686C125.361 17.1558 125.47 17.1521 125.592 17.148C125.651 17.146 125.713 17.1439 125.779 17.1406L125.778 17.1384ZM123.657 14.3405H123.657L121.774 10.1404L121.773 10.1423C121.61 10.4975 121.499 10.7404 121.374 11.0192C120.878 12.1365 120.395 13.2176 119.895 14.3391L119.894 14.3405H119.894L119.894 14.3406H123.657L123.657 14.3405Z" fill="currentColor"/>
</svg></div></div></div></div><div class="s-intro-visual"><div class="s-cover-llm-wrap"><div class="s-cover-llm-item"><div class="s-cover-llm-inner"><div class="s-cover-llm-window"><div class="label s-cover-title">LLM</div><div class="img-cover-sbx-window w-embed"><svg width="244" height="7" viewBox="0 0 244 7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M103 0H17V1H103V0ZM103 2H17V3H103V2ZM17 4H103V5H17V4ZM103 6H17V7H103V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 0H0V1H4V0ZM4 2H0V3H4V2ZM0 4H4V5H0V4ZM4 6H0V7H4V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M244 0H141V1H244V0ZM244 2H141V3H244V2ZM141 4H244V5H141V4ZM244 6H141V7H244V6Z" fill="var(--color--content-primary)" />
<path d="M10.5029 4.6259L8.33285 6.8099L7.42285 5.8999L9.60685 3.7299L7.42285 1.5599L8.33285 0.649902L10.5029 2.8339L12.6729 0.649902L13.5829 1.5599L11.3989 3.7299L13.5829 5.8999L12.6729 6.8099L10.5029 4.6259Z" fill="var(--color--content-primary)" />
</svg></div></div><div class="s-cover-llm-content"><div class="s-cover-llm-content-icon"><div class="icon-28 llm-openai w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.6812 10.1859C21.141 8.82399 20.9827 7.33208 20.2473 6.09331C19.1413 4.19326 16.9181 3.21574 14.7468 3.67575C13.7808 2.60198 12.393 1.99134 10.9381 2.00009C8.71859 1.99509 6.74932 3.40512 6.0665 5.48892C4.6407 5.77705 3.40998 6.65769 2.6898 7.90584C1.57563 9.80088 1.82963 12.1897 3.31814 13.8147C2.85828 15.1766 3.01664 16.6685 3.75202 17.9073C4.85796 19.8073 7.08123 20.7849 9.25255 20.3249C10.2179 21.3986 11.6063 22.0093 13.0612 21.9999C15.282 22.0055 17.2519 20.5942 17.9347 18.5086C19.3605 18.2204 20.5912 17.3398 21.3114 16.0916C22.4243 14.1966 22.1697 11.8097 20.6818 10.1846L20.6812 10.1859ZM13.0625 20.693C12.1738 20.6942 11.313 20.3874 10.6309 19.8255C10.6619 19.8092 10.7157 19.7798 10.7506 19.7586L14.7867 17.4585C14.9931 17.3429 15.1198 17.126 15.1186 16.8917V11.2772L16.8243 12.2491C16.8427 12.2578 16.8547 12.2753 16.8573 12.2953V16.9448C16.8547 19.0123 15.1578 20.6886 13.0625 20.693ZM4.90166 17.2535C4.45638 16.4948 4.29612 15.6054 4.44878 14.7422C4.47855 14.7597 4.53112 14.7916 4.56849 14.8129L8.60458 17.1129C8.80917 17.231 9.06253 17.231 9.26776 17.1129L14.1951 14.3054V16.2491C14.1963 16.2691 14.1868 16.2885 14.171 16.301L10.0912 18.6254C8.27394 19.658 5.95312 19.0442 4.9023 17.2535H4.90166ZM3.83943 8.56023C4.28282 7.80022 4.98274 7.21895 5.81631 6.91707C5.81631 6.95145 5.81441 7.01207 5.81441 7.05458V11.6553C5.81314 11.8891 5.93982 12.1059 6.14568 12.2216L11.073 15.0285L9.3672 16.0004C9.3501 16.0116 9.32856 16.0135 9.30956 16.0054L5.22914 13.6791C3.41568 12.6428 2.79368 10.3534 3.8388 8.56086L3.83943 8.56023ZM17.8543 11.7784L12.927 8.97087L14.6327 7.9996C14.6498 7.98835 14.6714 7.98647 14.6904 7.9946L18.7708 10.319C20.5874 11.3547 21.2101 13.6478 20.1605 15.4404C19.7165 16.1991 19.0172 16.7804 18.1843 17.0829V12.3447C18.1862 12.1109 18.0601 11.8947 17.8549 11.7784H17.8543ZM19.5518 9.25712C19.522 9.239 19.4695 9.20775 19.4321 9.1865L15.396 6.88645C15.1914 6.76832 14.938 6.76832 14.7328 6.88645L9.80552 9.69401V7.75022C9.80425 7.73022 9.81376 7.71084 9.82959 7.69834L13.9094 5.37579C15.7266 4.34139 18.05 4.95703 19.0976 6.75082C19.5404 7.50834 19.7006 8.39523 19.5505 9.25712H19.5518ZM8.87821 12.7216L7.1718 11.7497C7.15343 11.7409 7.1414 11.7234 7.13887 11.7034V7.05395C7.14013 4.98391 8.84211 3.30637 10.94 3.30762C11.8274 3.30762 12.6863 3.61513 13.3685 4.17514C13.3374 4.19139 13.2842 4.22077 13.2487 4.24202L9.21265 6.54206C9.00616 6.65769 8.87948 6.87395 8.88074 7.10833L8.87821 12.7203V12.7216ZM9.80489 10.7503L11.9997 9.49963L14.1944 10.7497V13.2503L11.9997 14.5004L9.80489 13.2503V10.7503Z" fill="currentColor" />
</svg></div><div class="icon-28 llm-meta w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.33875 4.69428C5.53475 4.69428 3.96267 5.86761 2.87367 7.54786C1.64533 9.44078 1 11.8929 1 14.245C1 14.8922 1.06417 15.4999 1.1925 16.0536C1.25551 16.3216 1.33667 16.585 1.43542 16.8419C1.52998 17.0832 1.64371 17.3164 1.7755 17.5395C2.4135 18.6019 3.442 19.3059 5.06908 19.3059C6.44133 19.3059 7.48267 18.6909 8.70367 17.0656C9.40033 16.1379 9.75233 15.5751 11.1448 13.1056L11.8378 11.8782L12.0083 11.5803C12.0642 11.6719 12.1192 11.7599 12.176 11.8553L14.1487 15.1507C14.8123 16.2599 15.6749 17.4937 16.4128 18.1885C17.3717 19.0933 18.2388 19.3069 19.2178 19.3069C20.2033 19.3069 20.9375 18.9814 21.4683 18.5341C21.7646 18.2811 22.0157 17.9795 22.2108 17.6422C22.7076 16.7814 23 15.6924 23 14.2093C23 11.7159 22.3758 9.29869 21.0897 7.38011C19.9145 5.62744 18.3791 4.69428 16.7667 4.69428C15.8069 4.69428 14.8527 5.12236 13.9681 5.89328C13.3704 6.41578 12.8158 7.07578 12.2998 7.77244C11.6672 6.97036 11.076 6.35436 10.5049 5.88778C9.42142 5.00228 8.38283 4.69336 7.33875 4.69336V4.69428ZM16.6521 6.57619C17.7035 6.57619 18.6577 7.27103 19.3948 8.40861C20.4324 10.0109 20.9045 12.254 20.9045 14.2753C20.9045 15.6943 20.5672 16.9336 19.2188 16.9336C18.6871 16.9336 18.2773 16.7228 17.6934 16.0133C17.2388 15.4624 16.4623 14.2918 15.0974 12.0184L14.5318 11.0761C14.1642 10.4612 13.7806 9.856 13.3814 9.26111C13.4456 9.16119 13.5107 9.05578 13.5748 8.96136C14.6015 7.43328 15.5154 6.57619 16.6521 6.57619ZM7.30117 7.08311C8.46075 7.08311 9.18767 7.80819 9.75325 8.40861C10.0347 8.70836 10.4288 9.20703 10.8844 9.85603L9.94942 11.2915C9.2555 12.3576 8.22425 14.0571 7.34883 15.268C6.25708 16.7796 5.68967 16.9336 5.07 16.9336C4.58967 16.9336 4.1185 16.7164 3.80225 16.2058C3.56117 15.8153 3.37692 15.1699 3.37692 14.3303C3.37692 12.2944 3.95442 10.1732 4.89858 8.74961C5.31475 8.11986 5.78225 7.62578 6.30383 7.34436C6.60901 7.17477 6.95204 7.08492 7.30117 7.08311Z" fill="currentColor" />
</svg></div><div class="icon-28 llm-anthropic w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.5225 5.12646L18.9978 18.8597H22.0004L16.5251 5.12646H13.5225Z" fill="currentColor" />
<path d="M7.17076 13.4252L9.04426 8.59899L10.9178 13.4252H7.17076ZM7.47451 5.12646L2 18.8597H5.06101L6.18064 15.9757H11.9081L13.0275 18.8597H16.0885L10.614 5.12646H7.47451Z" fill="currentColor" />
</svg></div><div class="icon-28 llm-mistral w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3.25" y="3.25" width="3.5" height="3.5" fill="var(--color--content-primary)" />
<rect x="3.25" y="6.75" width="7" height="3.5" fill="var(--color--content-dark80)" />
<rect x="3.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="3.25" y="17.25" width="3.5" height="3.5" fill="var(--color--content-dark20)" />
<rect x="3.25" y="10.25" width="17.5" height="3.5" fill="var(--color--content-dark60)" />
<rect x="10.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="13.75" y="6.75" width="7" height="3.5" fill="var(--color--content-dark80)" />
<rect x="17.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="17.25" y="17.25" width="3.5" height="3.5" fill="var(--color--content-dark20)" />
<rect x="17.25" y="3.25" width="3.5" height="3.5" fill="var(--color--content-primary)" />
</svg></div><div class="icon-28 llm-gemini w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0399 19.32C11.6801 20.78 12.0002 22.34 12.0002 24C12.0002 22.34 12.3101 20.78 12.9302 19.32C13.5699 17.86 14.43 16.59 15.5099 15.51C16.5903 14.43 17.86 13.58 19.32 12.96C20.78 12.32 22.3403 12 24 12C22.3403 12 20.78 11.69 19.32 11.07C17.86 10.43 16.5903 9.57 15.5099 8.49003C14.43 7.41 13.5699 6.14001 12.9302 4.68C12.3101 3.22 12.0002 1.66 12.0002 0C12.0002 1.66 11.6801 3.22 11.0399 4.68C10.4202 6.14001 9.57 7.41 8.49011 8.49003C7.41021 9.57 6.14003 10.43 4.68002 11.07C3.22001 11.69 1.66015 12 0 12C1.66015 12 3.22001 12.32 4.68002 12.96C6.14003 13.58 7.41021 14.43 8.49011 15.51C9.57 16.59 10.4202 17.86 11.0399 19.32Z" fill="currentColor"/>
</svg></div><div class="icon-28 llm-any w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 12 3.917 L 12 20.083 M 19 7.958 L 5 16.041 M 5 7.958 L 19 16.041" fill="currentColor" stroke-width="2px" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="" fill-opacity="0"></path>
<path d="M 12 3.917 L 12 20.083 M 19 7.958 L 5 16.041 M 5 7.958 L 19 16.041" fill="#currentColor" stroke-width="2px" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="" fill-opacity="0"></path>
</svg></div></div><div data-w-id="b172fbb5-0f8e-9d0b-ee18-da935644eaac" style="display:flex" class="s-cover-llm-content-columns _1"><div class="label deco">[.500]<br/><span class="label dark-10">[.873]</span><br/><span class="label dark-20">[.542]</span><br/>[.704]<br/><span class="label llm-accent">[.285]</span><br/>[.717]<br/>[.598]<br/><span class="label dark-40">[.557]</span><br/>[.232]<br/>[.746]</div><div class="label deco">[.211]<br/><span class="label dark-40">[.013]</span><br/>[.510]<br/>[.718]<br/>[.621]<br/>[.223]<br/>[.124]<br/><span class="label dark-40">[.801]</span><br/><span class="label dark-10">[.798]</span><br/><span class="label llm-accent">[.117]️</span></div><div class="label deco">[.817]<br/><span class="label llm-accent">[.070]</span><br/>[.353]<br/><br/><br/><br/><br/><span class="label dark-40">[.833]</span><br/>[.477]<br/>[.620]</div><div class="label deco">[.829]<br/>[.195]<br/>[.245]<br/>[.891]<br/>[.454]<br/>[.145]<br/><span class="label llm-accent">[.984]</span><br/>[.634]<br/><span class="label dark-10">[.342]</span><br/>[.746]</div><div class="label deco"><span class="label dark-40">[.330]</span><br/><span class="label dark-20">[.103]</span><br/>[.742]<br/><span class="label llm-accent">[.004]</span><br/>[.165]<br/>[.459]<br/>[.597]<br/>[.910]<br/>[.072]<br/>[.336]</div></div><div data-w-id="2967d8dd-b866-5315-3788-d314f59e219c" style="display:none" class="s-cover-llm-content-columns _2"><div class="label deco">[.788]<br/><span class="label dark-20">[.400]</span><br/>[.410]<br/>[.273]<br/>[.477]<br/><span class="label dark-40">[.087]</span><br/><span class="label dark-20">[.707]</span><br/><span class="label llm-accent">[.212]</span><br/>[.642]<br/>[.829]</div><div class="label deco"><span class="label llm-accent">[.616]</span><br/>[.805]<br/><span class="label dark-10">[.206]<br/>[.505]</span><br/>[.265]<br/>[.043]<br/>[.829]<br/>[.195]<br/>[.245]<br/>[.891]</div><div class="label deco">[.505]<br/>[.265]<br/><span class="label dark-10">[.043]</span><br/><br/><br/><br/><br/>[.195]<br/><span class="label llm-accent">[.245]</span><br/>[.891]</div><div class="label deco">[.410]<br/><span class="label dark-20">[.273]</span><br/>[.505]<br/>[.765]<br/><span class="label dark-40">[.143]</span><br/><span class="label llm-accent">[.095]</span><br/>[.335]<br/><span class="label dark-40">[.891]</span><br/>[.287]<br/>[.921]</div><div class="label deco">[.206]<br/>[.813]<br/><span class="label llm-accent">[.104]</span><br/>[.665]<br/>[.083]<br/>[.900]<br/>[.040]<br/><span class="label dark-10">[.784]</span><br/>[.087]<br/>[.171]</div></div><div data-w-id="f386cdeb-41e6-7d06-694e-efda366761e8" style="display:none" class="s-cover-llm-content-columns _3"><div class="label deco">[.616]<br/><span class="label llm-accent">[.805]</span><br/>[.206]<br/><span class="label dark-10">[.505]</span><br/>[.265]<br/>[.043]<br/>[.829]<br/>[.195]<br/>[.245]<br/><span class="label dark-20">[.891]</span></div><div class="label deco">[.921]<br/><span class="label dark-40">[.820]</span><br/>[.061]️<br/>[.679]<br/><span class="label llm-accent">[.034]</span><br/>[.810]<br/>[.322]<br/>[.061]<br/><span class="label dark-20">[.381]️</span><br/>[.285]</div><div class="label deco"><span class="label dark-20">[.679]</span><br/><span class="label dark-10">[.034]</span><br/><span class="label llm-accent">[.810]</span><br/><br/><br/><br/><br/>[.061]<br/>[.381]️<br/>[.285]</div><div class="label deco">[.179]<br/>[.034]<br/>[.810]<br/>[.061]<br/>[.001]️<br/>[.275]<br/>[.551]<br/><span class="label dark-40">[.707]</span><br/>[.212]<br/><span class="label llm-accent">[.642]</span></div><div class="label deco"><span class="label llm-accent">[.660]</span><br/>[.102]<br/><span class="label dark-40">[.790]</span><br/>[.041]<br/><span class="label dark-20">[.081]️</span><br/><span class="label dark-10">[.445]</span><br/>[.021]<br/>[.517]<br/>[.019]<br/>[.311]</div></div><div data-w-id="7417aab4-c6da-f044-f13d-268a4f229617" style="display:none" class="s-cover-llm-content-columns _4"><div class="label deco">[.921]<br/>[.820]<br/>[.061]️<br/>[.679]<br/>[.034]<br/><span class="label llm-accent">[.810]</span><br/><span class="label dark-40">[.322]</span><br/>[.061]<br/><span class="label dark-10">[.381]️</span><br/>[.285]</div><div class="label deco"><span class="label llm-accent">[.817]</span><br/>[.070]<br/><span class="label dark-10">[.353]</span><br/>[.744]<br/><span class="label dark-20">[.663]</span><br/>[.844]<br/>[.452]<br/>[.045]<br/>[.305]<br/><span class="label dark-40">[.027]</span></div><div class="label deco">[.744]<br/>[.663]<br/>[.844]<br/><br/><br/><br/><br/><span class="label dark-40">[.452]</span><br/><span class="label llm-accent">[.045]</span><br/>[.027]</div><div class="label deco"><span class="label dark-40">[.733]</span><br/><span class="label dark-20">[.463]</span><br/>[.824]<br/><span class="label llm-accent">[.452]</span><br/>[.145]<br/>[.677]<br/>[.505]<br/>[.265]<br/>[.043]<br/>[.829]</div><div class="label deco">[.733]<br/>[.463]<br/>[.824]<br/>[.452]<br/>[.145]<br/>[.677]<br/>[.505]<br/>[.265]<br/><span class="label llm-accent">[.043]</span><br/><span class="label dark-40">[.829]</span></div></div><div data-w-id="eb840720-1db0-4a02-ef79-1208c0f566b5" style="display:none" class="s-cover-llm-content-columns _5"><div class="label deco"><span class="label dark-40">[.817]</span><br/>[.070]<br/><span class="label llm-accent">[.353]</span><br/>[.744]<br/>[.663]<br/><span class="label dark-20">[.844]</span><br/>[.452]<br/>[.045]<br/>[.305]<br/>[.027]</div><div class="label deco">[.820]<br/><span class="label dark-40">[.061]️</span><br/>[.679]<br/>[.034]<br/>[.810]<br/>[.322]<br/><span class="label llm-accent">[.070]</span><br/>[.353]<br/>[.744]<br/>[.663]</div><div class="label deco"><span class="label llm-accent">[.034]</span><br/><span class="label dark-20">[.810]</span><br/>[.322]<br/><br/><br/><br/><br/>[.070]<br/>[.353]<br/><span class="label dark-10">[.663]</span></div><div class="label deco">[.114]<br/>[.077]<br/>[.722]<br/><span class="label dark-10">[.084]</span><br/>[.253]<br/><span class="label llm-accent">[.665]</span><br/><span class="label dark-10">[.452]</span><br/>[.045]<br/><span class="label dark-40">[.305]</span><br/>[.027]</div><div class="label deco">[.874]<br/><span class="label dark-10">[.104]</span><br/>[.022]<br/><span class="label llm-accent">[.604]</span><br/>[.310]<br/>[.103]<br/>[.502]<br/><span class="label dark-20">[.178]</span><br/><span class="label dark-40">[.285]</span><br/>[.006]</div></div></div></div><div class="s-cover-llm-icons"><div data-w-id="94b40641-05d8-18c7-dc45-6423b87efac2" class="icon-18 llm-open-ai w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.6812 10.1859C21.141 8.82399 20.9827 7.33208 20.2473 6.09331C19.1413 4.19326 16.9181 3.21574 14.7468 3.67575C13.7808 2.60198 12.393 1.99134 10.9381 2.00009C8.71859 1.99509 6.74932 3.40512 6.0665 5.48892C4.6407 5.77705 3.40998 6.65769 2.6898 7.90584C1.57563 9.80088 1.82963 12.1897 3.31814 13.8147C2.85828 15.1766 3.01664 16.6685 3.75202 17.9073C4.85796 19.8073 7.08123 20.7849 9.25255 20.3249C10.2179 21.3986 11.6063 22.0093 13.0612 21.9999C15.282 22.0055 17.2519 20.5942 17.9347 18.5086C19.3605 18.2204 20.5912 17.3398 21.3114 16.0916C22.4243 14.1966 22.1697 11.8097 20.6818 10.1846L20.6812 10.1859ZM13.0625 20.693C12.1738 20.6942 11.313 20.3874 10.6309 19.8255C10.6619 19.8092 10.7157 19.7798 10.7506 19.7586L14.7867 17.4585C14.9931 17.3429 15.1198 17.126 15.1186 16.8917V11.2772L16.8243 12.2491C16.8427 12.2578 16.8547 12.2753 16.8573 12.2953V16.9448C16.8547 19.0123 15.1578 20.6886 13.0625 20.693ZM4.90166 17.2535C4.45638 16.4948 4.29612 15.6054 4.44878 14.7422C4.47855 14.7597 4.53112 14.7916 4.56849 14.8129L8.60458 17.1129C8.80917 17.231 9.06253 17.231 9.26776 17.1129L14.1951 14.3054V16.2491C14.1963 16.2691 14.1868 16.2885 14.171 16.301L10.0912 18.6254C8.27394 19.658 5.95312 19.0442 4.9023 17.2535H4.90166ZM3.83943 8.56023C4.28282 7.80022 4.98274 7.21895 5.81631 6.91707C5.81631 6.95145 5.81441 7.01207 5.81441 7.05458V11.6553C5.81314 11.8891 5.93982 12.1059 6.14568 12.2216L11.073 15.0285L9.3672 16.0004C9.3501 16.0116 9.32856 16.0135 9.30956 16.0054L5.22914 13.6791C3.41568 12.6428 2.79368 10.3534 3.8388 8.56086L3.83943 8.56023ZM17.8543 11.7784L12.927 8.97087L14.6327 7.9996C14.6498 7.98835 14.6714 7.98647 14.6904 7.9946L18.7708 10.319C20.5874 11.3547 21.2101 13.6478 20.1605 15.4404C19.7165 16.1991 19.0172 16.7804 18.1843 17.0829V12.3447C18.1862 12.1109 18.0601 11.8947 17.8549 11.7784H17.8543ZM19.5518 9.25712C19.522 9.239 19.4695 9.20775 19.4321 9.1865L15.396 6.88645C15.1914 6.76832 14.938 6.76832 14.7328 6.88645L9.80552 9.69401V7.75022C9.80425 7.73022 9.81376 7.71084 9.82959 7.69834L13.9094 5.37579C15.7266 4.34139 18.05 4.95703 19.0976 6.75082C19.5404 7.50834 19.7006 8.39523 19.5505 9.25712H19.5518ZM8.87821 12.7216L7.1718 11.7497C7.15343 11.7409 7.1414 11.7234 7.13887 11.7034V7.05395C7.14013 4.98391 8.84211 3.30637 10.94 3.30762C11.8274 3.30762 12.6863 3.61513 13.3685 4.17514C13.3374 4.19139 13.2842 4.22077 13.2487 4.24202L9.21265 6.54206C9.00616 6.65769 8.87948 6.87395 8.88074 7.10833L8.87821 12.7203V12.7216ZM9.80489 10.7503L11.9997 9.49963L14.1944 10.7497V13.2503L11.9997 14.5004L9.80489 13.2503V10.7503Z" fill="currentColor" />
</svg></div><div data-w-id="5b70713d-edf2-308f-cc0f-9c07cbf303d6" class="icon-18 llm-meta w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.33875 4.69428C5.53475 4.69428 3.96267 5.86761 2.87367 7.54786C1.64533 9.44078 1 11.8929 1 14.245C1 14.8922 1.06417 15.4999 1.1925 16.0536C1.25551 16.3216 1.33667 16.585 1.43542 16.8419C1.52998 17.0832 1.64371 17.3164 1.7755 17.5395C2.4135 18.6019 3.442 19.3059 5.06908 19.3059C6.44133 19.3059 7.48267 18.6909 8.70367 17.0656C9.40033 16.1379 9.75233 15.5751 11.1448 13.1056L11.8378 11.8782L12.0083 11.5803C12.0642 11.6719 12.1192 11.7599 12.176 11.8553L14.1487 15.1507C14.8123 16.2599 15.6749 17.4937 16.4128 18.1885C17.3717 19.0933 18.2388 19.3069 19.2178 19.3069C20.2033 19.3069 20.9375 18.9814 21.4683 18.5341C21.7646 18.2811 22.0157 17.9795 22.2108 17.6422C22.7076 16.7814 23 15.6924 23 14.2093C23 11.7159 22.3758 9.29869 21.0897 7.38011C19.9145 5.62744 18.3791 4.69428 16.7667 4.69428C15.8069 4.69428 14.8527 5.12236 13.9681 5.89328C13.3704 6.41578 12.8158 7.07578 12.2998 7.77244C11.6672 6.97036 11.076 6.35436 10.5049 5.88778C9.42142 5.00228 8.38283 4.69336 7.33875 4.69336V4.69428ZM16.6521 6.57619C17.7035 6.57619 18.6577 7.27103 19.3948 8.40861C20.4324 10.0109 20.9045 12.254 20.9045 14.2753C20.9045 15.6943 20.5672 16.9336 19.2188 16.9336C18.6871 16.9336 18.2773 16.7228 17.6934 16.0133C17.2388 15.4624 16.4623 14.2918 15.0974 12.0184L14.5318 11.0761C14.1642 10.4612 13.7806 9.856 13.3814 9.26111C13.4456 9.16119 13.5107 9.05578 13.5748 8.96136C14.6015 7.43328 15.5154 6.57619 16.6521 6.57619ZM7.30117 7.08311C8.46075 7.08311 9.18767 7.80819 9.75325 8.40861C10.0347 8.70836 10.4288 9.20703 10.8844 9.85603L9.94942 11.2915C9.2555 12.3576 8.22425 14.0571 7.34883 15.268C6.25708 16.7796 5.68967 16.9336 5.07 16.9336C4.58967 16.9336 4.1185 16.7164 3.80225 16.2058C3.56117 15.8153 3.37692 15.1699 3.37692 14.3303C3.37692 12.2944 3.95442 10.1732 4.89858 8.74961C5.31475 8.11986 5.78225 7.62578 6.30383 7.34436C6.60901 7.17477 6.95204 7.08492 7.30117 7.08311Z" fill="currentColor" />
</svg></div><div data-w-id="730df772-d7fd-fbb2-ee6e-b2dac1f8c14b" class="icon-18 llm-anthropic w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.5225 5.12646L18.9978 18.8597H22.0004L16.5251 5.12646H13.5225Z" fill="currentColor" />
<path d="M7.17076 13.4252L9.04426 8.59899L10.9178 13.4252H7.17076ZM7.47451 5.12646L2 18.8597H5.06101L6.18064 15.9757H11.9081L13.0275 18.8597H16.0885L10.614 5.12646H7.47451Z" fill="currentColor" />
</svg></div><div data-w-id="3668813e-9479-6f38-8547-7e1c84692725" class="icon-18 llm-mistral w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3.25" y="3.25" width="3.5" height="3.5" fill="var(--color--content-primary)" />
<rect x="3.25" y="6.75" width="7" height="3.5" fill="var(--color--content-dark80)" />
<rect x="3.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="3.25" y="17.25" width="3.5" height="3.5" fill="var(--color--content-dark20)" />
<rect x="3.25" y="10.25" width="17.5" height="3.5" fill="var(--color--content-dark60)" />
<rect x="10.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="13.75" y="6.75" width="7" height="3.5" fill="var(--color--content-dark80)" />
<rect x="17.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="17.25" y="17.25" width="3.5" height="3.5" fill="var(--color--content-dark20)" />
<rect x="17.25" y="3.25" width="3.5" height="3.5" fill="var(--color--content-primary)" />
</svg></div><div data-w-id="a899711e-cbd5-ec62-2493-3c6dfcfa81a1" class="icon-18 llm-gemini w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0399 19.32C11.6801 20.78 12.0002 22.34 12.0002 24C12.0002 22.34 12.3101 20.78 12.9302 19.32C13.5699 17.86 14.43 16.59 15.5099 15.51C16.5903 14.43 17.86 13.58 19.32 12.96C20.78 12.32 22.3403 12 24 12C22.3403 12 20.78 11.69 19.32 11.07C17.86 10.43 16.5903 9.57 15.5099 8.49003C14.43 7.41 13.5699 6.14001 12.9302 4.68C12.3101 3.22 12.0002 1.66 12.0002 0C12.0002 1.66 11.6801 3.22 11.0399 4.68C10.4202 6.14001 9.57 7.41 8.49011 8.49003C7.41021 9.57 6.14003 10.43 4.68002 11.07C3.22001 11.69 1.66015 12 0 12C1.66015 12 3.22001 12.32 4.68002 12.96C6.14003 13.58 7.41021 14.43 8.49011 15.51C9.57 16.59 10.4202 17.86 11.0399 19.32Z" fill="currentColor"/>
</svg></div><div data-w-id="c999bb77-a167-a3ea-f836-005ec6685533" class="icon-18 llm-any w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 12 3.917 L 12 20.083 M 19 7.958 L 5 16.041 M 5 7.958 L 19 16.041" fill="currentColor" stroke-width="2px" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="" fill-opacity="0"></path>
<path d="M 12 3.917 L 12 20.083 M 19 7.958 L 5 16.041 M 5 7.958 L 19 16.041" fill="#currentColor" stroke-width="2px" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="" fill-opacity="0"></path>
</svg></div></div></div></div><div class="s-cover-sbx-stars-long"><div style="display:block" class="label deco stars _1">]·········[<br/>]·········[<br/>]·········[</div><div style="display:none" class="label deco stars _2">]·<span class="label deco brand">*</span>·······[<br/>]·········[<br/>]··<span class="label deco brand">*</span>······[</div><div style="display:none" class="label deco stars _3">]···<span class="label deco brand">*</span>·····[<br/>]·<span class="label deco brand">*</span>·······[<br/>]····<span class="label deco brand">*</span>····[</div><div style="display:none" class="label deco stars _4">]·····<span class="label deco brand">*</span>···[<br/>]···<span class="label deco brand">*</span>·····[<br/>]·······<span class="label deco brand">*</span>·[</div><div style="display:none" class="label deco stars _5">]·······<span class="label deco brand">*</span>·[<br/>]·····<span class="label deco brand">*</span>···[<br/>]·········[</div><div style="display:none" class="label deco stars _6">]·········[<br/>]·······<span class="label deco brand">*</span>·[<br/>]·········[</div></div><div class="s-cover-sbx-wrap"><div class="s-cover-sbx"><div class="s-cover-sbx-window"><div class="label s-cover-title">E2B SANDBOX</div><div class="img-cover-sbx-window w-embed"><svg width="420" height="7" viewBox="0 0 420 7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M164 0H17V1H164V0ZM164 2H17V3H164V2ZM17 4H164V5H17V4ZM164 6H17V7H164V6Z" fill="var(--color--content-primary)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 0H0V1H4V0ZM4 2H0V3H4V2ZM0 4H4V5H0V4ZM4 6H0V7H4V6Z" fill="var(--color--content-primary)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M420 0H257V1H420V0ZM420 2H257V3H420V2ZM257 4H420V5H257V4ZM420 6H257V7H420V6Z" fill="var(--color--content-primary)"/>
<path d="M10.5029 4.6259L8.33285 6.8099L7.42285 5.8999L9.60685 3.7299L7.42285 1.5599L8.33285 0.649902L10.5029 2.8339L12.6729 0.649902L13.5829 1.5599L11.3989 3.7299L13.5829 5.8999L12.6729 6.8099L10.5029 4.6259Z" fill="var(--color--content-primary)"/>
</svg></div></div><div class="s-cover-sbx-content"><div class="label">RUNNING CODE…</div><div class="s-cover-sbx-stars-short left"><div style="display:block" class="label deco stars _1">]·····[<br/>]·····[<br/>]·····[</div><div style="display:none" class="label deco stars _2">]·<span class="label deco brand">*</span>···[<br/>]·····[<br/>]··<span class="label deco brand">*</span>··[</div><div style="display:none" class="label deco stars _3">]···<span class="label deco brand">*</span>·[<br/>]·<span class="label deco brand">*</span>···[<br/>]·····[</div><div style="display:none" class="label deco stars _4">]·····[<br/>]··<span class="label deco brand">*</span>··[<br/>]·····[</div><div style="display:none" class="label deco stars _5">]·····[<br/>]···<span class="label deco brand">*</span>·[<br/>]·····[</div><div style="display:none" class="label deco stars _6">]·····[<br/>]·····[<br/>]·····[</div></div><div class="s-cover-sbx-outer"><div class="s-cover-sbx-inner"><div data-w-id="3350a8dd-d9c2-2f93-7638-f4375fbe4a24" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0)" class="s-cover-star"><div class="label star-1">✶✶<br/>✶✶<br/>✶✶<br/>✶✶<br/> <br/> <br/> <br/> <br/>✶✶<br/>✶✶<br/>✶✶<br/>✶✶</div><div class="label star-2">✶✶<br/>✶✶<br/>✶✶<br/>✶✶<br/> <br/> <br/> <br/> <br/>✶✶<br/>✶✶<br/>✶✶<br/>✶✶</div><div class="label star-3">✶✶<br/>✶✶<br/>✶✶<br/>✶✶<br/> <br/> <br/> <br/> <br/>✶✶<br/>✶✶<br/>✶✶<br/>✶✶</div><div class="label star-4">✶✶<br/>✶✶<br/>✶✶<br/>✶✶<br/> <br/> <br/> <br/> <br/>✶✶<br/>✶✶<br/>✶✶<br/>✶✶</div></div><div class="s-cover-sbx-corner-tl w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 0.5H0.5V20" stroke="currentColor" />
<path d="M20 2.5H2.5V20" stroke="currentColor" />
</svg></div><div class="s-cover-sbx-corner-tr w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 0.5H0.5V20" stroke="currentColor" />
<path d="M20 2.5H2.5V20" stroke="currentColor" />
</svg></div><div class="s-cover-sbx-corner-bl w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 0.5H0.5V20" stroke="currentColor" />
<path d="M20 2.5H2.5V20" stroke="currentColor" />
</svg></div><div class="s-cover-sbx-corner-br w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 0.5H0.5V20" stroke="currentColor" />
<path d="M20 2.5H2.5V20" stroke="currentColor" />
</svg></div></div></div><div class="s-cover-sbx-stars-short right"><div style="display:block" class="label deco stars _1">]·····[<br/>]·····[<br/>]·····[</div><div style="display:none" class="label deco stars _2">]·<span class="label deco brand">*</span>···[<br/>]·····[<br/>]··<span class="label deco brand">*</span>··[</div><div style="display:none" class="label deco stars _3">]···<span class="label deco brand">*</span>·[<br/>]·<span class="label deco brand">*</span>···[<br/>]·····[</div><div style="display:none" class="label deco stars _4">]·····[<br/>]··<span class="label deco brand">*</span>··[<br/>]·····[</div><div style="display:none" class="label deco stars _5">]·····[<br/>]···<span class="label deco brand">*</span>·[<br/>]·····[</div><div style="display:none" class="label deco stars _6">]·····[<br/>]·····[<br/>]·····[</div></div><div class="s-cover-sbg-loader"><div data-w-id="3350a8dd-d9c2-2f93-7638-f4375fbe4ac0" class="label loader-1">[_______________]</div><div data-w-id="fe8a8703-2f73-cacd-b1e2-c2efdb5cacfc" class="label loader-2">[%%%%%__________]</div><div data-w-id="b6cd3f58-44ba-efb4-79a3-8d2cd911cf71" class="label loader-3">[%%%%%%%%%%_____]</div><div data-w-id="7687a10e-b857-20ca-81e4-07d84c32e860" class="label loader-4">[%%%%%%%%%%%%%%%]</div></div></div></div><div class="label">CPU: 8 × ▤ / RAM: 4 GB</div></div><div class="s-cover-sbx-stars-long"><div style="display:block" class="label deco stars _1">]·········[<br/>]·········[<br/>]·········[</div><div style="display:none" class="label deco stars _2">]·<span class="label deco brand">*</span>·······[<br/>]·········[<br/>]··<span class="label deco brand">*</span>······[</div><div style="display:none" class="label deco stars _3">]···<span class="label deco brand">*</span>·····[<br/>]·<span class="label deco brand">*</span>·······[<br/>]····<span class="label deco brand">*</span>····[</div><div style="display:none" class="label deco stars _4">]·····<span class="label deco brand">*</span>···[<br/>]···<span class="label deco brand">*</span>·····[<br/>]·······<span class="label deco brand">*</span>·[</div><div style="display:none" class="label deco stars _5">]·······<span class="label deco brand">*</span>·[<br/>]·····<span class="label deco brand">*</span>···[<br/>]·········[</div><div style="display:none" class="label deco stars _6">]·········[<br/>]·······<span class="label deco brand">*</span>·[<br/>]·········[</div></div><div class="s-cover-output-wrap"><div data-w-id="7be893c0-0130-0a28-16ad-55426f737eba" class="s-cover-output-item _1"><div class="s-cover-output-inner"><div class="s-cover-output-window"><div class="label s-cover-title">OUTPUT</div><div class="img-cover-sbx-window w-embed"><svg width="244" height="7" viewBox="0 0 244 7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M93 0H17V1H93V0ZM93 2H17V3H93V2ZM17 4H93V5H17V4ZM93 6H17V7H93V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 0H0V1H4V0ZM4 2H0V3H4V2ZM0 4H4V5H0V4ZM4 6H0V7H4V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M244 0H151V1H244V0ZM244 2H151V3H244V2ZM151 4H244V5H151V4ZM244 6H151V7H244V6Z" fill="var(--color--content-primary)"/>
<path d="M10.5029 4.6259L8.33285 6.8099L7.42285 5.8999L9.60685 3.7299L7.42285 1.5599L8.33285 0.649902L10.5029 2.8339L12.6729 0.649902L13.5829 1.5599L11.3989 3.7299L13.5829 5.8999L12.6729 6.8099L10.5029 4.6259Z" fill="var(--color--content-primary)" />
</svg></div></div><div class="s-cover-output-content"><div class="label">8 <span class="label deco dark20">– ––––– ––– ––––– ––– ––––– –––</span><br/>7 <span class="label deco dark20">– ––––– –––</span> <span class="label deco brand">@@@@@</span> <span class="label deco dark20">––– ––––– –––</span><br/>6 <span class="label deco dark20">– ––––– –––</span> <span class="label deco brand">@@@@@</span> <span class="label deco dark20">––– ––––– –––</span><br/>5 <span class="label deco dark20">–</span> @@@@@ <span class="label deco dark20">–––</span> <span class="label deco brand">@@@@@</span> <span class="label deco dark20">––– ––––– –––</span><br/>4 <span class="label deco dark20">–</span> @@@@@ <span class="label deco dark20">–––</span> <span class="label deco brand">@@@@@</span> <span class="label deco dark20">––– ––––– –––</span><br/>3 <span class="label deco dark20">–</span> @@@@@ <span class="label deco dark20">–––</span> <span class="label deco brand">@@@@@</span> <span class="label deco dark20">–––</span> @@@@@ <span class="label deco dark20">–––</span><br/>2 <span class="label deco dark20">–</span> @@@@@ <span class="label deco dark20">–––</span> <span class="label deco brand">@@@@@</span> <span class="label deco dark20">–––</span> @@@@@ <span class="label deco dark20">–––</span><br/>1 <span class="label deco dark20">–</span> @@@@@ <span class="label deco dark20">–––</span> <span class="label deco brand">@@@@@</span> <span class="label deco dark20">–––</span> @@@@@ <span class="label deco dark20">–––</span><br/>–––––––––––––––––––––––––––––––––<br/> A B C</div></div></div><div class="label">✓ CHART-1</div></div><div data-w-id="9c42d760-47d2-95be-4292-d309c016e1a2" class="s-cover-output-item _2"><div class="s-cover-output-inner"><div class="s-cover-output-window"><div class="label s-cover-title">OUTPUT</div><div class="img-cover-sbx-window w-embed"><svg width="244" height="7" viewBox="0 0 244 7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M93 0H17V1H93V0ZM93 2H17V3H93V2ZM17 4H93V5H17V4ZM93 6H17V7H93V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 0H0V1H4V0ZM4 2H0V3H4V2ZM0 4H4V5H0V4ZM4 6H0V7H4V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M244 0H151V1H244V0ZM244 2H151V3H244V2ZM151 4H244V5H151V4ZM244 6H151V7H244V6Z" fill="var(--color--content-primary)"/>
<path d="M10.5029 4.6259L8.33285 6.8099L7.42285 5.8999L9.60685 3.7299L7.42285 1.5599L8.33285 0.649902L10.5029 2.8339L12.6729 0.649902L13.5829 1.5599L11.3989 3.7299L13.5829 5.8999L12.6729 6.8099L10.5029 4.6259Z" fill="var(--color--content-primary)" />
</svg></div></div><div class="s-cover-output-content _2"><div class="label center"><span class="label deco brand">______ </span> <span class="label deco tertiary"> ______ </span> ______<br/><span class="label deco brand">❘ ❘_\</span> <span class="label deco tertiary">❘ ❘_\</span> ❘ ❘_\<br/><span class="label deco brand">╔═══════╗</span> <span class="label deco tertiary">╔═══════╗</span> ╔═══════╗<br/><span class="label deco brand">║ CSV ║</span> <span class="label deco tertiary">║ TXT ║</span> ║ .JS ║<br/><span class="label deco brand">╚═══════╝</span> <span class="label deco tertiary">╚═══════╝</span> ╚═══════╝<br/><span class="label deco brand">❘______❘</span> <span class="label deco tertiary"> ❘______❘ </span> ❘______❘</div></div></div><div class="label">✓ File</div></div><div data-w-id="5d82da34-d214-982e-df02-fae1884e093d" class="s-cover-output-item _3"><div class="s-cover-output-inner"><div class="s-cover-output-window"><div class="label s-cover-title">OUTPUT</div><div class="img-cover-sbx-window w-embed"><svg width="244" height="7" viewBox="0 0 244 7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M93 0H17V1H93V0ZM93 2H17V3H93V2ZM17 4H93V5H17V4ZM93 6H17V7H93V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 0H0V1H4V0ZM4 2H0V3H4V2ZM0 4H4V5H0V4ZM4 6H0V7H4V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M244 0H151V1H244V0ZM244 2H151V3H244V2ZM151 4H244V5H151V4ZM244 6H151V7H244V6Z" fill="var(--color--content-primary)"/>
<path d="M10.5029 4.6259L8.33285 6.8099L7.42285 5.8999L9.60685 3.7299L7.42285 1.5599L8.33285 0.649902L10.5029 2.8339L12.6729 0.649902L13.5829 1.5599L11.3989 3.7299L13.5829 5.8999L12.6729 6.8099L10.5029 4.6259Z" fill="var(--color--content-primary)" />
</svg></div></div><div class="s-cover-output-content _3"><div class="label lowercase">╔ Email ══════════════╗<br/>║ [email protected] ║<br/>╚═════════════════════╝<br/>╔ Pw ═════════════════╗<br/>║ ******** ║<br/>╚═════════════════════╝<br/><span class="label deco brand lowercase">╔═════════════════════╗<br/>║ Sign In ║<br/>╚═════════════════════╝</span></div></div></div><div class="label">✓ UI</div></div><div data-w-id="b3402d41-adcb-2430-a32e-4c51f82c8ea4" class="s-cover-output-item _4"><div class="s-cover-output-inner"><div class="s-cover-output-window"><div class="label s-cover-title">OUTPUT</div><div class="img-cover-sbx-window w-embed"><svg width="244" height="7" viewBox="0 0 244 7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M93 0H17V1H93V0ZM93 2H17V3H93V2ZM17 4H93V5H17V4ZM93 6H17V7H93V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 0H0V1H4V0ZM4 2H0V3H4V2ZM0 4H4V5H0V4ZM4 6H0V7H4V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M244 0H151V1H244V0ZM244 2H151V3H244V2ZM151 4H244V5H151V4ZM244 6H151V7H244V6Z" fill="var(--color--content-primary)"/>
<path d="M10.5029 4.6259L8.33285 6.8099L7.42285 5.8999L9.60685 3.7299L7.42285 1.5599L8.33285 0.649902L10.5029 2.8339L12.6729 0.649902L13.5829 1.5599L11.3989 3.7299L13.5829 5.8999L12.6729 6.8099L10.5029 4.6259Z" fill="var(--color--content-primary)" />
</svg></div></div><div class="s-cover-output-content"><div class="label">NVDA <span class="label deco positive">@</span><br/><span class="label deco tertiary">$120.91 </span> <span class="label deco positive">@</span><br/><span class="label deco positive">+32% @<br/> @@@ @<br/> @@@ @ @ @<br/> @@ @ @ @<br/> @@@@ @ @<br/> @@@@ @@@<br/> @<br/>@</span></div></div></div><div class="label">✓ CHART-2</div></div><div data-w-id="f170e73f-8f14-5db4-1ddd-b98434ac96c6" class="s-cover-output-item _5"><div class="s-cover-output-inner"><div class="s-cover-output-window"><div class="label s-cover-title">OUTPUT</div><div class="img-cover-sbx-window w-embed"><svg width="244" height="7" viewBox="0 0 244 7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M93 0H17V1H93V0ZM93 2H17V3H93V2ZM17 4H93V5H17V4ZM93 6H17V7H93V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 0H0V1H4V0ZM4 2H0V3H4V2ZM0 4H4V5H0V4ZM4 6H0V7H4V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M244 0H151V1H244V0ZM244 2H151V3H244V2ZM151 4H244V5H151V4ZM244 6H151V7H244V6Z" fill="var(--color--content-primary)"/>
<path d="M10.5029 4.6259L8.33285 6.8099L7.42285 5.8999L9.60685 3.7299L7.42285 1.5599L8.33285 0.649902L10.5029 2.8339L12.6729 0.649902L13.5829 1.5599L11.3989 3.7299L13.5829 5.8999L12.6729 6.8099L10.5029 4.6259Z" fill="var(--color--content-primary)" />
</svg></div></div><div class="s-cover-output-content"><div class="label">1999 @@@@@@@@@@ │ │<br/>1998 <span class="label deco brand">@@@</span> │ │<br/>1997 @@@@@@@@@@@@@ │<br/>1996 <span class="label deco brand">@@@@@@@</span> │ │<br/>1995 @@@@@@@@@@@@@@@@ │<br/>1994 <span class="label deco brand">@@@@@@@@@@@@@@@@@@@@@@@@@</span><br/>1993 @@@@@ │ │<br/>1992 <span class="label deco brand">@@@@@@@@@@</span> │ │<br/>–––––––––––––––––––––––––––––––––<br/> 2 4 6</div></div></div><div class="label">✓ CHART-3</div></div><div data-w-id="fa31ab7e-eb46-f5d8-30ad-c19ef3e4f719" class="s-cover-output-item _6"><div class="s-cover-output-inner"><div class="s-cover-output-window"><div class="label s-cover-title">OUTPUT</div><div class="img-cover-sbx-window w-embed"><svg width="244" height="7" viewBox="0 0 244 7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M93 0H17V1H93V0ZM93 2H17V3H93V2ZM17 4H93V5H17V4ZM93 6H17V7H93V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 0H0V1H4V0ZM4 2H0V3H4V2ZM0 4H4V5H0V4ZM4 6H0V7H4V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M244 0H151V1H244V0ZM244 2H151V3H244V2ZM151 4H244V5H151V4ZM244 6H151V7H244V6Z" fill="var(--color--content-primary)"/>
<path d="M10.5029 4.6259L8.33285 6.8099L7.42285 5.8999L9.60685 3.7299L7.42285 1.5599L8.33285 0.649902L10.5029 2.8339L12.6729 0.649902L13.5829 1.5599L11.3989 3.7299L13.5829 5.8999L12.6729 6.8099L10.5029 4.6259Z" fill="var(--color--content-primary)" />
</svg></div></div><div class="s-cover-output-content"><div class="label lowercase">/!\<br/><br/><span class="label deco lowercase negative">Error: [$rootScope:inprog] $apply<br/>already in progress</span><br/><br/>http://errors.angular.js.org/1.3<br/>.15/$rootScope/inprog?p0=<br/>%24apply<br/><br/><span class="label deco lowercase negative">at</span> <span class="label deco lowercase tertiary">angular.js:63</span></div></div></div><div class="label">☓ Error</div></div><div data-w-id="b0da0493-0fa8-c8f1-3df1-d86661e1be22" class="s-cover-output-item _7"><div class="s-cover-output-inner"><div class="s-cover-output-window"><div class="label s-cover-title">OUTPUT</div><div class="img-cover-sbx-window w-embed"><svg width="244" height="7" viewBox="0 0 244 7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M93 0H17V1H93V0ZM93 2H17V3H93V2ZM17 4H93V5H17V4ZM93 6H17V7H93V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 0H0V1H4V0ZM4 2H0V3H4V2ZM0 4H4V5H0V4ZM4 6H0V7H4V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M244 0H151V1H244V0ZM244 2H151V3H244V2ZM151 4H244V5H151V4ZM244 6H151V7H244V6Z" fill="var(--color--content-primary)"/>
<path d="M10.5029 4.6259L8.33285 6.8099L7.42285 5.8999L9.60685 3.7299L7.42285 1.5599L8.33285 0.649902L10.5029 2.8339L12.6729 0.649902L13.5829 1.5599L11.3989 3.7299L13.5829 5.8999L12.6729 6.8099L10.5029 4.6259Z" fill="var(--color--content-primary)" />
</svg></div></div><div class="s-cover-output-content"><div class="label">8 <span class="label deco dark20">––––</span>│<span class="label deco dark20">–––––––––</span>│<span class="label deco dark20">–––––––––</span>│<span class="label deco dark20">–––––</span><span class="label deco brand">@</span><br/>7 <span class="label deco dark20">––––</span>│<span class="label deco dark20">–––––––––</span>│<span class="label deco dark20">–––</span>@<span class="label deco dark20">–––––</span>│<span class="label deco dark20">––––</span><span class="label deco brand">@</span><span class="label deco dark20">–</span><br/>6 <span class="label deco dark20">––––</span>│<span class="label deco dark20">–––––––––</span>│<span class="label deco dark20">––</span>@<span class="label deco dark20">–</span>@<span class="label deco dark20">–</span><span class="label deco brand">@@@@</span><span class="label deco dark20">–––</span><span class="label deco brand">@</span><span class="label deco dark20">––</span><br/>5 <span class="label deco dark20">––––</span>│<span class="label deco dark20">–––––</span><span class="label deco brand">@@@</span><span class="label deco dark20">–</span>│<span class="label deco dark20">–</span>@<span class="label deco dark20">–––</span><span class="label deco brand">@</span><span class="label deco dark20">–––</span>│<span class="label deco brand">@</span><span class="label deco dark20">–</span><span class="label deco brand">@</span><span class="label deco dark20">–</span>@@<br/>4 @@@@│<span class="label deco dark20">–––</span><span class="label deco brand">@@</span><span class="label deco dark20">–––</span><span class="label deco brand">@</span>│@<span class="label deco dark20">–––</span><span class="label deco brand">@</span><span class="label deco dark20">–</span>@<span class="label deco dark20">––</span>│<span class="label deco dark20">–</span><span class="label deco brand">@</span><span class="label deco dark20">–</span>@<span class="label deco dark20">––</span><br/>3 <span class="label deco dark20">––––</span><span class="label deco brand">@@@@</span><span class="label deco dark20">––</span>@@@@<span class="label deco brand">@</span><span class="label deco dark20">–––</span><span class="label deco brand">@</span><span class="label deco dark20">–––</span>@@│@@@<span class="label deco dark20">–––</span><br/>2 <span class="label deco dark20">–––</span><span class="label deco brand">@</span>│@@@@@<span class="label deco dark20">––––</span>│<span class="label deco brand">@@@</span><span class="label deco dark20">––––––</span>│<span class="label deco dark20">––––––</span><br/>1 <span class="label deco dark20">–</span><span class="label deco brand">@@</span><span class="label deco dark20">–</span>│<span class="label deco dark20">–––––––––</span>│<span class="label deco dark20">–––––––––</span>│<span class="label deco dark20">––––––</span><br/>–––––––––––––––––––––––––––––––––<br/> A B C</div></div></div><div class="label">✓ CHART-4</div></div></div></div></div><div class="s-stats"><div class="section-stats-box"><div class="label large">20K+</div><div class="label">DEVELOPERS</div></div><div class="section-stats-box middle"><div class="label large">250K+</div><div class="label">MONTHLY DOWNLOADS</div></div><div class="section-stats-box"><div class="label large">10M+</div><div class="label">STARTED SANDBOXES</div></div></div><div class="divider-tall"><div class="bg-dotted divider"></div></div><div class="s-use-cases"><div class="s-cover"><div class="s-cover-title"><div class="section-label"><div class="label">[</div><div class="label">USE CASES</div><div class="label">]</div></div><div class="wrap-h"><div class="h-usecases"><div style="display:block" class="h2 float s-1">AI</div><div style="display:none" class="h2 float s-2">A1</div><div style="display:none" class="h2 float s-3">–I</div><div style="display:none" class="h2 float s-4">A*</div><div style="display:none" class="h2 float s-5">4I</div></div><h2 class="h2">Build for AI<br/>Use Cases</h2></div><div class="p perex s-use-cases">From running short AI-generated code snippets, up to fully autonomous AI agents.</div></div><div class="label float-l-b">> HOVER (↓↓)</div><div class="label float-r-t">/EXPLORE</div></div><div class="s-use-cases-grid"><div id="w-node-_5332fdd0-1249-ad42-3cd5-f0b3e00e37d8-53ac292f" class="use-case-item"><div data-w-id="996911b6-7d1a-937c-d704-fa6546ae82ba" class="use-case-item-box"><div class="use-case-img"><div class="img-ai-analysis"><div data-w-id="4041e5e9-9678-b07e-f712-45c85de4856e" style="display:block" class="label deco ai-data-analysis name _1">.CSV</div><div data-w-id="532f13c8-0ce0-4fd2-2f11-b8aae43b4022" style="display:none" class="label deco ai-data-analysis name _2">.PDF</div><div data-w-id="93180968-34cd-8fb1-d4d8-7f7bda9aba72" style="display:none" class="label deco ai-data-analysis name _3">.XLS</div><div data-w-id="4c6e6c97-94d9-d3ac-d57a-4bdcc244dbef" style="display:none" class="label deco ai-data-analysis name _4">.TSV</div><div class="label deco">_____ <br/>❘ ❘_\</div><div class="code-embed w-embed"><svg width="52" height="17" viewBox="0 0 52 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="51" height="16" stroke="black" style="stroke:black;stroke-opacity:1;"/>
<rect x="2.5" y="2.5" width="47" height="12" stroke="black" style="stroke:black;stroke-opacity:1;"/>
</svg></div><div class="label deco">❘_____❘</div></div><div class="uc-desktop w-embed"><svg width="80" height="72" viewBox="0 0 80 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="79" height="71" stroke="currentColor" />
<rect x="0.5" y="0.5" width="79" height="8" stroke="currentColor" />
<path d="M11 3H78V4H11V3Z" fill="currentColor" />
<path d="M11 5H78V6H11V5Z" fill="currentColor" />
<path d="M2 3H4V4H2V3Z" fill="currentColor" />
<path d="M2 5H4V6H2V5Z" fill="currentColor" />
<path d="M7.50156 5.072L6.26156 6.32L5.74156 5.8L6.98956 4.56L5.74156 3.32L6.26156 2.8L7.50156 4.048L8.74156 2.8L9.26156 3.32L8.01356 4.56L9.26156 5.8L8.74156 6.32L7.50156 5.072Z" fill="currentColor" />
</svg></div></div><div class="use-case-title"><h3 class="h3">AI Data Analysis</h3><div class="p small centred">From running short AI-generated code snippets, up to fully autonomous AI agents.</div></div><a href="https://e2b.dev/docs?ref=landing-page-get-started" class="button medium primary w-button">See docs</a></div></div><div id="w-node-_806cacc8-b990-2436-9871-1598e84f46a5-53ac292f" class="use-case-item center"><div class="use-case-item-box"><div class="use-case-img"><div class="img-data-viz"><div data-w-id="8b1f670d-d03b-d120-406e-f846c342d443" style="display:block" class="label deco viz _1"> <span class="label deco brand">@@@</span> <br/>@@@<span class="label deco brand">@@@</span> <br/>@@@<span class="label deco brand">@@@</span><span class="label deco tertiary">@@@</span></div><div data-w-id="4d70745d-5cd7-e67e-0a11-5ed5ddb9c926" style="display:none" class="label deco viz _2"> /\_/<br/> /\/ <br/>_/ <span class="label deco">X%</span></div><div data-w-id="a29a4c49-c4a4-79d7-09d3-023339ef930b" style="display:none" class="label deco viz _3">%%%%%% <span class="label deco brand">%%%%%%%%%</span><br/><span class="label deco tertiary">%%%</span></div><div data-w-id="839e32f2-6173-0d56-790d-fa968698843a" style="display:none" class="label deco viz _4"> <span class="label deco brand">@</span> @<br/>@ <span class="label deco brand">@</span> <span class="label deco brand">@</span> @<br/>@ <span class="label deco brand">@</span> @ <span class="label deco brand">@</span> @</div></div><div class="uc-desktop w-embed"><svg width="80" height="72" viewBox="0 0 80 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="79" height="71" stroke="currentColor" />
<rect x="0.5" y="0.5" width="79" height="8" stroke="currentColor" />
<path d="M11 3H78V4H11V3Z" fill="currentColor" />
<path d="M11 5H78V6H11V5Z" fill="currentColor" />
<path d="M2 3H4V4H2V3Z" fill="currentColor" />
<path d="M2 5H4V6H2V5Z" fill="currentColor" />
<path d="M7.50156 5.072L6.26156 6.32L5.74156 5.8L6.98956 4.56L5.74156 3.32L6.26156 2.8L7.50156 4.048L8.74156 2.8L9.26156 3.32L8.01356 4.56L9.26156 5.8L8.74156 6.32L7.50156 5.072Z" fill="currentColor" />
</svg></div></div><div class="use-case-title"><h3 class="h3">AI Data Visualization</h3><div class="p small centred">Run AI-generated code to render charts, plots, and visual outputs based on your data.</div></div><a href="https://e2b.dev/docs?ref=landing-page-get-started" class="button medium primary w-button">See docs</a></div></div><div id="w-node-_3a91e4b9-95ae-12dc-1c1f-521b278d1302-53ac292f" class="use-case-item"><div class="use-case-item-box"><div class="use-case-img"><div class="img-coding-agents"><div style="display:block" class="label deco coding-agents _1"> ====== <br/> ======== <br/> === === <br/><span class="label deco brand"><</span> </div><div style="display:none" class="label deco coding-agents _2"> ====== <br/> ======== <br/> === === <br/><span class="label deco brand">====< </span> </div><div style="display:none" class="label deco coding-agents _3">======== <br/> === === <br/>==== <span class="label deco brand"><br/>< </span> </div><div style="display:none" class="label deco coding-agents _4">======== <br/> === === <br/>==== <br/><span class="label deco brand">===== =< </span></div><div style="display:none" class="label deco coding-agents _5"> === === <br/>==== <br/>===== = <br/><span class="label deco brand"><</span> </div><div style="display:none" class="label deco coding-agents _6"> === === <br/>==== <br/>===== = <br/><span class="label deco brand">= ==<</span> </div><div style="display:none" class="label deco coding-agents _7"> ==== <br/>===== = <br/>= == <br/><span class="label deco brand"><</span> </div><div style="display:none" class="label deco coding-agents _8"> ==== <br/>===== = <br/>= == <br/><span class="label deco brand">== =====<</span></div><div style="display:none" class="label deco coding-agents _9">===== = <br/>= == <br/>== ===== <br/><span class="label deco brand"><</span> </div><div style="display:none" class="label deco coding-agents _10">===== = <br/>= == <br/>== ===== <br/><span class="label deco brand">======<</span> </div><div style="display:none" class="label deco coding-agents _11">= == <br/>== ===== <br/> ====== <br/><span class="label deco brand"><</span> </div><div style="display:none" class="label deco coding-agents _12">= == <br/>== ===== <br/> ====== <br/><span class="label deco brand">========<</span></div><div style="display:none" class="label deco coding-agents _13">== ===== <br/> ====== <br/>======== <br/><span class="label deco brand"><</span> </div><div style="display:none" class="label deco coding-agents _14">== ===== <br/> ====== <br/>======== <br/><span class="label deco brand">=== ===<</span> </div></div><div class="uc-desktop w-embed"><svg width="80" height="72" viewBox="0 0 80 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="79" height="71" stroke="currentColor" />
<rect x="0.5" y="0.5" width="79" height="8" stroke="currentColor" />
<path d="M11 3H78V4H11V3Z" fill="currentColor" />
<path d="M11 5H78V6H11V5Z" fill="currentColor" />
<path d="M2 3H4V4H2V3Z" fill="currentColor" />
<path d="M2 5H4V6H2V5Z" fill="currentColor" />
<path d="M7.50156 5.072L6.26156 6.32L5.74156 5.8L6.98956 4.56L5.74156 3.32L6.26156 2.8L7.50156 4.048L8.74156 2.8L9.26156 3.32L8.01356 4.56L9.26156 5.8L8.74156 6.32L7.50156 5.072Z" fill="currentColor" />
</svg></div></div><div class="use-case-title"><h3 class="h3">Coding Agents</h3><div class="p small centred">Use sandbox to execute code, use I/O, access the internet, or start terminal commands.</div></div><a href="https://e2b.dev/docs?ref=landing-page-get-started" class="button medium primary w-button">See docs</a></div></div><div id="w-node-_37adb2f7-6c06-a89b-8066-62b8ca860a3e-53ac292f" class="use-case-item"><div class="use-case-item-box"><div class="use-case-img"><div class="img-mask"><div style="display:block" class="label deco gen _1">╔ ═ ╗<br/> ╣<br/> <br/>╚ ═ </div><div style="display:none" class="label deco gen _2">╔ ═ ═ ╗<br/> ═ ═══ ╣<br/> <br/>╚ ═ ═ ╝</div><div style="display:none" class="label deco gen _3">╔ ═ ═ ═ ╗<br/>╠═ ═══ ═╣<br/> <br/>╚ ═ ═ ══╝</div><div style="display:none" class="label deco gen _4">╔═══════╗<br/>╠═══════╣<br/>║ ║<br/>╚═══════╝</div><div data-w-id="e9666f4a-a3aa-a0dc-fa58-af65df19f500" style="display:none" class="label deco gen _5">╔═══════╗<br/>╠═══════╣<br/>║ ✓ ║<br/>╚═══════╝</div></div><div class="uc-desktop w-embed"><svg width="80" height="72" viewBox="0 0 80 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="79" height="71" stroke="currentColor" />
<rect x="0.5" y="0.5" width="79" height="8" stroke="currentColor" />
<path d="M11 3H78V4H11V3Z" fill="currentColor" />
<path d="M11 5H78V6H11V5Z" fill="currentColor" />
<path d="M2 3H4V4H2V3Z" fill="currentColor" />
<path d="M2 5H4V6H2V5Z" fill="currentColor" />
<path d="M7.50156 5.072L6.26156 6.32L5.74156 5.8L6.98956 4.56L5.74156 3.32L6.26156 2.8L7.50156 4.048L8.74156 2.8L9.26156 3.32L8.01356 4.56L9.26156 5.8L8.74156 6.32L7.50156 5.072Z" fill="currentColor" />
</svg></div></div><div class="use-case-title"><h3 class="h3">Generative UI</h3><div class="p small centred">Use sandbox as a code runtime for AI-generated apps. Supports any language and framework.</div></div><a href="https://e2b.dev/docs?ref=landing-page-get-started" class="button medium primary w-button">See docs</a></div></div><div id="w-node-_7f81e3d8-9355-f919-aad9-2c9a34fbc9b5-53ac292f" class="use-case-item center"><div class="use-case-item-box"><div class="use-case-img"><div class="img-evals"><div style="display:block" class="label deco evals _1">==╔═══╗=<span class="label deco brand">=</span><br/>==║ ✓ ║<span class="label deco brand">=</span>= ==╚═══╝==</div><div style="display:none" class="label deco evals _2">==╔═══╗<span class="label deco brand">=</span>=<br/>==║ ✓ ║== ==╚═══╝=<span class="label deco brand">=</span></div><div style="display:none" class="label deco evals _3">==╔═══╗==<br/>==║ ✓ ║== ==╚═══╝<span class="label deco brand">=</span>=</div><div style="display:none" class="label deco evals _4">==╔═══╗==<br/>=<span class="label deco brand">=</span>║ ✓ ║== ==╚═══╝==</div><div style="display:none" class="label deco evals _5">=<span class="label deco brand">=</span>╔═══╗==<br/><span class="label deco brand">=</span>=║ ✓ ║== ==╚═══╝==</div><div style="display:none" class="label deco evals _6"><span class="label deco brand">=</span>=╔═══╗==<br/>==║ × ║== =<span class="label deco brand">=</span>╚═══╝==</div><div style="display:none" class="label deco evals _7">==╔═══╗==<br/>==║ × ║=<span class="label deco brand">=</span> <span class="label deco brand">=</span>=╚═══╝==</div></div><div class="uc-desktop w-embed"><svg width="80" height="72" viewBox="0 0 80 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="79" height="71" stroke="currentColor" />
<rect x="0.5" y="0.5" width="79" height="8" stroke="currentColor" />
<path d="M11 3H78V4H11V3Z" fill="currentColor" />
<path d="M11 5H78V6H11V5Z" fill="currentColor" />
<path d="M2 3H4V4H2V3Z" fill="currentColor" />
<path d="M2 5H4V6H2V5Z" fill="currentColor" />
<path d="M7.50156 5.072L6.26156 6.32L5.74156 5.8L6.98956 4.56L5.74156 3.32L6.26156 2.8L7.50156 4.048L8.74156 2.8L9.26156 3.32L8.01356 4.56L9.26156 5.8L8.74156 6.32L7.50156 5.072Z" fill="currentColor" />
</svg></div></div><div class="use-case-title"><h3 class="h3">Codegen Evals</h3><div class="p small centred">Use sandboxes for your codegen gym for popular evals like swe-benchmark or internal evals.</div></div><a href="https://e2b.dev/docs?ref=landing-page-get-started" class="button medium primary w-button">See docs</a></div></div><div id="w-node-_0d6bbc89-31dc-8cde-6042-d3a77f5ca05b-53ac292f" class="use-case-item"><div class="use-case-item-box"><div class="tag brand float-tr"><div class="label on-black keep-white">NEW</div></div><div class="use-case-img"><div data-w-id="fe7a8bd5-eff8-3e3b-89ae-c3fb9c588f6e" style="-webkit-transform:translate3d(1.5rem, 0.5rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(1.5rem, 0.5rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(1.5rem, 0.5rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(1.5rem, 0.5rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)" class="img-desktop-sandbox w-embed"><svg width="0.75rem" height="0.75rem" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 5.17553L6.21446 6.21446L5.17554 12L0 0L12 5.17553Z" fill="currentColor" />
</svg></div><div class="uc-desktop w-embed"><svg width="80" height="72" viewBox="0 0 80 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="79" height="71" stroke="currentColor" />
<path d="M50.8992 68L49.6372 66.716V60H56.3533L57.6153 61.2839V68H50.8992ZM50.0103 66.5843H56.1887V60.417H50.0103V66.5843Z" fill="currentColor" />
<path d="M42.0203 68L40.7583 66.716V60H47.4744L48.7364 61.2839V68H42.0203ZM41.1314 66.5843H47.3098V60.417H41.1314V66.5843Z" fill="currentColor" />
<path d="M33.1409 68L31.8789 66.716V60H38.595L39.857 61.2839V68H33.1409ZM32.252 66.5843H38.4304V60.417H32.252V66.5843Z" fill="currentColor" />
<path d="M24.262 68L23 66.716V60H29.7161L30.9781 61.2839V68H24.262ZM23.3731 66.5843H29.5515V60.417H23.3731V66.5843Z" fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 10V16H12V10H6ZM13 18H5V19H13V18ZM5 31H13V32H5V31ZM6 23V29H12V23H6Z" fill="currentColor" />
<path d="M40.032 40.408L39.432 36.904L36.096 38.152L36 37.984L38.736 35.704L36 33.448L36.096 33.28L39.432 34.504L40.032 31H40.224L40.824 34.504L44.16 33.28L44.256 33.448L41.52 35.704L44.256 37.984L44.16 38.152L40.824 36.904L40.224 40.408H40.032Z" fill="var(--color--content-quad)" />
<rect x="0.5" y="0.5" width="79" height="4" stroke="currentColor" />
<rect x="2" y="2" width="8" height="1" fill="currentColor" />
<rect x="66" y="2" width="12" height="1" fill="currentColor" />
<rect x="63" y="2" width="2" height="1" fill="currentColor" />
<rect x="60" y="2" width="2" height="1" fill="currentColor" />
<rect x="57" y="2" width="2" height="1" fill="currentColor" />
</svg></div></div><div class="use-case-title"><h3 class="h3">Computer Use</h3><div class="p small centred">Use Desktop Sandbox to provide secure virtual computers in cloud for your LLM.</div></div><a href="https://e2b.dev/docs?ref=landing-page-get-started" class="button medium primary w-button">See docs</a></div></div><div id="w-node-acb498b5-5f8f-3a6b-3d80-3d847561c295-53ac292f" class="bg-dotted"></div></div></div><div class="s-code-snippets"><div class="s-cover float"><div class="s-cover-title"><div class="section-label"><div class="label">[</div><div class="label">GET STARTED</div><div class="label">]</div></div><div class="wrap-h"><div class="h-getstarted"><div style="display:block" class="h2 float s-1">A FEW LINES</div><div style="display:none" class="h2 float s-3">A F3W L1NES</div><div style="display:none" class="h2 float s-2">4 FE# L!NES</div><div style="display:none" class="h2 float s-4">A FEW 7INE5</div><div style="display:none" class="h2 float s-5">– FEW ILNES</div></div><h2 class="h2">IN YOUR CODE<br/>WITH A FEW LINES<br/></h2></div><div class="p perex s-use-cases">Need help? Join <a href="https://discord.com/invite/U7KEcGErtQ" target="_blank" class="p perex link-underline">Discord</a>, check <a href="https://e2b.dev/docs" class="p perex link-underline">Docs</a> or <a href="mailto:[email protected]" class="p perex link-underline">Email us</a>.</div></div><div class="label float-l-t">+</div><div class="label float-r-t">+</div><div class="label float-l-c get-started">+</div><div class="label float-r-c get-started">+</div><div class="label float-l-b get-stated">+</div><div class="label float-r-b get-started">+</div></div><div data-current="Tab 1" data-easing="linear" data-duration-in="0" data-duration-out="0" class="s-code-snippets-tabs w-tabs"><div class="tabs-code-snippet-menu w-tab-menu"><a data-w-tab="Tab 1" class="tab-link-icon w-inline-block w-tab-link w--current"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.4992 22.1487C12.2277 22.1487 11.9571 22.0776 11.7194 21.9398L9.23633 20.4707C8.8659 20.2635 9.04689 20.1899 9.16867 20.1468C9.66344 19.9751 9.76323 19.9354 10.2918 19.636C10.3468 19.6047 10.4195 19.6165 10.4762 19.6504L12.3842 20.7828C12.4535 20.8209 12.5508 20.8209 12.6142 20.7828L20.0526 16.4898C20.1219 16.4501 20.1659 16.3706 20.1659 16.2885V7.7042C20.1659 7.62047 20.1211 7.54182 20.05 7.49953L12.6151 3.20991C12.5466 3.17016 12.4552 3.17016 12.3859 3.20991L4.95263 7.50038C4.88074 7.54182 4.83507 7.62301 4.83507 7.7042V16.2885C4.83507 16.3706 4.88074 16.4484 4.95263 16.4873L6.99003 17.6645C8.09542 18.2177 8.77287 17.5664 8.77287 16.9118V8.43662C8.77287 8.31652 8.86928 8.22264 8.98938 8.22264H9.93238C10.0499 8.22264 10.148 8.31737 10.148 8.43662V16.9118C10.148 18.3877 9.34459 19.2334 7.94573 19.2334C7.51609 19.2334 7.17694 19.2334 6.23225 18.7674L4.28027 17.6451C3.79819 17.3668 3.50049 16.8459 3.50049 16.2885V7.7042C3.50049 7.14685 3.79904 6.62588 4.28027 6.34847L11.7186 2.05039C12.1897 1.78398 12.8147 1.78398 13.2815 2.05039L20.719 6.34847C21.2011 6.62672 21.5005 7.14685 21.5005 7.7042V16.2885C21.5005 16.8459 21.2011 17.3651 20.719 17.6451L13.2815 21.9398C13.0447 22.0776 12.7749 22.1487 12.4992 22.1487ZM18.5049 13.6853C18.5049 12.0784 17.4189 11.6504 15.1329 11.3485C12.8231 11.0432 12.588 10.885 12.588 10.3446C12.588 9.89806 12.7868 9.30181 14.4977 9.30181C16.026 9.30181 16.5892 9.63081 16.821 10.6609C16.8413 10.7582 16.9301 10.8292 17.0299 10.8292H17.9949C18.0549 10.8292 18.1116 10.803 18.1522 10.7607C18.1928 10.7151 18.2148 10.6567 18.2088 10.595C18.0591 8.82058 16.8802 7.99345 14.4977 7.99345C12.3766 7.99345 11.1114 8.88824 11.1114 10.3894C11.1114 12.0175 12.3698 12.4674 14.4055 12.6687C16.8413 12.9072 17.0299 13.2633 17.0299 13.742C17.0299 14.5733 16.3626 14.9277 14.7954 14.9277C12.8274 14.9277 12.3943 14.4338 12.2489 13.4544C12.232 13.3496 12.1423 13.2726 12.0349 13.2726H11.0733C10.954 13.2726 10.8585 13.3673 10.8585 13.4866C10.8585 14.74 11.5401 16.2335 14.7954 16.2335C17.1534 16.2344 18.5049 15.3066 18.5049 13.6853Z" fill="currentColor"/>
</svg></div><div class="label">NODE.JS</div></a><a data-w-tab="Tab 2" class="tab-link-icon w-inline-block w-tab-link"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8169_2475)">
<path d="M12.3262 3.00015C11.5896 3.00354 10.8861 3.06581 10.2671 3.17437C8.44358 3.49367 8.11251 4.162 8.11251 5.3945V6.80946H12.4217V7.56486H8.11251H6.49532C5.24296 7.56486 4.14636 8.31094 3.80335 9.73023C3.4077 11.3571 3.39016 12.3723 3.80335 14.0709C4.10966 15.3354 4.84117 16.2363 6.09353 16.2363H7.57512V14.285C7.57512 12.8753 8.80573 11.6318 10.2671 11.6318H14.5712C15.7693 11.6318 16.7258 10.654 16.7258 9.46143V5.3945C16.7258 4.23703 15.7406 3.36755 14.5712 3.17437C13.831 3.05224 13.0629 2.99675 12.3262 3.00015ZM9.99588 4.30933C10.441 4.30933 10.8045 4.67548 10.8045 5.1257C10.8045 5.57432 10.441 5.93709 9.99588 5.93709C9.54917 5.93709 9.18728 5.57432 9.18728 5.1257C9.18728 4.67548 9.54917 4.30933 9.99588 4.30933Z" fill="currentColor"/>
<path d="M17.5686 7.86572V9.76229C17.5686 11.2327 16.3109 12.4703 14.8767 12.4703H10.5725C9.39357 12.4703 8.41797 13.4704 8.41797 14.6406V18.7075C8.41797 19.865 9.43346 20.5458 10.5725 20.8779C11.9366 21.2754 13.2446 21.3473 14.8767 20.8779C15.9615 20.5666 17.0312 19.94 17.0312 18.7075V17.2899H12.7271V16.5372H17.0312H19.1858C20.4382 16.5372 20.9049 15.6714 21.3404 14.3718C21.7903 13.0339 21.7711 11.7473 21.3404 10.0311C21.0309 8.7954 20.4398 7.86572 19.1858 7.86572H17.5686ZM15.1479 18.1649C15.5946 18.1649 15.9565 18.5277 15.9565 18.9763C15.9565 19.4266 15.5946 19.7927 15.1479 19.7927C14.7028 19.7927 14.3393 19.4266 14.3393 18.9763C14.3393 18.5277 14.7028 18.1649 15.1479 18.1649Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_8169_2475">
<rect width="18" height="18" fill="white" transform="translate(3.5 3)"/>
</clipPath>
</defs>
</svg></div><div class="label">PYTHON</div></a><a data-w-tab="Tab 3" class="tab-link-icon w-inline-block w-tab-link"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 4L21.1603 19H3.83975L12.5 4Z" fill="currentColor"/>
</svg></div><div class="label">VERCEL</div></a><a data-w-tab="Tab 4" class="tab-link-icon w-inline-block w-tab-link"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.6812 10.1859C21.141 8.82399 20.9827 7.33208 20.2473 6.09331C19.1413 4.19326 16.9181 3.21574 14.7468 3.67575C13.7808 2.60198 12.393 1.99134 10.9381 2.00009C8.71859 1.99509 6.74932 3.40512 6.0665 5.48892C4.6407 5.77705 3.40998 6.65769 2.6898 7.90584C1.57563 9.80088 1.82963 12.1897 3.31814 13.8147C2.85828 15.1766 3.01664 16.6685 3.75202 17.9073C4.85796 19.8073 7.08123 20.7849 9.25255 20.3249C10.2179 21.3986 11.6063 22.0093 13.0612 21.9999C15.282 22.0055 17.2519 20.5942 17.9347 18.5086C19.3605 18.2204 20.5912 17.3398 21.3114 16.0916C22.4243 14.1966 22.1697 11.8097 20.6818 10.1846L20.6812 10.1859ZM13.0625 20.693C12.1738 20.6942 11.313 20.3874 10.6309 19.8255C10.6619 19.8092 10.7157 19.7798 10.7506 19.7586L14.7867 17.4585C14.9931 17.3429 15.1198 17.126 15.1186 16.8917V11.2772L16.8243 12.2491C16.8427 12.2578 16.8547 12.2753 16.8573 12.2953V16.9448C16.8547 19.0123 15.1578 20.6886 13.0625 20.693ZM4.90166 17.2535C4.45638 16.4948 4.29612 15.6054 4.44878 14.7422C4.47855 14.7597 4.53112 14.7916 4.56849 14.8129L8.60458 17.1129C8.80917 17.231 9.06253 17.231 9.26776 17.1129L14.1951 14.3054V16.2491C14.1963 16.2691 14.1868 16.2885 14.171 16.301L10.0912 18.6254C8.27394 19.658 5.95312 19.0442 4.9023 17.2535H4.90166ZM3.83943 8.56023C4.28282 7.80022 4.98274 7.21895 5.81631 6.91707C5.81631 6.95145 5.81441 7.01207 5.81441 7.05458V11.6553C5.81314 11.8891 5.93982 12.1059 6.14568 12.2216L11.073 15.0285L9.3672 16.0004C9.3501 16.0116 9.32856 16.0135 9.30956 16.0054L5.22914 13.6791C3.41568 12.6428 2.79368 10.3534 3.8388 8.56086L3.83943 8.56023ZM17.8543 11.7784L12.927 8.97087L14.6327 7.9996C14.6498 7.98835 14.6714 7.98647 14.6904 7.9946L18.7708 10.319C20.5874 11.3547 21.2101 13.6478 20.1605 15.4404C19.7165 16.1991 19.0172 16.7804 18.1843 17.0829V12.3447C18.1862 12.1109 18.0601 11.8947 17.8549 11.7784H17.8543ZM19.5518 9.25712C19.522 9.239 19.4695 9.20775 19.4321 9.1865L15.396 6.88645C15.1914 6.76832 14.938 6.76832 14.7328 6.88645L9.80552 9.69401V7.75022C9.80425 7.73022 9.81376 7.71084 9.82959 7.69834L13.9094 5.37579C15.7266 4.34139 18.05 4.95703 19.0976 6.75082C19.5404 7.50834 19.7006 8.39523 19.5505 9.25712H19.5518ZM8.87821 12.7216L7.1718 11.7497C7.15343 11.7409 7.1414 11.7234 7.13887 11.7034V7.05395C7.14013 4.98391 8.84211 3.30637 10.94 3.30762C11.8274 3.30762 12.6863 3.61513 13.3685 4.17514C13.3374 4.19139 13.2842 4.22077 13.2487 4.24202L9.21265 6.54206C9.00616 6.65769 8.87948 6.87395 8.88074 7.10833L8.87821 12.7203V12.7216ZM9.80489 10.7503L11.9997 9.49963L14.1944 10.7497V13.2503L11.9997 14.5004L9.80489 13.2503V10.7503Z" fill="currentColor" />
</svg></div><div class="label">OPEN AI</div></a><a data-w-tab="Tab 5" class="tab-link-icon w-inline-block w-tab-link"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.5225 5.12646L18.9978 18.8597H22.0004L16.5251 5.12646H13.5225Z" fill="currentColor" />
<path d="M7.17076 13.4252L9.04426 8.59899L10.9178 13.4252H7.17076ZM7.47451 5.12646L2 18.8597H5.06101L6.18064 15.9757H11.9081L13.0275 18.8597H16.0885L10.614 5.12646H7.47451Z" fill="currentColor" />
</svg></div><div class="label">ANTHROPIC</div></a><a data-w-tab="Tab 6" class="tab-link-icon w-inline-block w-tab-link"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3.25" y="3.25" width="3.5" height="3.5" fill="var(--color--content-primary)" />
<rect x="3.25" y="6.75" width="7" height="3.5" fill="var(--color--content-dark80)" />
<rect x="3.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="3.25" y="17.25" width="3.5" height="3.5" fill="var(--color--content-dark20)" />
<rect x="3.25" y="10.25" width="17.5" height="3.5" fill="var(--color--content-dark60)" />
<rect x="10.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="13.75" y="6.75" width="7" height="3.5" fill="var(--color--content-dark80)" />
<rect x="17.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="17.25" y="17.25" width="3.5" height="3.5" fill="var(--color--content-dark20)" />
<rect x="17.25" y="3.25" width="3.5" height="3.5" fill="var(--color--content-primary)" />
</svg></div><div class="label">Mistral</div></a><a data-w-tab="Tab 7" class="tab-link-icon w-inline-block w-tab-link"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.33875 4.69428C5.53475 4.69428 3.96267 5.86761 2.87367 7.54786C1.64533 9.44078 1 11.8929 1 14.245C1 14.8922 1.06417 15.4999 1.1925 16.0536C1.25551 16.3216 1.33667 16.585 1.43542 16.8419C1.52998 17.0832 1.64371 17.3164 1.7755 17.5395C2.4135 18.6019 3.442 19.3059 5.06908 19.3059C6.44133 19.3059 7.48267 18.6909 8.70367 17.0656C9.40033 16.1379 9.75233 15.5751 11.1448 13.1056L11.8378 11.8782L12.0083 11.5803C12.0642 11.6719 12.1192 11.7599 12.176 11.8553L14.1487 15.1507C14.8123 16.2599 15.6749 17.4937 16.4128 18.1885C17.3717 19.0933 18.2388 19.3069 19.2178 19.3069C20.2033 19.3069 20.9375 18.9814 21.4683 18.5341C21.7646 18.2811 22.0157 17.9795 22.2108 17.6422C22.7076 16.7814 23 15.6924 23 14.2093C23 11.7159 22.3758 9.29869 21.0897 7.38011C19.9145 5.62744 18.3791 4.69428 16.7667 4.69428C15.8069 4.69428 14.8527 5.12236 13.9681 5.89328C13.3704 6.41578 12.8158 7.07578 12.2998 7.77244C11.6672 6.97036 11.076 6.35436 10.5049 5.88778C9.42142 5.00228 8.38283 4.69336 7.33875 4.69336V4.69428ZM16.6521 6.57619C17.7035 6.57619 18.6577 7.27103 19.3948 8.40861C20.4324 10.0109 20.9045 12.254 20.9045 14.2753C20.9045 15.6943 20.5672 16.9336 19.2188 16.9336C18.6871 16.9336 18.2773 16.7228 17.6934 16.0133C17.2388 15.4624 16.4623 14.2918 15.0974 12.0184L14.5318 11.0761C14.1642 10.4612 13.7806 9.856 13.3814 9.26111C13.4456 9.16119 13.5107 9.05578 13.5748 8.96136C14.6015 7.43328 15.5154 6.57619 16.6521 6.57619ZM7.30117 7.08311C8.46075 7.08311 9.18767 7.80819 9.75325 8.40861C10.0347 8.70836 10.4288 9.20703 10.8844 9.85603L9.94942 11.2915C9.2555 12.3576 8.22425 14.0571 7.34883 15.268C6.25708 16.7796 5.68967 16.9336 5.07 16.9336C4.58967 16.9336 4.1185 16.7164 3.80225 16.2058C3.56117 15.8153 3.37692 15.1699 3.37692 14.3303C3.37692 12.2944 3.95442 10.1732 4.89858 8.74961C5.31475 8.11986 5.78225 7.62578 6.30383 7.34436C6.60901 7.17477 6.95204 7.08492 7.30117 7.08311Z" fill="currentColor" />
</svg></div><div class="label">Llama</div></a><a data-w-tab="Tab 8" class="tab-link-icon w-inline-block w-tab-link"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_118_6240)">
<path d="M19.2 9.66904C19.6713 10.1404 19.6713 10.9073 19.2 11.3787L18.1442 12.4174L18.1334 12.3579C18.0564 11.931 17.8534 11.5436 17.547 11.2372C17.3162 11.0069 17.0435 10.8366 16.7361 10.7312C16.5453 10.923 16.4404 11.1742 16.4404 11.4387C16.4404 11.4923 16.4453 11.548 16.4551 11.6036C16.6244 11.6646 16.7741 11.7587 16.9 11.8846C17.3713 12.3559 17.3713 13.1229 16.9 13.5942L15.9808 14.5134C15.7452 14.7491 15.4358 14.8667 15.126 14.8667C14.8162 14.8667 14.5069 14.7491 14.2712 14.5134C13.7999 14.0421 13.7999 13.2751 14.2712 12.8038L15.327 11.7656L15.3378 11.8251C15.4144 12.251 15.6173 12.6384 15.9247 12.9453C16.156 13.1766 16.4121 13.3303 16.719 13.4352L16.7756 13.3786C16.9473 13.2068 17.0415 12.9785 17.0415 12.735C17.0415 12.6809 17.0366 12.6267 17.0274 12.5735C16.8503 12.515 16.7044 12.4316 16.5717 12.2988C16.3804 12.1076 16.2614 11.8631 16.2282 11.5924C16.2257 11.5728 16.2243 11.5538 16.2223 11.5343C16.196 11.1815 16.3233 10.8371 16.5717 10.5892L17.4909 9.67001C17.7187 9.44216 18.0222 9.31628 18.3457 9.31628C18.6692 9.31628 18.9726 9.44168 19.2005 9.67001L19.2 9.66904ZM24 12.0988C24 15.4619 21.2638 18.1976 17.9012 18.1976H6.0988C2.73617 18.1976 0 15.4619 0 12.0988C0 8.73568 2.73617 6 6.0988 6H17.9012C21.2643 6 24 8.73617 24 12.0988ZM11.7536 15.1575C11.8497 15.0409 11.4057 14.7125 11.315 14.592C11.1306 14.3919 11.1296 14.1041 11.0052 13.8704C10.7007 13.1649 10.3509 12.4647 9.86152 11.8675C9.34434 11.2142 8.70616 10.6736 8.14556 10.0603C7.72938 9.63245 7.61813 9.02305 7.25074 8.56296C6.7443 7.815 5.143 7.61106 4.90831 8.66737C4.90929 8.70055 4.89904 8.72153 4.87026 8.74251C4.74048 8.83667 4.62484 8.9445 4.52775 9.07477C4.29014 9.40557 4.25355 9.96666 4.55019 10.2638C4.55995 10.1072 4.56532 9.95934 4.68925 9.84712C4.91856 10.0437 5.26497 10.1135 5.53088 9.96666C6.11832 10.8054 5.97195 11.9656 6.43838 12.8692C6.56719 13.0829 6.69697 13.301 6.86237 13.4884C6.99654 13.6972 7.46005 13.9436 7.48738 14.1368C7.49226 14.4686 7.45322 14.8311 7.67083 15.1087C7.77329 15.3165 7.52153 15.5254 7.31856 15.4995C7.05509 15.5356 6.73356 15.3224 6.50279 15.4536C6.42131 15.5419 6.26176 15.4444 6.1915 15.5668C6.16711 15.6302 6.03537 15.7195 6.11393 15.7805C6.20126 15.7142 6.28225 15.6449 6.39984 15.6844C6.38227 15.78 6.4579 15.7937 6.51791 15.8215C6.51596 15.8864 6.4779 15.9528 6.52767 16.0079C6.58573 15.9493 6.62037 15.8664 6.71258 15.842C7.01899 16.2504 7.33076 15.4287 7.99382 15.7986C7.85916 15.7917 7.73962 15.8088 7.64887 15.9196C7.62643 15.9445 7.6074 15.9737 7.64692 16.0059C8.00455 15.7752 8.0026 16.085 8.23485 15.9898C8.41342 15.8966 8.59101 15.78 8.80325 15.8132C8.59687 15.8727 8.58858 16.0386 8.46758 16.1787C8.44708 16.2001 8.43732 16.2245 8.46123 16.2601C8.88961 16.224 8.92474 16.0816 9.27067 15.9069C9.52877 15.7493 9.78589 16.1313 10.0094 15.9137C10.0586 15.8664 10.126 15.8825 10.1869 15.8762C10.1089 15.46 9.25066 15.9523 9.26432 15.3941C9.54048 15.2063 9.47705 14.8467 9.49559 14.5564C9.81321 14.7325 10.1665 14.835 10.4777 15.0033C10.6348 15.257 10.8812 15.5922 11.2096 15.5702C11.2184 15.5449 11.2262 15.5224 11.2355 15.4966C11.335 15.5136 11.4628 15.5795 11.5175 15.4536C11.6663 15.6093 11.8849 15.6015 12.0795 15.5615C12.2235 15.4444 11.8087 15.2775 11.7531 15.157L11.7536 15.1575ZM20.4681 10.5238C20.4681 9.95593 20.2475 9.42265 19.847 9.02208C19.4464 8.62151 18.9131 8.40098 18.3447 8.40098C17.7763 8.40098 17.243 8.62151 16.8424 9.02208L15.9232 9.94129C15.7086 10.156 15.5456 10.4082 15.4387 10.6907L15.4324 10.7068L15.4158 10.7117C15.0821 10.8146 14.7879 10.9913 14.5415 11.2376L13.6223 12.1569C12.7943 12.9853 12.7943 14.3329 13.6223 15.1609C14.0229 15.5615 14.5561 15.782 15.1241 15.782C15.692 15.782 16.2257 15.5615 16.6263 15.1609L17.5455 14.2417C17.7592 14.028 17.9212 13.7767 18.0281 13.4947L18.0344 13.4786L18.051 13.4732C18.3789 13.3727 18.6814 13.1902 18.9268 12.9453L19.846 12.0261C20.2466 11.6255 20.4671 11.0923 20.4671 10.5238H20.4681ZM8.41049 14.47C8.33145 14.7784 8.30559 15.3038 7.90453 15.319C7.87136 15.4971 8.02797 15.5639 8.16995 15.5068C8.31096 15.4419 8.3778 15.558 8.42513 15.6737C8.64273 15.7054 8.96475 15.601 8.97695 15.3434C8.652 15.156 8.55149 14.7998 8.41 14.47H8.41049Z" fill="currentColor" />
</g>
<defs>
<clipPath id="clip0_118_6240">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg></div><div class="label">LangChain</div></a><a data-w-tab="Tab 9" class="tab-link-icon w-inline-block w-tab-link"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 2H2V22H22V2ZM7.38 4.74C7.28667 4.61333 7.032 4.34 6.76 4.26C6.86 4.6 6.88 5 6.88 5.32C6.8 5.42 6.5 5.66 6.26 5.66C5.8 5.66 5.7 5.88 5.7 6.1C5.7 6.4 5.932 6.848 6.86 6.96V7.36C6.75333 7.46 6.54 7.892 6.54 8.82C6.54 9.26 6.64667 9.82 6.7 9.74L6.72 10.64C6.72 10.9267 6.784 11.564 7.04 11.82V12.76C7.02667 13.14 7.352 14.092 8.76 14.86V16.26C8.83333 16.5533 8.976 17.3 8.96 17.94C8.944 18.58 8.71333 19.0333 8.6 19.18C8.48 19.2067 8.244 19.34 8.26 19.66H8.92C9.12 19.3933 9.568 18.584 9.76 17.48C9.78087 17.36 9.97333 17.42 9.96 18.08V19.14C9.8 19.2467 9.48 19.536 9.48 19.84H10.28C10.4 19.7733 10.64 19.532 10.64 19.1V17.8C10.6512 17.7775 10.6625 17.7557 10.6737 17.734C10.8218 17.4469 10.9614 17.1763 10.98 15.54C11.16 15.6067 11.704 15.74 12.44 15.74C13.176 15.74 14.0533 15.5 14.4 15.38V15.98C14.4 16.1499 14.5407 16.323 14.7109 16.5325C14.9615 16.841 15.2762 17.2283 15.3 17.8C15.2933 18.0067 15.18 18.568 14.78 19.16C14.46 19.3 14.44 19.48 14.44 19.66H15.28V19C15.5733 18.7533 16.16 17.984 16.16 16.88C16.3735 17.2715 16.7454 17.5996 16.9657 17.794C16.993 17.8181 17.0179 17.8401 17.04 17.86C17.0533 17.9933 17.08 18.324 17.08 18.58C17.08 18.836 17.0267 19.3 17 19.5C16.9 19.56 16.7 19.716 16.7 19.86H17.52C17.5867 19.7467 17.72 19.376 17.72 18.8C17.72 18.224 17.6933 18.0933 17.68 18.1C17.76 18.0067 17.92 17.732 17.92 17.38C17.92 17.028 17.76 16.6067 17.68 16.44V15.2C17.6 15.0667 17.44 14.64 17.44 14C17.44 13.86 17.48 13.2667 17.5 13.3C17.74 13.3 18.22 13.1 18.22 12.3C18.22 11.3 17.58 10.64 17.06 10.64C16.739 10.64 16.5095 10.7162 16.3338 10.7745C16.2248 10.8107 16.1366 10.84 16.06 10.84H15.86C15.6845 10.7754 15.512 10.6972 15.3284 10.6141C14.6402 10.3022 13.7967 9.92 12.06 9.92H9.46L9.28 8.16C9.18 7 8.94 4.74 7.38 4.24V4.74Z" fill="currentColor" />
</svg></div><div class="label">LlamaIndex</div></a><a data-w-tab="Tab 10" id="last-tab" class="tab-link-icon external-link w-inline-block w-tab-link"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="8.5" cy="12" r="1" fill="currentColor" />
<circle cx="12.5" cy="12" r="1" fill="currentColor" />
<circle cx="16.5" cy="12" r="1" fill="currentColor" />
</svg></div><div class="label">More</div></a></div><div class="tabs--code-snippet-content w-tab-content"><div data-w-tab="Tab 1" class="tab-code-snippet w-tab-pane w--tab-active"><div class="code-snippet-tab-wrap"><div class="code-snippet-tab-code"><div class="code-snippet-rows unselectable"> 1<br/> 2<br/> 3<br/> 4<br/> 5<br/> 6<br/> 7<br/> 8<br/> 9<br/> 10<br/> 11<br/> 12<br/><span class="code-snippet-rows empty">~<br/>~<br/>~<br/>~<br/>~<br/>~<br/></span><span class="code-snippet-rows empty">~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/></span></div><pre contenteditable="false" class="hp-code-block w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-typescript" style="white-space:pre"><span style="color:#d4d0ab">// npm install @e2b/code-interpreter</span><span>
</span><span></span><span style="color:#dcc6e0">import</span><span> { Sandbox } </span><span style="color:#dcc6e0">from</span><span> </span><span style="color:#abe338">'@e2b/code-interpreter'</span><span>
</span>
<span></span><span style="color:#d4d0ab">// Create a E2B Code Interpreter with JavaScript kernel</span><span>
</span><span></span><span style="color:#dcc6e0">const</span><span> sandbox = </span><span style="color:#dcc6e0">await</span><span> Sandbox.create()
</span>
<span></span><span style="color:#d4d0ab">// Execute JavaScript cells</span><span>
</span><span></span><span style="color:#dcc6e0">await</span><span> sandbox.runCode(</span><span style="color:#abe338">'x = 1'</span><span>)
</span><span></span><span style="color:#dcc6e0">const</span><span> execution = </span><span style="color:#dcc6e0">await</span><span> sandbox.runCode(</span><span style="color:#abe338">'x+=1; x'</span><span>)
</span>
<span></span><span style="color:#d4d0ab">// Outputs 2</span><span>
</span><span></span><span style="color:#f5ab35">console</span><span>.log(execution.text)</span></code></pre><div class="w-embed"><style>
[style='color: rgb(245, 171, 53);'],
[style='color:#f5ab35'] {
color: #e6edf3 !important; /* red */
}
[style='color: rgb(255, 215, 0);'],
[style='color:#dcc6e0'],
[style='color: rgb(220, 198, 224);'],
[style='color:#ffd700'] {
color: #ff7b72 !important; /* green */
}
[style='color: rgb(171, 227, 56);'],
[style='color:#abe338'] {
color: #a5d6ff !important;
}
[style='color: rgb(212, 208, 171);'],
[style='color:#d4d0ab'] {
color: #999 !important; /* comments - gray */
}
[style='color: rgb(255, 160, 122);'],
[style='color:#ffa07a'] {
color: #d06dff !important; /* purple */
}
.w-code-block {
padding: 0rem !important;
background: var(--color--bg-codesnippet) !important;
}
.hp-code-block {
scrollbar-width: thin; /* For Firefox */
scrollbar-color: #333 var(--color--bg-codesnippet); /* Scrollbar thumb and track color */
}
/* For Webkit browsers (Chrome, Edge, Safari) */
.hp-code-block::-webkit-scrollbar {
width: 8px; /* Width of the scrollbar */
height: 8px; /* Height of the scrollbar (for horizontal scrollbars) */
}
.hp-code-block::-webkit-scrollbar-thumb {
background: #333; /* Color of the scrollbar thumb */
border-radius: 10px; /* Rounded edges for the thumb */
}
.hp-code-block::-webkit-scrollbar-thumb:hover {
background: #666; /* Color when hovering over the thumb */
}
.hp-code-block::-webkit-scrollbar-track {
background: #000; /* Color of the scrollbar track */
border-radius: 10px; /* Rounded edges for the track */
}
</style></div></div><div class="code-snippet-tab-note"><div class="label code-snippet-note">“~/index.ts”</div></div></div></div><div data-w-tab="Tab 2" class="tab-code-snippet w-tab-pane"><div class="code-snippet-tab-wrap"><div class="code-snippet-tab-code"><div class="code-snippet-rows"> 1<br/> 2<br/> 3<br/> 4<br/> 5<br/> 6<br/> 7<br/> 8<br/> 9<br/> 10<br/><span class="code-snippet-rows empty">~<br/>~<br/>~<br/>~<br/>~<br/>~<br/></span><span class="code-snippet-rows empty">~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/></span><span class="code-snippet-rows empty">~<br/>~</span></div><pre contenteditable="false" class="hp-code-block w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-python" style="white-space:pre"><span style="color:#d4d0ab"># pip install e2b-code-interpreter</span><span>
</span><span></span><span style="color:#dcc6e0">from</span><span> e2b_code_interpreter </span><span style="color:#dcc6e0">import</span><span> Sandbox
</span>
<span></span><span style="color:#d4d0ab"># Create a E2B Sandbox</span><span>
</span><span></span><span style="color:#dcc6e0">with</span><span> Sandbox() </span><span style="color:#dcc6e0">as</span><span> sandbox:
</span><span> </span><span style="color:#d4d0ab"># Run code</span><span>
</span><span> sandbox.run_code(</span><span style="color:#abe338">"x = 1"</span><span>)
</span><span> execution = sandbox.run_code(</span><span style="color:#abe338">"x+=1; x"</span><span>)
</span>
<span> </span><span style="color:#f5ab35">print</span><span>(execution.text) </span><span style="color:#d4d0ab"># outputs 2</span></code></pre></div><div class="code-snippet-tab-note"><div class="label code-snippet-note">“~/index.py”</div></div></div></div><div data-w-tab="Tab 3" class="tab-code-snippet w-tab-pane"><div class="code-snippet-tab-wrap"><div class="code-snippet-tab-code"><div class="code-snippet-rows"> 1<br/> 2<br/> 3<br/> 4<br/> 5<br/> 6<br/> 7<br/> 8<br/> 9<br/> 10<br/> 11<br/> 12<br/> 13<br/> 14<br/> 15<br/> 16<br/> 17<br/> 18<br/> 19<br/> 20<br/> 21<br/> 22<br/> 23<br/> 24<br/> 25<br/> 26<br/> 27<br/> 28<br/> 29<br/> 30<br/> 31<br/> 32<br/> 33<br/> 34<br/> 35<span class="code-snippet-rows empty"></span><span class="code-snippet-rows empty"></span></div><pre contenteditable="false" class="hp-code-block w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-typescript" style="white-space:pre"><span style="color:#d4d0ab">// npm install ai @ai-sdk/openai zod @e2b/code-interpreter</span><span>
</span><span></span><span style="color:#dcc6e0">import</span><span> { openai } </span><span style="color:#dcc6e0">from</span><span> </span><span style="color:#abe338">'@ai-sdk/openai'</span><span>
</span><span></span><span style="color:#dcc6e0">import</span><span> { generateText } </span><span style="color:#dcc6e0">from</span><span> </span><span style="color:#abe338">'ai'</span><span>
</span><span></span><span style="color:#dcc6e0">import</span><span> z </span><span style="color:#dcc6e0">from</span><span> </span><span style="color:#abe338">'zod'</span><span>
</span><span></span><span style="color:#dcc6e0">import</span><span> { Sandbox } </span><span style="color:#dcc6e0">from</span><span> </span><span style="color:#abe338">'@e2b/code-interpreter'</span><span>
</span>
<span></span><span style="color:#d4d0ab">// Create OpenAI client</span><span>
</span><span></span><span style="color:#dcc6e0">const</span><span> model = openai(</span><span style="color:#abe338">'gpt-4o'</span><span>)
</span>
<span></span><span style="color:#dcc6e0">const</span><span> prompt = </span><span style="color:#abe338">"Calculate how many r's are in the word 'strawberry'"</span><span>
</span>
<span></span><span style="color:#d4d0ab">// Generate text with OpenAI</span><span>
</span><span></span><span style="color:#dcc6e0">const</span><span> { text } = </span><span style="color:#dcc6e0">await</span><span> generateText({
</span> model,
prompt,
<span> </span><span class="hljs-attr">tools</span><span>: {
</span><span> </span><span style="color:#d4d0ab">// Define a tool that runs code in a sandbox</span><span>
</span><span> </span><span class="hljs-attr">codeInterpreter</span><span>: {
</span><span> </span><span class="hljs-attr">description</span><span>: </span><span style="color:#abe338">'Execute python code in a Jupyter notebook cell and return result'</span><span>,
</span><span> </span><span class="hljs-attr">parameters</span><span>: z.object({
</span><span> </span><span class="hljs-attr">code</span><span>: z.string().describe(</span><span style="color:#abe338">'The python code to execute in a single cell'</span><span>),
</span> }),
<span> </span><span class="hljs-attr">execute</span><span>: </span><span style="color:#dcc6e0">async</span><span> ({ code }) => {
</span><span> </span><span style="color:#d4d0ab">// Create a sandbox, execute LLM-generated code, and return the result</span><span>
</span><span> </span><span style="color:#dcc6e0">const</span><span> sandbox = </span><span style="color:#dcc6e0">await</span><span> Sandbox.create()
</span><span> </span><span style="color:#dcc6e0">const</span><span> { text, results, logs, error } = </span><span style="color:#dcc6e0">await</span><span> sandbox.runCode(code)
</span><span> </span><span style="color:#dcc6e0">return</span><span> results
</span> },
},
},
<span> </span><span style="color:#d4d0ab">// This is required to feed the tool call result back to the LLM</span><span>
</span><span> </span><span class="hljs-attr">maxSteps</span><span>: </span><span style="color:#f5ab35">2</span><span>
</span>})
<span></span><span style="color:#f5ab35">console</span><span>.log(text)</span></code></pre></div><div class="code-snippet-tab-note"><div class="label code-snippet-note">“~/aisdk_tools.ts”</div></div></div></div><div data-w-tab="Tab 4" class="tab-code-snippet w-tab-pane"><div class="code-snippet-tab-wrap"><div class="code-snippet-tab-code"><div class="code-snippet-rows"> 1<br/> 2<br/> 3<br/> 4<br/> 5<br/> 6<br/> 7<br/> 8<br/> 9<br/> 10<br/> 11<br/> 12<br/> 13<br/> 14<br/> 15<br/> 16<br/> 17<br/> 18<br/> 19<br/> 20<br/> 21<br/> 22<br/> 23<br/> 24<br/> 25<br/> 26<br/> 27<br/> 28<span class="code-snippet-rows empty"></span><span class="code-snippet-rows empty"><br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/></span></div><pre contenteditable="false" class="hp-code-block w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-python" style="white-space:pre"><span style="color:#d4d0ab"># pip install openai e2b-code-interpreter</span><span>
</span><span></span><span style="color:#dcc6e0">from</span><span> openai </span><span style="color:#dcc6e0">import</span><span> OpenAI
</span><span></span><span style="color:#dcc6e0">from</span><span> e2b_code_interpreter </span><span style="color:#dcc6e0">import</span><span> Sandbox
</span>
<span></span><span style="color:#d4d0ab"># Create OpenAI client</span><span>
</span>client = OpenAI()
<span>system = </span><span style="color:#abe338">"You are a helpful assistant that can execute python code in a Jupyter notebook. Only respond with the code to be executed and nothing else. Strip backticks in code blocks."</span><span>
</span><span>prompt = </span><span style="color:#abe338">"Calculate how many r's are in the word 'strawberry'"</span><span>
</span>
<span></span><span style="color:#d4d0ab"># Send messages to OpenAI API</span><span>
</span>response = client.chat.completions.create(
<span> model=</span><span style="color:#abe338">"gpt-4o"</span><span>,
</span> messages=[
<span> {</span><span style="color:#abe338">"role"</span><span>: </span><span style="color:#abe338">"system"</span><span>, </span><span style="color:#abe338">"content"</span><span>: system},
</span><span> {</span><span style="color:#abe338">"role"</span><span>: </span><span style="color:#abe338">"user"</span><span>, </span><span style="color:#abe338">"content"</span><span>: prompt}
</span> ]
)
<span></span><span style="color:#d4d0ab"># Extract the code from the response</span><span>
</span><span>code = response.choices[</span><span style="color:#f5ab35">0</span><span>].message.content
</span>
<span></span><span style="color:#d4d0ab"># Execute code in E2B Sandbox</span><span>
</span><span></span><span style="color:#dcc6e0">if</span><span> code:
</span><span> </span><span style="color:#dcc6e0">with</span><span> Sandbox() </span><span style="color:#dcc6e0">as</span><span> sandbox:
</span> execution = sandbox.run_code(code)
result = execution.text
<span> </span><span style="color:#f5ab35">print</span><span>(result)</span></code></pre></div><div class="code-snippet-tab-note"><div class="label code-snippet-note">“~/oai.py”</div></div></div></div><div data-w-tab="Tab 5" class="tab-code-snippet w-tab-pane"><div class="code-snippet-tab-wrap"><div class="code-snippet-tab-code"><div class="code-snippet-rows"> 1<br/> 2<br/> 3<br/> 4<br/> 5<br/> 6<br/> 7<br/> 8<br/> 9<br/> 10<br/> 11<br/> 12<br/> 13<br/> 14<br/> 15<br/> 16<br/> 17<br/> 18<br/> 19<br/> 20<br/> 21<br/> 22<br/> 23<br/> 24<br/> 25<br/> 26<br/> 27<br/> 28<span class="code-snippet-rows empty"></span><span class="code-snippet-rows empty"><br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/></span></div><pre contenteditable="false" class="hp-code-block w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-python" style="white-space:pre"><span style="color:#d4d0ab"># pip install anthropic e2b-code-interpreter</span><span>
</span><span></span><span style="color:#dcc6e0">from</span><span> anthropic </span><span style="color:#dcc6e0">import</span><span> Anthropic
</span><span></span><span style="color:#dcc6e0">from</span><span> e2b_code_interpreter </span><span style="color:#dcc6e0">import</span><span> Sandbox
</span>
<span></span><span style="color:#d4d0ab"># Create Anthropic client</span><span>
</span>anthropic = Anthropic()
<span>system_prompt = </span><span style="color:#abe338">"You are a helpful assistant that can execute python code in a Jupyter notebook. Only respond with the code to be executed and nothing else. Strip backticks in code blocks."</span><span>
</span><span>prompt = </span><span style="color:#abe338">"Calculate how many r's are in the word 'strawberry'"</span><span>
</span>
<span></span><span style="color:#d4d0ab"># Send messages to Anthropic API</span><span>
</span>response = anthropic.messages.create(
<span> model=</span><span style="color:#abe338">"claude-3-5-sonnet-20240620"</span><span>,
</span><span> max_tokens=</span><span style="color:#f5ab35">1024</span><span>,
</span> messages=[
<span> {</span><span style="color:#abe338">"role"</span><span>: </span><span style="color:#abe338">"assistant"</span><span>, </span><span style="color:#abe338">"content"</span><span>: system_prompt},
</span><span> {</span><span style="color:#abe338">"role"</span><span>: </span><span style="color:#abe338">"user"</span><span>, </span><span style="color:#abe338">"content"</span><span>: prompt}
</span> ]
)
<span></span><span style="color:#d4d0ab"># Extract code from response</span><span>
</span><span>code = response.content[</span><span style="color:#f5ab35">0</span><span>].text
</span>
<span></span><span style="color:#d4d0ab"># Execute code in E2B Sandbox</span><span>
</span><span></span><span style="color:#dcc6e0">with</span><span> Sandbox() </span><span style="color:#dcc6e0">as</span><span> sandbox:
</span> execution = sandbox.run_code(code)
result = execution.logs.stdout
<span></span><span style="color:#f5ab35">print</span><span>(result)</span></code></pre></div><div class="code-snippet-tab-note"><div class="label code-snippet-note">“~/anth.py”</div></div></div></div><div data-w-tab="Tab 6" class="tab-code-snippet w-tab-pane"><div class="code-snippet-tab-wrap"><div class="code-snippet-tab-code"><div class="code-snippet-rows"> 1<br/> 2<br/> 3<br/> 4<br/> 5<br/> 6<br/> 7<br/> 8<br/> 9<br/> 10<br/> 11<br/> 12<br/> 13<br/> 14<br/> 15<br/> 16<br/> 17<br/> 18<br/> 19<br/> 20<br/> 21<br/> 22<br/> 23<br/> 24<br/> 25<br/> 26<br/> 27<br/> 28<br/> 29<br/> 30<span class="code-snippet-rows empty"></span><span class="code-snippet-rows empty"><br/>~<br/>~<br/>~<br/>~<br/>~<br/></span></div><pre contenteditable="false" class="hp-code-block w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-python" style="white-space:pre"><span style="color:#d4d0ab"># pip install mistralai e2b-code-interpreter</span><span>
</span><span></span><span style="color:#dcc6e0">import</span><span> os
</span><span></span><span style="color:#dcc6e0">from</span><span> mistralai </span><span style="color:#dcc6e0">import</span><span> Mistral
</span><span></span><span style="color:#dcc6e0">from</span><span> e2b_code_interpreter </span><span style="color:#dcc6e0">import</span><span> Sandbox
</span>
<span>api_key = os.environ[</span><span style="color:#abe338">"MISTRAL_API_KEY"</span><span>]
</span>
<span></span><span style="color:#d4d0ab"># Create Mistral client</span><span>
</span>client = Mistral(api_key=api_key)
<span>system_prompt = </span><span style="color:#abe338">"You are a helpful assistant that can execute python code in a Jupyter notebook. Only respond with the code to be executed and nothing else. Strip backticks in code blocks."</span><span>
</span><span>prompt = </span><span style="color:#abe338">"Calculate how many r's are in the word 'strawberry'"</span><span>
</span>
<span></span><span style="color:#d4d0ab"># Send the prompt to the model</span><span>
</span>response = client.chat.complete(
<span> model=</span><span style="color:#abe338">"codestral-latest"</span><span>,
</span> messages=[
<span> {</span><span style="color:#abe338">"role"</span><span>: </span><span style="color:#abe338">"system"</span><span>, </span><span style="color:#abe338">"content"</span><span>: system_prompt},
</span><span> {</span><span style="color:#abe338">"role"</span><span>: </span><span style="color:#abe338">"user"</span><span>, </span><span style="color:#abe338">"content"</span><span>: prompt}
</span> ]
)
<span></span><span style="color:#d4d0ab"># Extract the code from the response</span><span>
</span><span>code = response.choices[</span><span style="color:#f5ab35">0</span><span>].message.content
</span>
<span></span><span style="color:#d4d0ab"># Execute code in E2B Sandbox</span><span>
</span><span></span><span style="color:#dcc6e0">with</span><span> Sandbox() </span><span style="color:#dcc6e0">as</span><span> sandbox:
</span> execution = sandbox.run_code(code)
result = execution.text
<span></span><span style="color:#f5ab35">print</span><span>(result)</span></code></pre></div><div class="code-snippet-tab-note"><div class="label code-snippet-note">“~/mistral.py”</div></div></div></div><div data-w-tab="Tab 7" class="tab-code-snippet w-tab-pane"><div class="code-snippet-tab-wrap"><div class="code-snippet-tab-code"><div class="code-snippet-rows"> 1<br/> 2<br/> 3<br/> 4<br/> 5<br/> 6<br/> 7<br/> 8<br/> 9<br/> 10<br/> 11<br/> 12<br/> 13<br/> 14<br/> 15<br/> 16<br/> 17<br/> 18<br/> 19<br/> 20<br/> 21<br/> 22<br/> 23<br/> 24<br/> 25<span class="code-snippet-rows empty"></span><span class="code-snippet-rows empty"><br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/></span></div><pre contenteditable="false" class="hp-code-block w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-python" style="white-space:pre"><span style="color:#d4d0ab"># pip install ollama</span><span>
</span><span></span><span style="color:#dcc6e0">import</span><span> ollama
</span><span></span><span style="color:#dcc6e0">from</span><span> e2b_code_interpreter </span><span style="color:#dcc6e0">import</span><span> Sandbox
</span>
<span></span><span style="color:#d4d0ab"># Send the prompt to the model</span><span>
</span><span>response = ollama.chat(model=</span><span style="color:#abe338">"llama3.2"</span><span>, messages=[
</span> {
<span> </span><span style="color:#abe338">"role"</span><span>: </span><span style="color:#abe338">"system"</span><span>,
</span><span> </span><span style="color:#abe338">"content"</span><span>: </span><span style="color:#abe338">"You are a helpful assistant that can execute python code in a Jupyter notebook. Only respond with the code to be executed and nothing else. Strip backticks in code blocks."</span><span>
</span> },
{
<span> </span><span style="color:#abe338">"role"</span><span>: </span><span style="color:#abe338">"user"</span><span>,
</span><span> </span><span style="color:#abe338">"content"</span><span>: </span><span style="color:#abe338">"Calculate how many r's are in the word 'strawberry'"</span><span>
</span> }
])
<span></span><span style="color:#d4d0ab"># Extract the code from the response</span><span>
</span><span>code = response[</span><span style="color:#abe338">'message'</span><span>][</span><span style="color:#abe338">'content'</span><span>]
</span>
<span></span><span style="color:#d4d0ab"># Execute code in E2B Sandbox</span><span>
</span><span></span><span style="color:#dcc6e0">with</span><span> Sandbox() </span><span style="color:#dcc6e0">as</span><span> sandbox:
</span> execution = sandbox.run_code(code)
result = execution.logs.stdout
<span></span><span style="color:#f5ab35">print</span><span>(result)</span></code></pre></div><div class="code-snippet-tab-note"><div class="label code-snippet-note">“~/llama.py”</div></div></div></div><div data-w-tab="Tab 8" class="tab-code-snippet w-tab-pane"><div class="code-snippet-tab-wrap"><div class="code-snippet-tab-code"><div class="code-snippet-rows"> 1<br/> 2<br/> 3<br/> 4<br/> 5<br/> 6<br/> 7<br/> 8<br/> 9<br/> 10<br/> 11<br/> 12<br/> 13<br/> 14<br/> 15<br/> 16<br/> 17<br/> 18<br/> 19<br/> 20<br/> 21<br/> 22<br/> 23<br/> 24<br/> 25<br/> 26<br/> 27<br/> 28<br/> 29<br/> 30<span class="code-snippet-rows empty"></span><span class="code-snippet-rows empty"><br/>~<br/>~<br/>~<br/>~<br/>~<br/></span></div><pre contenteditable="false" class="hp-code-block w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-python" style="white-space:pre"><span style="color:#d4d0ab"># pip install langchain langchain-openai e2b-code-interpreter</span><span>
</span><span></span><span style="color:#dcc6e0">from</span><span> langchain_openai </span><span style="color:#dcc6e0">import</span><span> ChatOpenAI
</span><span></span><span style="color:#dcc6e0">from</span><span> langchain_core.prompts </span><span style="color:#dcc6e0">import</span><span> ChatPromptTemplate
</span><span></span><span style="color:#dcc6e0">from</span><span> langchain_core.output_parsers </span><span style="color:#dcc6e0">import</span><span> StrOutputParser
</span><span></span><span style="color:#dcc6e0">from</span><span> e2b_code_interpreter </span><span style="color:#dcc6e0">import</span><span> Sandbox
</span>
<span>system_prompt = </span><span style="color:#abe338">"You are a helpful assistant that can execute python code in a Jupyter notebook. Only respond with the code to be executed and nothing else. Strip backticks in code blocks."</span><span>
</span><span>prompt = </span><span style="color:#abe338">"Calculate how many r's are in the word 'strawberry'"</span><span>
</span>
<span></span><span style="color:#d4d0ab"># Create LangChain components</span><span>
</span><span>llm = ChatOpenAI(model=</span><span style="color:#abe338">"gpt-4o"</span><span>)
</span>prompt_template = ChatPromptTemplate.from_messages([
<span> (</span><span style="color:#abe338">"system"</span><span>, system_prompt),
</span><span> (</span><span style="color:#abe338">"human"</span><span>, </span><span style="color:#abe338">"{input}"</span><span>)
</span>])
output_parser = StrOutputParser()
<span></span><span style="color:#d4d0ab"># Create the chain</span><span>
</span>chain = prompt_template | llm | output_parser
<span></span><span style="color:#d4d0ab"># Run the chain</span><span>
</span><span>code = chain.invoke({</span><span style="color:#abe338">"input"</span><span>: prompt})
</span>
<span></span><span style="color:#d4d0ab"># Execute code in E2B Sandbox</span><span>
</span><span></span><span style="color:#dcc6e0">with</span><span> Sandbox() </span><span style="color:#dcc6e0">as</span><span> sandbox:
</span> execution = sandbox.run_code(code)
result = execution.text
<span></span><span style="color:#f5ab35">print</span><span>(result)</span></code></pre></div><div class="code-snippet-tab-note"><div class="label code-snippet-note">“~/lchain.py”</div></div></div></div><div data-w-tab="Tab 9" class="tab-code-snippet w-tab-pane"><div class="code-snippet-tab-wrap"><div class="code-snippet-tab-code"><div class="code-snippet-rows"> 1<br/> 2<br/> 3<br/> 4<br/> 5<br/> 6<br/> 7<br/> 8<br/> 9<br/> 10<br/> 11<br/> 12<br/> 13<br/> 14<br/> 15<br/> 16<br/> 17<br/> 18<br/> 19<br/> 20<br/> 21<br/> 22<br/> 23<br/><span class="code-snippet-rows empty">~</span><span class="code-snippet-rows empty"><br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/>~<br/></span></div><pre contenteditable="false" class="hp-code-block w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-python" style="white-space:pre"><span style="color:#dcc6e0">from</span><span> llama_index.core.tools </span><span style="color:#dcc6e0">import</span><span> FunctionTool
</span><span></span><span style="color:#dcc6e0">from</span><span> llama_index.llms.openai </span><span style="color:#dcc6e0">import</span><span> OpenAI
</span><span></span><span style="color:#dcc6e0">from</span><span> llama_index.core.agent </span><span style="color:#dcc6e0">import</span><span> ReActAgent
</span><span></span><span style="color:#dcc6e0">from</span><span> e2b_code_interpreter </span><span style="color:#dcc6e0">import</span><span> Sandbox
</span>
<span></span><span style="color:#d4d0ab"># Define the tool</span><span>
</span><span></span><span class="hljs-function" style="color:#dcc6e0">def</span><span class="hljs-function"> </span><span class="hljs-function" style="color:#00e0e0">execute_python</span><span class="hljs-function">(</span><span class="hljs-function" style="color:#f5ab35">code: </span><span class="hljs-function" style="color:#f5ab35">str</span><span class="hljs-function">):</span><span>
</span><span> </span><span style="color:#dcc6e0">with</span><span> Sandbox() </span><span style="color:#dcc6e0">as</span><span> sandbox:
</span> execution = sandbox.run_code(code)
<span> </span><span style="color:#dcc6e0">return</span><span> execution.text
</span>
e2b_interpreter_tool = FunctionTool.from_defaults(
<span> name=</span><span style="color:#abe338">"execute_python"</span><span>,
</span><span> description=</span><span style="color:#abe338">"Execute python code in a Jupyter notebook cell and return result"</span><span>,
</span> fn=execute_python
)
<span></span><span style="color:#d4d0ab"># Initialize LLM</span><span>
</span><span>llm = OpenAI(model=</span><span style="color:#abe338">"gpt-4o"</span><span>)
</span>
<span></span><span style="color:#d4d0ab"># Initialize ReAct agent</span><span>
</span><span>agent = ReActAgent.from_tools([e2b_interpreter_tool], llm=llm, verbose=</span><span style="color:#f5ab35">True</span><span>)
</span><span>agent.chat(</span><span style="color:#abe338">"Calculate how many r's are in the word 'strawberry'"</span><span>)</span></code></pre></div><div class="code-snippet-tab-note"><div class="label code-snippet-note">“~/llindex.py”</div></div></div></div><div data-w-tab="Tab 10" class="tab-code-snippet w-tab-pane"></div></div></div></div><div class="divider-tall"><div class="bg-dotted divider"></div></div><div class="s-features"><div class="s-cover"><div class="s-cover-title"><div class="section-label"><div class="label">[</div><div class="label">FEATURES</div><div class="label">]</div></div><div class="wrap-h"><div class="h-features"><div style="display:block" class="h2 float s-1">FEATURES</div><div style="display:none" class="h2 float s-2">FE4TUR3S</div><div style="display:none" class="h2 float s-3">FEA–U?E5</div><div style="display:none" class="h2 float s-4">FE^TURES</div><div style="display:none" class="h2 float s-5">FEA+UR3S</div></div><h2 class="h2">FEATURES FOR THE<br/>llm-powered DEVELOPERs</h2></div><div class="p perex s-features">We built E2B with the next generation of developers in mind — software engineering AI agents.</div></div><div class="label float-l-t">> MADE FOR AI</div><div class="label float-r-b">> DSCVR ALL (↓↓)</div></div><div class="s-features-grid"><div id="w-node-c80212bd-ba2e-543a-7177-bfcf156db085-53ac292f" class="feature-wide-tall"><div class="f-anyllm-wrap"><div class="icon-anyllm openai"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.6812 10.1859C21.141 8.82399 20.9827 7.33208 20.2473 6.09331C19.1413 4.19326 16.9181 3.21574 14.7468 3.67575C13.7808 2.60198 12.393 1.99134 10.9381 2.00009C8.71859 1.99509 6.74932 3.40512 6.0665 5.48892C4.6407 5.77705 3.40998 6.65769 2.6898 7.90584C1.57563 9.80088 1.82963 12.1897 3.31814 13.8147C2.85828 15.1766 3.01664 16.6685 3.75202 17.9073C4.85796 19.8073 7.08123 20.7849 9.25255 20.3249C10.2179 21.3986 11.6063 22.0093 13.0612 21.9999C15.282 22.0055 17.2519 20.5942 17.9347 18.5086C19.3605 18.2204 20.5912 17.3398 21.3114 16.0916C22.4243 14.1966 22.1697 11.8097 20.6818 10.1846L20.6812 10.1859ZM13.0625 20.693C12.1738 20.6942 11.313 20.3874 10.6309 19.8255C10.6619 19.8092 10.7157 19.7798 10.7506 19.7586L14.7867 17.4585C14.9931 17.3429 15.1198 17.126 15.1186 16.8917V11.2772L16.8243 12.2491C16.8427 12.2578 16.8547 12.2753 16.8573 12.2953V16.9448C16.8547 19.0123 15.1578 20.6886 13.0625 20.693ZM4.90166 17.2535C4.45638 16.4948 4.29612 15.6054 4.44878 14.7422C4.47855 14.7597 4.53112 14.7916 4.56849 14.8129L8.60458 17.1129C8.80917 17.231 9.06253 17.231 9.26776 17.1129L14.1951 14.3054V16.2491C14.1963 16.2691 14.1868 16.2885 14.171 16.301L10.0912 18.6254C8.27394 19.658 5.95312 19.0442 4.9023 17.2535H4.90166ZM3.83943 8.56023C4.28282 7.80022 4.98274 7.21895 5.81631 6.91707C5.81631 6.95145 5.81441 7.01207 5.81441 7.05458V11.6553C5.81314 11.8891 5.93982 12.1059 6.14568 12.2216L11.073 15.0285L9.3672 16.0004C9.3501 16.0116 9.32856 16.0135 9.30956 16.0054L5.22914 13.6791C3.41568 12.6428 2.79368 10.3534 3.8388 8.56086L3.83943 8.56023ZM17.8543 11.7784L12.927 8.97087L14.6327 7.9996C14.6498 7.98835 14.6714 7.98647 14.6904 7.9946L18.7708 10.319C20.5874 11.3547 21.2101 13.6478 20.1605 15.4404C19.7165 16.1991 19.0172 16.7804 18.1843 17.0829V12.3447C18.1862 12.1109 18.0601 11.8947 17.8549 11.7784H17.8543ZM19.5518 9.25712C19.522 9.239 19.4695 9.20775 19.4321 9.1865L15.396 6.88645C15.1914 6.76832 14.938 6.76832 14.7328 6.88645L9.80552 9.69401V7.75022C9.80425 7.73022 9.81376 7.71084 9.82959 7.69834L13.9094 5.37579C15.7266 4.34139 18.05 4.95703 19.0976 6.75082C19.5404 7.50834 19.7006 8.39523 19.5505 9.25712H19.5518ZM8.87821 12.7216L7.1718 11.7497C7.15343 11.7409 7.1414 11.7234 7.13887 11.7034V7.05395C7.14013 4.98391 8.84211 3.30637 10.94 3.30762C11.8274 3.30762 12.6863 3.61513 13.3685 4.17514C13.3374 4.19139 13.2842 4.22077 13.2487 4.24202L9.21265 6.54206C9.00616 6.65769 8.87948 6.87395 8.88074 7.10833L8.87821 12.7203V12.7216ZM9.80489 10.7503L11.9997 9.49963L14.1944 10.7497V13.2503L11.9997 14.5004L9.80489 13.2503V10.7503Z" fill="currentColor" />
</svg></div></div><div class="icon-anyllm meta"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.33875 4.69428C5.53475 4.69428 3.96267 5.86761 2.87367 7.54786C1.64533 9.44078 1 11.8929 1 14.245C1 14.8922 1.06417 15.4999 1.1925 16.0536C1.25551 16.3216 1.33667 16.585 1.43542 16.8419C1.52998 17.0832 1.64371 17.3164 1.7755 17.5395C2.4135 18.6019 3.442 19.3059 5.06908 19.3059C6.44133 19.3059 7.48267 18.6909 8.70367 17.0656C9.40033 16.1379 9.75233 15.5751 11.1448 13.1056L11.8378 11.8782L12.0083 11.5803C12.0642 11.6719 12.1192 11.7599 12.176 11.8553L14.1487 15.1507C14.8123 16.2599 15.6749 17.4937 16.4128 18.1885C17.3717 19.0933 18.2388 19.3069 19.2178 19.3069C20.2033 19.3069 20.9375 18.9814 21.4683 18.5341C21.7646 18.2811 22.0157 17.9795 22.2108 17.6422C22.7076 16.7814 23 15.6924 23 14.2093C23 11.7159 22.3758 9.29869 21.0897 7.38011C19.9145 5.62744 18.3791 4.69428 16.7667 4.69428C15.8069 4.69428 14.8527 5.12236 13.9681 5.89328C13.3704 6.41578 12.8158 7.07578 12.2998 7.77244C11.6672 6.97036 11.076 6.35436 10.5049 5.88778C9.42142 5.00228 8.38283 4.69336 7.33875 4.69336V4.69428ZM16.6521 6.57619C17.7035 6.57619 18.6577 7.27103 19.3948 8.40861C20.4324 10.0109 20.9045 12.254 20.9045 14.2753C20.9045 15.6943 20.5672 16.9336 19.2188 16.9336C18.6871 16.9336 18.2773 16.7228 17.6934 16.0133C17.2388 15.4624 16.4623 14.2918 15.0974 12.0184L14.5318 11.0761C14.1642 10.4612 13.7806 9.856 13.3814 9.26111C13.4456 9.16119 13.5107 9.05578 13.5748 8.96136C14.6015 7.43328 15.5154 6.57619 16.6521 6.57619ZM7.30117 7.08311C8.46075 7.08311 9.18767 7.80819 9.75325 8.40861C10.0347 8.70836 10.4288 9.20703 10.8844 9.85603L9.94942 11.2915C9.2555 12.3576 8.22425 14.0571 7.34883 15.268C6.25708 16.7796 5.68967 16.9336 5.07 16.9336C4.58967 16.9336 4.1185 16.7164 3.80225 16.2058C3.56117 15.8153 3.37692 15.1699 3.37692 14.3303C3.37692 12.2944 3.95442 10.1732 4.89858 8.74961C5.31475 8.11986 5.78225 7.62578 6.30383 7.34436C6.60901 7.17477 6.95204 7.08492 7.30117 7.08311Z" fill="currentColor" />
</svg></div></div><div class="icon-anyllm gemini"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0399 19.32C11.6801 20.78 12.0002 22.34 12.0002 24C12.0002 22.34 12.3101 20.78 12.9302 19.32C13.5699 17.86 14.43 16.59 15.5099 15.51C16.5903 14.43 17.86 13.58 19.32 12.96C20.78 12.32 22.3403 12 24 12C22.3403 12 20.78 11.69 19.32 11.07C17.86 10.43 16.5903 9.57 15.5099 8.49003C14.43 7.41 13.5699 6.14001 12.9302 4.68C12.3101 3.22 12.0002 1.66 12.0002 0C12.0002 1.66 11.6801 3.22 11.0399 4.68C10.4202 6.14001 9.57 7.41 8.49011 8.49003C7.41021 9.57 6.14003 10.43 4.68002 11.07C3.22001 11.69 1.66015 12 0 12C1.66015 12 3.22001 12.32 4.68002 12.96C6.14003 13.58 7.41021 14.43 8.49011 15.51C9.57 16.59 10.4202 17.86 11.0399 19.32Z" fill="currentColor"/>
</svg></div></div><div class="icon-anyllm mistral"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3.25" y="3.25" width="3.5" height="3.5" fill="var(--color--content-primary)" />
<rect x="3.25" y="6.75" width="7" height="3.5" fill="var(--color--content-dark80)" />
<rect x="3.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="3.25" y="17.25" width="3.5" height="3.5" fill="var(--color--content-dark20)" />
<rect x="3.25" y="10.25" width="17.5" height="3.5" fill="var(--color--content-dark60)" />
<rect x="10.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="13.75" y="6.75" width="7" height="3.5" fill="var(--color--content-dark80)" />
<rect x="17.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="17.25" y="17.25" width="3.5" height="3.5" fill="var(--color--content-dark20)" />
<rect x="17.25" y="3.25" width="3.5" height="3.5" fill="var(--color--content-primary)" />
</svg></div></div><div class="icon-anyllm anthropic"><div class="icon-24 w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.5225 5.12646L18.9978 18.8597H22.0004L16.5251 5.12646H13.5225Z" fill="currentColor" />
<path d="M7.17076 13.4252L9.04426 8.59899L10.9178 13.4252H7.17076ZM7.47451 5.12646L2 18.8597H5.06101L6.18064 15.9757H11.9081L13.0275 18.8597H16.0885L10.614 5.12646H7.47451Z" fill="currentColor" />
</svg></div></div><div class="icon-anyllm hugg"><div class="icon-24 w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_7415_8314)">
<path d="M1.44458 11.5061C1.44458 12.6082 1.61188 13.6646 1.92928 14.6624C1.89148 14.6596 1.86018 14.6566 1.82348 14.6566C1.40258 14.6566 1.02198 14.8166 0.753082 15.1078C0.407682 15.4815 0.254682 15.9413 0.321482 16.4008C0.351765 16.6126 0.42485 16.816 0.536282 16.9986C0.304382 17.185 0.134482 17.4442 0.0518818 17.7564C-0.0127182 18.0012 -0.0791182 18.5107 0.266782 19.0358C0.244475 19.0701 0.223624 19.1053 0.204282 19.1413C-0.00371818 19.5336 -0.0164182 19.9785 0.167182 20.3913C0.445482 21.0171 1.13678 21.5088 2.47978 22.038C3.31538 22.3672 4.07858 22.5791 4.08538 22.581C5.18998 22.8657 6.18938 23.0087 7.05438 23.0087C8.47168 23.0087 9.52978 22.6238 10.2069 21.8641C11.7449 22.1292 12.9979 22.0044 13.7989 21.8701C14.4762 22.6256 15.5321 23.0088 16.9456 23.0088C17.8105 23.0088 18.8099 22.8658 19.9146 22.581C19.9214 22.5791 20.6846 22.3672 21.5202 22.038C22.8632 21.5088 23.5545 21.0172 23.8328 20.3914C24.0164 19.9785 24.0038 19.5337 23.7958 19.1414C23.7764 19.1053 23.7555 19.0701 23.7332 19.0358C24.0792 18.5108 24.0127 18.0012 23.9481 17.7565C23.8655 17.4443 23.6956 17.1851 23.4637 16.9986C23.5737 16.817 23.6468 16.6198 23.6785 16.4009C23.7454 15.9414 23.5923 15.4816 23.2469 15.1079C22.9781 14.8166 22.5974 14.6566 22.1765 14.6566C22.1556 14.6566 22.1389 14.6574 22.1177 14.6584C22.4339 13.6618 22.6023 12.6066 22.6023 11.5061C22.6023 5.6991 17.8661 0.991699 12.0234 0.991699C6.18078 0.991699 1.44458 5.699 1.44458 11.5061ZM12.0234 2.023C17.2961 2.023 21.571 6.269 21.571 11.506C21.5709 12.2596 21.4804 13.0105 21.3014 13.7425C21.2975 13.7378 21.2935 13.7315 21.2897 13.7269C21.0157 13.4014 20.6218 13.221 20.1822 13.221C19.8302 13.221 19.4682 13.3365 19.1059 13.5648C18.8656 13.7165 18.6001 13.9868 18.3266 14.3246C18.0732 13.9754 17.7186 13.7414 17.3129 13.6781C17.2353 13.6662 17.157 13.6603 17.0785 13.6605C16.1522 13.6605 15.5957 14.4598 15.385 15.1782C15.2804 15.4208 14.7785 16.5264 14.0236 17.276C12.8555 18.4361 12.5778 19.6294 13.184 20.9142C12.341 21.0171 11.6004 21.0069 10.819 20.9082C11.4096 19.6962 11.1816 18.4694 9.97638 17.276C9.22138 16.5264 8.71958 15.4208 8.61498 15.1782C8.40428 14.4598 7.84768 13.6605 6.92148 13.6605C6.84348 13.6605 6.76468 13.6659 6.68708 13.6781C6.28138 13.7414 5.92668 13.9754 5.67338 14.3246C5.39988 13.9867 5.13438 13.7165 4.89398 13.5648C4.53178 13.3365 4.16968 13.221 3.81778 13.221C3.39118 13.221 3.00838 13.392 2.73568 13.6996C2.56336 12.9811 2.47616 12.2449 2.47588 11.506C2.47588 6.269 6.75078 2.023 12.0234 2.023ZM8.64428 7.0038C8.16048 7.0081 7.69398 7.2705 7.45088 7.7265C7.09728 8.3898 7.35028 9.2138 8.01538 9.5665C8.36638 9.7527 8.50368 9.0404 8.85138 8.918C9.16208 8.8085 9.69238 9.317 9.85918 9.004C10.2128 8.3406 9.96168 7.5166 9.29668 7.164C9.09594 7.05712 8.87169 7.00206 8.64428 7.0038ZM15.4846 7.0038C15.2647 7.0018 15.042 7.0538 14.8342 7.164C14.1692 7.5166 13.9161 8.3406 14.2697 9.004C14.4366 9.317 14.9668 8.8085 15.2776 8.918C15.6252 9.0404 15.7643 9.7527 16.1156 9.5665C16.7805 9.2138 17.0316 8.3898 16.678 7.7265C16.435 7.2705 15.9684 7.0081 15.4846 7.0038ZM5.72808 8.4218C5.61291 8.42177 5.49885 8.44444 5.39244 8.4885C5.28602 8.53257 5.18933 8.59717 5.10789 8.67861C5.02645 8.76005 4.96185 8.85674 4.91779 8.96315C4.87372 9.06957 4.85106 9.18362 4.85108 9.2988C4.85108 9.7834 5.24358 10.1758 5.72808 10.1758C5.84326 10.1758 5.95731 10.1532 6.06373 10.1091C6.17014 10.065 6.26683 10.0004 6.34827 9.91899C6.42972 9.83755 6.49431 9.74086 6.53838 9.63444C6.58244 9.52803 6.60511 9.41398 6.60508 9.2988C6.60511 9.18362 6.58244 9.06957 6.53838 8.96315C6.49431 8.85674 6.42972 8.76005 6.34827 8.67861C6.26683 8.59717 6.17014 8.53257 6.06373 8.4885C5.95731 8.44444 5.84326 8.42177 5.72808 8.4218ZM18.3715 8.4218C17.887 8.4218 17.4925 8.8143 17.4925 9.2988C17.4925 9.7834 17.887 10.1758 18.3715 10.1758C18.4867 10.1758 18.6007 10.1532 18.7071 10.1091C18.8135 10.065 18.9102 10.0004 18.9917 9.91899C19.0731 9.83755 19.1377 9.74086 19.1818 9.63444C19.2258 9.52803 19.2485 9.41398 19.2485 9.2988C19.2485 9.18362 19.2258 9.06957 19.1818 8.96315C19.1377 8.85674 19.0731 8.76005 18.9917 8.67861C18.9102 8.59717 18.8135 8.53257 18.7071 8.4885C18.6007 8.44444 18.4867 8.42177 18.3715 8.4218ZM8.79268 11.4592C8.61368 11.4562 8.51338 11.5699 8.51338 11.8752C8.51338 12.6849 8.90078 14.0002 9.94128 14.7992C10.1483 14.0869 11.2866 13.516 11.4492 13.598C11.6807 13.7147 11.6683 14.0397 12.0566 14.3246C12.445 14.0396 12.4306 13.7148 12.6622 13.598C12.8249 13.516 13.9631 14.0869 14.1701 14.7992C15.2105 14.0002 15.5979 12.6848 15.5979 11.8752C15.5979 10.654 14.0149 12.5154 12.0566 12.5237C10.588 12.5176 9.32998 11.4679 8.79268 11.4592ZM4.31198 14.477C4.89118 14.842 6.00838 16.7521 6.41758 17.4947C6.55468 17.7435 6.78858 17.8483 6.99958 17.8483C7.41838 17.8483 7.74608 17.4345 7.03868 16.9088C5.97508 16.1178 6.34728 14.8242 6.85508 14.7446C6.87708 14.7416 6.89928 14.7402 6.92148 14.7406C7.38308 14.7406 7.58748 15.5298 7.58748 15.5298C7.58748 15.5298 8.18338 17.0196 9.20878 18.0378C10.1508 18.9734 10.2708 19.7408 9.70488 20.7039C9.68848 20.6999 9.68898 20.7275 9.55648 20.9188C9.37118 21.1861 9.12428 21.3876 8.83768 21.534C8.33148 21.7609 7.69798 21.8036 7.05438 21.8036C6.01738 21.8036 4.95268 21.6212 4.35688 21.4676C4.32758 21.4601 0.706382 20.5109 1.16528 19.6452C1.24238 19.4998 1.36858 19.4421 1.52858 19.4421C2.17488 19.4421 3.35158 20.3972 3.85688 20.3972C3.96988 20.3972 4.05288 20.3107 4.08538 20.1941C4.31028 19.3896 0.806682 19.1419 1.10078 18.0299C1.15268 17.8332 1.29378 17.7542 1.49148 17.7545C2.34548 17.7545 4.26188 19.2468 4.66348 19.2468C4.69418 19.2468 4.71598 19.2383 4.72798 19.2194C4.92918 18.8967 4.83758 18.6329 3.41928 17.7799C2.00108 16.9266 0.987782 16.4509 1.55398 15.8383C1.61908 15.7676 1.71138 15.7368 1.82348 15.7368C2.68458 15.737 4.71828 17.5768 4.71828 17.5768C4.71828 17.5768 5.26698 18.1451 5.59918 18.1451C5.67538 18.1451 5.74078 18.1136 5.78468 18.0397C6.02018 17.6451 3.59888 15.8214 3.46228 15.0687C3.36968 14.5587 3.52638 14.3011 3.81778 14.3011C3.81718 14.3091 3.98788 14.2726 4.31198 14.477ZM20.5377 15.0688C20.4011 15.8214 17.9798 17.6452 18.2153 18.0397C18.2593 18.1137 18.3245 18.1452 18.4008 18.1452C18.7329 18.1452 19.2818 17.5768 19.2818 17.5768C19.2818 17.5768 21.3154 15.7371 22.1765 15.7368C22.2886 15.7368 22.3809 15.7676 22.446 15.8384C23.0122 16.4509 21.999 16.9266 20.5807 17.7799C19.1624 18.6329 19.0707 18.8967 19.272 19.2195C19.284 19.2383 19.3057 19.2468 19.3364 19.2468C19.738 19.2468 21.6545 17.7545 22.5085 17.7545C22.7062 17.7543 22.8473 17.8332 22.8992 18.0299C23.1932 19.1419 19.6897 19.3896 19.9146 20.1941C19.9471 20.3107 20.0302 20.3973 20.1431 20.3973C20.6485 20.3973 21.8251 19.4421 22.4714 19.4421C22.6314 19.4421 22.7576 19.4998 22.8347 19.6453C23.2937 20.5109 19.6724 21.4602 19.6431 21.4677C19.0473 21.6212 17.9826 21.8037 16.9456 21.8037C16.3105 21.8037 15.6846 21.7628 15.1818 21.5438C14.8869 21.3966 14.633 21.1922 14.4435 20.9188C14.4024 20.8506 14.3409 20.7712 14.3009 20.7138C13.7283 19.7459 13.8459 18.9767 14.7912 18.0378C15.8166 17.0196 16.4124 15.5298 16.4124 15.5298C16.4124 15.5298 16.6168 14.7407 17.0784 14.7407C17.1006 14.7403 17.1228 14.7416 17.1449 14.7446C17.6527 14.8242 18.0249 16.1178 16.9613 16.9088C16.2539 17.4345 16.5816 17.8483 17.0003 17.8483C17.2113 17.8483 17.4453 17.7436 17.5824 17.4948C17.9916 16.7522 19.1088 14.8421 19.688 14.477C20.2468 14.1246 20.678 14.2954 20.5377 15.0688Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_7415_8314">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg></div></div><div class="icon-anyllm any"><div class="icon-24 w-embed"><svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" style="width:100%;height:100%" width="24" height="24"><defs>
<svg viewBox="0 0 24 24" id="svg11345710118">
<path d="M 12 3.917 L 12 20.083 M 19 7.958 L 5 16.041 M 5 7.958 L 19 16.041" fill="#000000" stroke-width="2px" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="" fill-opacity="0"></path></svg></defs><g><path d="M 12 3.917 L 12 20.083 M 19 7.958 L 5 16.041 M 5 7.958 L 19 16.041" fill="#currentColor" stroke-width="2px" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="" fill-opacity="0"></path></g>
</svg></div></div></div><div class="features-text f-self-hosting"><h3 class="h3-features with-margin">Works with any LLM</h3><div class="p small centred">Use OpenAI, Llama, Anthropic, Mistral, or your<br/>own custom models. E2B is LLM-agnostic<br/>and compatible with any model.</div></div><div class="f-anyllm w-embed"><svg width="100%" height="100%" viewBox="0 0 601 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="601" cy="512" r="216" stroke="currentColor" style="stroke:currentColor;stroke-opacity:1;" stroke-width="1.35" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0.15 8"/>
<circle cx="601" cy="512" r="344" stroke="currentColor" style="stroke:currentColor;stroke-opacity:1;" stroke-width="1.35" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0.15 8"/>
<circle cx="601" cy="512" r="472" stroke="currentColor" style="stroke:currentColor;stroke-opacity:1;" stroke-width="1.35" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0.15 8"/>
<circle cx="601" cy="512" r="600" stroke="currentColor" style="stroke:currentColor;stroke-opacity:1;" stroke-width="1.35" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0.15 8"/>
</svg></div></div><div id="w-node-_657345fd-e1b2-0f3c-3ec9-5ba3b50884a9-53ac292f" class="feature-wide-tall hide-desktop"><div class="f-quickstart"><div class="icon-quickstart w-embed"><svg width="262" height="73" viewBox="0 0 262 73" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="22.5" width="261" height="29" stroke="currentColor"/>
<rect x="3.5" y="25.5" width="255" height="23" stroke="currentColor"/>
<rect x="8" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="13" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="18" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="23" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="28" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="33" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="38" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="43" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="48" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="53" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="58" y="30" width="1" height="14" fill="var(--color--content-positive)"/>
<rect x="63" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="68" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="73" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="78" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="83" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="88" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="93" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="98" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="103" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="108" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="113" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="118" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="123" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="128" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="133" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="138" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="143" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="148" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="153" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="158" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="163" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="168" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="173" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="178" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="183" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="188" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>
<rect x="193" y="30" width="1" height="14" fill="currentColor" fill-opacity="0.1"/>