forked from stitchfix/algorithms-tour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·9989 lines (9050 loc) · 747 KB
/
index.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>
<html class="js flexbox borderradius fontface">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Stitch Fix Algorithms Tour" />
<meta property="og:description" content="How data science is woven into the fabric of Stitch Fix." />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://algorithms-tour.stitchfix.com/" />
<meta property="og:image" content="http://algorithms-tour.stitchfix.com/img/social/algorithms-tour.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@stitchfix_algo" />
<meta name="twitter:image" content="http://algorithms-tour.stitchfix.com/img/social/algorithms-tour.png" />
<title>Stitch Fix Algorithms Tour</title>
<link rel="shortcut icon" type="image/x-icon" href="img/multithreaded-site/favicon.ico">
<script src="js/multithreaded-site/modernizr.custom.51181.js"></script>
<script>
var RimgOptions = {
breakpoint:
'-tiny 320w 1x, -tiny-retina 320w 2x,' +
'-small 480w 1x, -small-retina 480w 2x,' +
'-medium 600w 1x, -medium-retina 600w 2x,' +
'-regular 768w 1x, -regular-retina 768w 2x,' +
'-large 1024w 1x, -large-retina 1024w 2x,' +
'-huge 1200w 1x, -huge-retina 1200w 2x'
}
</script>
<script src="js/multithreaded-site/rimg.min.js"></script>
<link rel="stylesheet" href="css/multithreaded-main.css">
<link rel="stylesheet" href="css/scrolling_animation.css">
</head>
<body>
<div id="small-screen-note-turn-sideways">
<div id="small-screen-note-turn-sideways-close">x</div>
<p>Psst. It's better sideways.</p>
<p>(Try me in landscape!)</p>
</div>
<!-- multithreaded page header -->
<nav class="global-nav">
<ul class="hidden-gtxs list-flex">
<li>
<a href="http://multithreaded.stitchfix.com/" class="logo global-nav__item global-nav__item--logo left">
<img src="img/multithreaded-site/logomark.svg" alt="Stitch Fix logomark">
</a>
</li>
<li class="nav-tweet-the-tour">
<a href="https://twitter.com/intent/tweet?text=An%20animated%20tour%20of%20Stitch%20Fix%20Algorithms%3A&url=http%3A%2F%2Falgorithms-tour.stitchfix.com&via=stitchfix_algo" target="_" class="logo global-nav__item global-nav__item--logo left">
<img src="img/social/tweet-the-tour.svg" alt="tweet the tour">
</a>
</li>
<li class="nav-tweet-the-tour-sm">
<a href="https://twitter.com/intent/tweet?text=An%20animated%20tour%20of%20Stitch%20Fix%20Algorithms%3A&url=http%3A%2F%2Falgorithms-tour.stitchfix.com&via=stitchfix_algo" target="_" class="logo global-nav__item global-nav__item--logo left">
<img src="img/social/tweet-the-tour-sm.svg" alt="tweet the tour">
</a>
</li>
<li class="flex-4 nav-algorithms-tour">
<a href="http://multithreaded.stitchfix.com/engineering" class="global-nav__item ">
Engineering
</a>
</li>
<li class="flex-3 nav-tour">
<a href="http://multithreaded.stitchfix.com/engineering" class="global-nav__item ">
Eng
</a>
</li>
<li class="flex-4 nav-algorithms-tour">
<a href="http://multithreaded.stitchfix.com/algorithms" class="global-nav__item ">
Algorithms
</a>
</li>
<li class="flex-3 nav-tour">
<a href="http://multithreaded.stitchfix.com/algorithms" class="global-nav__item ">
Algo
</a>
</li>
<li class="flex-3 nav-algorithms-tour">
<a href="http://algorithms-tour.stitchfix.com/" class="global-nav__item current">
Algorithms Tour
</a>
</li>
<li class="flex-3 nav-tour">
<a href="http://algorithms-tour.stitchfix.com/" class="global-nav__item current">
Tour
</a>
</li>
<li class="flex-3 nav-algorithms-tour">
<a href="http://cultivating-algos.stitchfix.com/" class="global-nav__item">
Cultivating Algos
</a>
</li>
<li class="flex-3 nav-tour">
<a href="http://cultivating-algos.stitchfix.com/" class="global-nav__item">
Garden
</a>
</li>
<li class="flex-3">
<a href="http://multithreaded.stitchfix.com/careers" class="global-nav__item ">
Careers
</a>
</li>
<li class="flex-3">
<a href="http://multithreaded.stitchfix.com/blog" class="global-nav__item">
Blog
</a>
</li>
</ul>
<div class="hidden-xs container flex">
<a href="http://multithreaded.stitchfix.com/" class="logo global-nav__item global-nav__item--logo left">
<img src="img/multithreaded-site/logov5.svg" alt="Stitch Fix logo">
</a>
<a href="https://twitter.com/intent/tweet?text=An%20animated%20tour%20of%20Stitch%20Fix%20Algorithms%3A&url=http%3A%2F%2Falgorithms-tour.stitchfix.com&via=stitchfix_algo" target="_" class="logo global-nav__item global-nav__item--logo left nav-tweet-the-tour">
<img src="img/social/tweet-the-tour.svg" alt="tweet the tour">
</a>
<a href="https://twitter.com/intent/tweet?text=An%20animated%20tour%20of%20Stitch%20Fix%20Algorithms%3A&url=http%3A%2F%2Falgorithms-tour.stitchfix.com&via=stitchfix_algo" target="_" class="logo global-nav__item global-nav__item--logo left nav-tweet-the-tour-sm">
<img src="img/social/tweet-the-tour-sm.svg" alt="tweet the tour">
</a>
<div class="right">
<a href="http://multithreaded.stitchfix.com/engineering" class="global-nav__item nav-algorithms-tour">
Engineering
</a>
<a href="http://multithreaded.stitchfix.com/engineering" class="global-nav__item nav-tour">
Eng
</a>
<a href="http://multithreaded.stitchfix.com/algorithms" class="global-nav__item nav-algorithms-tour">
Algorithms
</a>
<a href="http://multithreaded.stitchfix.com/algorithms" class="global-nav__item nav-tour">
Algo
</a>
<a href="http://algorithms-tour.stitchfix.com" class="global-nav__item current nav-algorithms-tour">
Algorithms Tour
</a>
<a href="http://algorithms-tour.stitchfix.com" class="global-nav__item current nav-tour">
Tour
</a>
<a href="http://cultivating-algos.stitchfix.com" class="global-nav__item nav-algorithms-tour">
Cultivating Algos
</a>
<a href="http://cultivating-algos.stitchfix.com" class="global-nav__item nav-tour">
Garden
</a>
<a href="http://multithreaded.stitchfix.com/careers" class="global-nav__item ">
Careers
</a>
<a href="http://multithreaded.stitchfix.com/blog" class="global-nav__item">
Blog
</a>
</div>
</div>
</nav>
<!-- introduction -->
<div class="intro-area-spacer">
<div id="intro-area">
<div id="intro-title">
<h1 class="intro-title-main">Algorithms Tour</h1>
<p class="intro-title-sub">How data science is woven into the fabric of Stitch Fix</p>
</div>
<svg x="0px" y="0px" width="100%" viewBox="-200 -50 1326 10000" enable-background="new -200 -50 1326 1000">
<g display="none" style="opacity:0" id="intro-matching-background-animation"></g>
<g id="intro-area-svg-g-wrap">
<g display="none" style="opacity:0" id="intro-matching-data"></g>
<g display="none" style="opacity:0" id="intro-matching-foreground-animation"></g>
<g display="none" style="opacity:0" id="intro-landing-static">
<rect x="380" y="305" width="168" height="40" fill="#f7f5f2" stroke="none" />
<g>
<path fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M430.6,318.2h-46.3c-2.2,0-4-1.4-4-3.1v-4.3c0-1.7,1.8-3.1,4-3.1h46.3c2.2,0,4,1.4,4,3.1v4.3C434.6,316.8,432.8,318.2,430.6,318.2
z"/>
<path fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M430.6,330.6h-46.3c-2.2,0-4-1.4-4-3.1v-4.3c0-1.7,1.8-3.1,4-3.1h46.3c2.2,0,4,1.4,4,3.1v4.3C434.6,329.2,432.8,330.6,430.6,330.6
z"/>
<path fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M430.6,342.8h-46.3c-2.2,0-4-1.4-4-3.1v-4.3c0-1.7,1.8-3.1,4-3.1h46.3c2.2,0,4,1.4,4,3.1v4.3C434.6,341.3,432.8,342.8,430.6,342.8
z"/>
<g>
<g>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="421.8" y1="311.9" x2="421.8" y2="311.9"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0,3.8319" x1="425.6" y1="311.9" x2="427.6" y2="311.9"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="429.5" y1="311.9" x2="429.5" y2="311.9"/>
</g>
</g>
<path fill="none" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M387.8,316.2h-2.1c-0.9,0-1.6-0.7-1.6-1.6v-3.4c0-0.9,0.7-1.6,1.6-1.6h2.1c0.9,0,1.6,0.7,1.6,1.6v3.4
C389.3,315.5,388.6,316.2,387.8,316.2z"/>
<path fill="none" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M387.8,328.6h-2.1c-0.9,0-1.6-0.7-1.6-1.6v-3.4c0-0.9,0.7-1.6,1.6-1.6h2.1c0.9,0,1.6,0.7,1.6,1.6v3.4
C389.3,327.9,388.6,328.6,387.8,328.6z"/>
<path fill="none" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M387.8,340.7h-2.1c-0.9,0-1.6-0.7-1.6-1.6v-3.4c0-0.9,0.7-1.6,1.6-1.6h2.1c0.9,0,1.6,0.7,1.6,1.6v3.4
C389.3,340,388.6,340.7,387.8,340.7z"/>
<g>
<g>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="421.8" y1="324.3" x2="421.8" y2="324.3"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0,3.8319" x1="425.6" y1="324.3" x2="427.6" y2="324.3"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="429.5" y1="324.3" x2="429.5" y2="324.3"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="421.8" y1="336.5" x2="421.8" y2="336.5"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0,3.8319" x1="425.6" y1="336.5" x2="427.6" y2="336.5"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="429.5" y1="336.5" x2="429.5" y2="336.5"/>
</g>
</g>
</g>
<g>
<path fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M487.4,318.2h-46.3c-2.2,0-4-1.4-4-3.1v-4.3c0-1.7,1.8-3.1,4-3.1h46.3c2.2,0,4,1.4,4,3.1v4.3C491.4,316.8,489.6,318.2,487.4,318.2
z"/>
<path fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M487.4,330.6h-46.3c-2.2,0-4-1.4-4-3.1v-4.3c0-1.7,1.8-3.1,4-3.1h46.3c2.2,0,4,1.4,4,3.1v4.3C491.4,329.2,489.6,330.6,487.4,330.6
z"/>
<path fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M487.4,342.8h-46.3c-2.2,0-4-1.4-4-3.1v-4.3c0-1.7,1.8-3.1,4-3.1h46.3c2.2,0,4,1.4,4,3.1v4.3C491.4,341.3,489.6,342.8,487.4,342.8
z"/>
<g>
<g>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="478.7" y1="311.9" x2="478.7" y2="311.9"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0,3.8319" x1="482.5" y1="311.9" x2="484.4" y2="311.9"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="486.3" y1="311.9" x2="486.3" y2="311.9"/>
</g>
</g>
<path fill="none" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M444.6,316.2h-2.1c-0.9,0-1.6-0.7-1.6-1.6v-3.4c0-0.9,0.7-1.6,1.6-1.6h2.1c0.9,0,1.6,0.7,1.6,1.6v3.4
C446.2,315.5,445.5,316.2,444.6,316.2z"/>
<path fill="none" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M444.6,328.6h-2.1c-0.9,0-1.6-0.7-1.6-1.6v-3.4c0-0.9,0.7-1.6,1.6-1.6h2.1c0.9,0,1.6,0.7,1.6,1.6v3.4
C446.2,327.9,445.5,328.6,444.6,328.6z"/>
<path fill="none" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M444.6,340.7h-2.1c-0.9,0-1.6-0.7-1.6-1.6v-3.4c0-0.9,0.7-1.6,1.6-1.6h2.1c0.9,0,1.6,0.7,1.6,1.6v3.4
C446.2,340,445.5,340.7,444.6,340.7z"/>
<g>
<g>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="478.7" y1="324.3" x2="478.7" y2="324.3"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0,3.8319" x1="482.5" y1="324.3" x2="484.4" y2="324.3"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="486.3" y1="324.3" x2="486.3" y2="324.3"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="478.7" y1="336.5" x2="478.7" y2="336.5"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0,3.8319" x1="482.5" y1="336.5" x2="484.4" y2="336.5"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="486.3" y1="336.5" x2="486.3" y2="336.5"/>
</g>
</g>
</g>
<g>
<path fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M544.3,318.2H498c-2.2,0-4-1.4-4-3.1v-4.3c0-1.7,1.8-3.1,4-3.1h46.3c2.2,0,4,1.4,4,3.1v4.3C548.3,316.8,546.5,318.2,544.3,318.2z"
/>
<path fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M544.3,330.6H498c-2.2,0-4-1.4-4-3.1v-4.3c0-1.7,1.8-3.1,4-3.1h46.3c2.2,0,4,1.4,4,3.1v4.3C548.3,329.2,546.5,330.6,544.3,330.6z"
/>
<path fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M544.3,342.8H498c-2.2,0-4-1.4-4-3.1v-4.3c0-1.7,1.8-3.1,4-3.1h46.3c2.2,0,4,1.4,4,3.1v4.3C548.3,341.3,546.5,342.8,544.3,342.8z"
/>
<g>
<g>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="535.5" y1="311.9" x2="535.5" y2="311.9"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0,3.8319" x1="539.4" y1="311.9" x2="541.3" y2="311.9"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="543.2" y1="311.9" x2="543.2" y2="311.9"/>
</g>
</g>
<path fill="none" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M501.5,316.2h-2.1c-0.9,0-1.6-0.7-1.6-1.6v-3.4c0-0.9,0.7-1.6,1.6-1.6h2.1c0.9,0,1.6,0.7,1.6,1.6v3.4
C503,315.5,502.4,316.2,501.5,316.2z"/>
<path fill="none" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M501.5,328.6h-2.1c-0.9,0-1.6-0.7-1.6-1.6v-3.4c0-0.9,0.7-1.6,1.6-1.6h2.1c0.9,0,1.6,0.7,1.6,1.6v3.4
C503,327.9,502.4,328.6,501.5,328.6z"/>
<path fill="none" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M501.5,340.7h-2.1c-0.9,0-1.6-0.7-1.6-1.6v-3.4c0-0.9,0.7-1.6,1.6-1.6h2.1c0.9,0,1.6,0.7,1.6,1.6v3.4
C503,340,502.4,340.7,501.5,340.7z"/>
<g>
<g>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="535.5" y1="324.3" x2="535.5" y2="324.3"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0,3.8319" x1="539.4" y1="324.3" x2="541.3" y2="324.3"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="543.2" y1="324.3" x2="543.2" y2="324.3"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="535.5" y1="336.5" x2="535.5" y2="336.5"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0,3.8319" x1="539.4" y1="336.5" x2="541.3" y2="336.5"/>
<line fill="none" stroke="#58595B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x1="543.2" y1="336.5" x2="543.2" y2="336.5"/>
</g>
</g>
</g>
<g transform="translate(0,2)">
<g>
<text transform="matrix(1 0 0 1 391.4583 368.8209)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">log</text>
<text transform="matrix(1 0 0 1 420.1699 358.9038)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="12px">p</text>
<text transform="matrix(1 0 0 1 414.3366 377.5704)"><tspan x="0" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="12px">1</tspan><tspan x="6" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="6px"> </tspan><tspan x="8" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="12px">-</tspan><tspan x="12" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="6px"> </tspan><tspan x="14" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="12px">p</tspan></text>
<line fill="none" stroke="#231F20" stroke-width="0.5" stroke-miterlimit="10" x1="414" y1="364.9" x2="436" y2="364.9"/>
<text transform="matrix(1 0 0 1 441.458 368.04)"><tspan x="0" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">= </tspan><tspan x="15.6" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">α</tspan><tspan x="23.3" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </tspan><tspan x="25.7" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">+</tspan><tspan x="36.5" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">Xβ </tspan><tspan x="58.2" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="7px"> </tspan><tspan x="60.7" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">+</tspan><tspan x="71.6" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </tspan><tspan x="73.9" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">Zb</tspan></text>
</g>
<text transform="matrix(1 0 0 1 391.4583 394.8209)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">...</text>
<g>
<text transform="matrix(1 0 0 1 391.6219 426.8152)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">min</text>
<text transform="matrix(0.583 0 0 0.583 427.573 437.1172)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">i</text>
<text transform="matrix(0.583 0 0 0.583 446.9138 437.1172)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">j</text>
<text transform="matrix(1 0 0 1 399.8496 436.5176)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="10px">a</text>
<text transform="matrix(1 0 0 1 424.573 429.007)"><tspan x="0" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="18px">Σ</tspan><tspan x="13" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px"> </tspan><tspan x="17.7" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="18px">Σ</tspan></text>
<text transform="matrix(1 0 0 1 460.7117 426.8152)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">a</text>
<text transform="matrix(0.583 0 0 0.583 467.8655 431.4773)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">ij</text>
<text transform="matrix(1 0 0 1 472.8606 426.8152)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">q</text>
<text transform="matrix(0.583 0 0 0.583 479.3006 431.4773)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">ij</text>
<text transform="matrix(1 0 0 1 396.2566 464.4431)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">s.t.</text>
<text transform="matrix(1 0 0 1 441.9138 491.454)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">a</text>
<text transform="matrix(0.583 0 0 0.583 449.0681 496.1161)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">ij</text>
<text transform="matrix(1 0 0 1 454.0623 491.454)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> </text>
<text transform="matrix(1 0 0 1 459.075 491.454)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">=</text>
<text transform="matrix(1 0 0 1 469.9666 491.454)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> 1 </text>
<text transform="matrix(1 0 0 1 487.1443 491.454)" fill="#231F20" font-family="'Symbol'" font-size="14px">∀</text>
<text transform="matrix(1 0 0 1 497.1248 491.454)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">i</text>
<text transform="matrix(0.583 0 0 0.583 427.5729 501.3975)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">j</text>
<text transform="matrix(1 0 0 1 424.5729 493.2873)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="18px">Σ</text>
<text transform="matrix(1 0 0 1 424.5729 464.4431)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">a</text>
<text transform="matrix(0.583 0 0 0.583 431.7272 469.1053)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">ij</text>
<text transform="matrix(1 0 0 1 436.7214 464.4431)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> </text>
<text transform="matrix(1 0 0 1 441.7341 464.4431)" fill="#231F20" font-family="'Symbol'" font-size="14px">∈</text>
<text transform="matrix(1 0 0 1 451.7145 464.4431)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> </text>
<text transform="matrix(1 0 0 1 456.7263 464.4431)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">{</text>
<text transform="matrix(1 0 0 1 463.7263 464.4431)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">0,1</text>
<text transform="matrix(1 0 0 1 482.3171 464.4431)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">}</text>
<text transform="matrix(1 0 0 1 489.3171 464.4431)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">, </text>
<text transform="matrix(1 0 0 1 498.613 464.4431)" fill="#231F20" font-family="'Symbol'" font-size="14px">∀</text>
<text transform="matrix(1 0 0 1 508.5934 464.4431)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">i,j</text>
<text transform="matrix(1 0 0 1 442.1768 523.0681)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">a</text>
<text transform="matrix(0.583 0 0 0.583 449.3311 527.7302)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">ij</text>
<text transform="matrix(1 0 0 1 454.3252 523.0681)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> </text>
<text transform="matrix(1 0 0 1 459.3379 523.0681)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px"><</text>
<text transform="matrix(1 0 0 1 470.2295 523.0681)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> k</text>
<text transform="matrix(0.583 0 0 0.583 481.6817 527.7302)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">j</text>
<text transform="matrix(1 0 0 1 484.1787 523.0681)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> </text>
<text transform="matrix(1 0 0 1 489.1905 523.0681)" fill="#231F20" font-family="'Symbol'" font-size="14px">∀</text>
<text transform="matrix(1 0 0 1 499.1709 523.0681)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">j</text>
<text transform="matrix(0.583 0 0 0.583 427.8359 533.0117)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">i</text>
<text transform="matrix(1 0 0 1 424.8359 524.9015)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="18px">Σ</text>
</g>
<g>
<text transform="matrix(1 0 0 1 392.8169 581.2988)"><tspan x="0" y="0" fill="#231F20" font-family="'Symbol'" font-size="14px">∂</tspan><tspan x="6.9" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">x</tspan><tspan x="0" y="16.8" fill="#231F20" font-family="'Symbol'" font-size="14px">∂</tspan><tspan x="6.9" y="16.8" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">t</tspan></text>
<text transform="matrix(1 0 0 1 417.4224 589.1406)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">= </text>
<text transform="matrix(1 0 0 1 432.9761 589.1406)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">f </text>
<text transform="matrix(1 0 0 1 442.272 589.1406)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">(</text>
<text transform="matrix(1 0 0 1 447.7041 589.1406)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">x</text>
<text transform="matrix(0.583 0 0 0.583 454.1865 593.8027)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">t </text>
<text transform="matrix(1 0 0 1 459.8179 589.1406)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">,</text>
<text transform="matrix(1 0 0 1 463.6958 589.1406)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> u</text>
<text transform="matrix(0.583 0 0 0.583 476.2119 593.8027)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">t </text>
<text transform="matrix(1 0 0 1 481.8438 589.1406)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">,</text>
<text transform="matrix(1 0 0 1 485.7217 589.1406)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> w</text>
<text transform="matrix(0.583 0 0 0.583 500.0293 593.8027)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">t </text>
<text transform="matrix(1 0 0 1 505.6602 589.1406)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">)</text>
<text transform="matrix(1 0 0 1 511.0918 589.1406)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> </text>
<line fill="none" stroke="#231F20" stroke-width="0.25" stroke-miterlimit="10" x1="392.8" y1="585.3" x2="410.6" y2="585.3"/>
<text transform="matrix(1 0 0 1 394.5757 648.8125)"><tspan x="0" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">p </tspan><tspan x="12.2" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">(</tspan><tspan x="17.6" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">i → j </tspan><tspan x="54.8" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">)</tspan></text>
<text transform="matrix(1 0 0 1 393.5757 671.0153)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">=</text>
<text transform="matrix(1 0 0 1 404.4678 671.0153)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> logit </text>
<text transform="matrix(1 0 0 1 440.5864 671.0153)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">(</text>
<text transform="matrix(1 0 0 1 446.0186 671.0153)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> β</text>
<text transform="matrix(0.583 0 0 0.583 457.2461 675.6774)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">0</text>
<text transform="matrix(1 0 0 1 461.4165 671.0153)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> </text>
<text transform="matrix(1 0 0 1 466.4287 671.0153)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">+</text>
<text transform="matrix(1 0 0 1 477.3203 671.0153)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> β</text>
<text transform="matrix(0.583 0 0 0.583 488.5479 675.6774)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">1 </text>
<text transform="matrix(1 0 0 1 495.6406 671.0153)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">x</text>
<text transform="matrix(0.583 0 0 0.583 502.123 675.6774)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">1</text>
<text transform="matrix(1 0 0 1 506.293 671.0153)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> ... </text>
<text transform="matrix(1 0 0 1 529.2109 671.0153)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">)</text>
</g>
<g>
<text transform="matrix(1 0 0 1 391.7425 722.9176)"><tspan x="0" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">p</tspan><tspan x="7.2" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </tspan><tspan x="9.5" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">(</tspan><tspan x="14.9" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </tspan><tspan x="17.2" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="12px">1</tspan><tspan x="23.2" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </tspan><tspan x="25.6" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">)</tspan><tspan x="31" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> </tspan><tspan x="36" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">=</tspan><tspan x="46.9" y="0" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> β </tspan><tspan x="63.2" y="0" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">ex_cell</tspan></text>
<text transform="matrix(1 0 0 1 429.0757 743.803)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">+</text>
<text transform="matrix(1 0 0 1 439.9678 743.803)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> α</text>
<text transform="matrix(0.583 0 0 0.583 452.7495 748.4651)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">1 </text>
<text transform="matrix(1 0 0 1 459.8418 743.803)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">p</text>
<text transform="matrix(1 0 0 1 466.9956 743.803)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </text>
<text transform="matrix(1 0 0 1 469.3267 743.803)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">(</text>
<text transform="matrix(1 0 0 1 474.7583 743.803)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </text>
<text transform="matrix(1 0 0 1 477.0894 743.803)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">1 | </text>
<text transform="matrix(1 0 0 1 497.3052 743.803)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="12px">stylist</text>
<text transform="matrix(1 0 0 1 529.0449 743.803)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </text>
<text transform="matrix(1 0 0 1 531.375 743.803)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">)</text>
<text transform="matrix(1 0 0 1 429.0757 765.4697)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">+</text>
<text transform="matrix(1 0 0 1 439.9678 765.4697)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px"> α</text>
<text transform="matrix(0.583 0 0 0.583 452.7495 770.1318)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">2 </text>
<text transform="matrix(1 0 0 1 459.8418 765.4697)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="14px">p</text>
<text transform="matrix(1 0 0 1 466.9956 765.4697)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </text>
<text transform="matrix(1 0 0 1 469.3267 765.4697)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">(</text>
<text transform="matrix(1 0 0 1 474.7583 765.4697)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </text>
<text transform="matrix(1 0 0 1 477.0894 765.4697)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">1 | </text>
<text transform="matrix(1 0 0 1 497.3052 765.4697)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="12px">client</text>
<text transform="matrix(1 0 0 1 525.9248 765.4697)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="7px"> </text>
<text transform="matrix(1 0 0 1 528.2559 765.4697)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">)</text>
</g>
<text transform="matrix(1 0 0 1 392.1249 547.1542)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">...</text>
<text transform="matrix(1 0 0 1 392.1249 623.4875)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">...</text>
<text transform="matrix(1 0 0 1 392.1249 694.4875)" fill="#231F20" font-family="'CMUSerif-Roman'" font-size="14px">...</text>
</g>
</g>
<g style="opacity:0" id="intro-vector-axes">
<line fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="383" y1="242.5" x2="548" y2="242.5"/>
<line fill="#FFFFFF" stroke="#58595B" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="383" y1="242.5" x2="383" y2="107.5"/>
</g>
<g style="opacity:0" id="intro-c-vector">
<line fill="none" stroke="#231F20" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="383" y1="242.5" x2="512.5" y2="265.5"/>
</g>
<g style="opacity:0" id="intro-s-vector">
<line fill="none" stroke="#231F20" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="383" y1="242.5" x2="527.8" y2="279.8"/>
</g>
<g style="opacity:0" id="intro-dotted-vector">
<line fill="none" stroke="#231F20" stroke-width="0.75" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2.1099,2.1099" x1="514.8" y1="267.6" x2="526.3" y2="278.4"/>
</g>
<g style="opacity:0" id="intro-c-text">
<text transform="matrix(1 0 0 1 -3.4102 5.3188)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="15.5703px">c</text>
<text transform="matrix(0.583 0 0 0.583 3.752 10.5039)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="15.5703px">i</text>
</g>
<g style="opacity:0" id="intro-s-text">
<text transform="matrix(1 0 0 1 -1.4102 5.3188)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="15.5703px">s</text>
<text transform="matrix(0.583 0 0 0.583 4.9424 10.5039)" fill="#231F20" font-family="'CMUSerif-Italic'" font-size="15.5703px">j</text>
</g>
<g display="none" style="opacity:0" id="intro-matching-style"></g>
<g id="intro-client1" transform="translate(-40,-400)">
<path fill="#FFFFFF" d="M147.3-39.6c-0.4-8.9,0.6-17.8-1-26.6c-0.6-3.2-1.6-8.9-4.7-10.7c-1.2-0.7-3.3-1.3-4.8-1.6
c-1.1-0.2-2.3-0.4-3.4-0.6c-0.7-0.2-1.4-0.3-2.2-0.4c-0.4-0.1-0.7-0.1-1.1-0.2c-1.5-0.3-3-0.5-4.2-0.8c-0.2,0-0.4-0.1-0.5-0.2
c-1.2-0.6-1.9-2.6-2.3-4.2l1.1-10.7L109.2-96l1.5,11.1c-0.4,1.6-1.1,3.5-2.3,4.2c-0.2,0.1-0.4,0.2-0.6,0.2
c-1.2,0.2-2.7,0.5-4.2,0.8c-0.4,0.1-0.7,0.1-1.1,0.2c-0.7,0.1-1.4,0.3-2.2,0.4c-1,0.2-2.3,0.4-3.4,0.6c-1.4,0.3-3.5,0.9-4.8,1.6
c-3.1,1.9-4.1,7.5-4.7,10.7c-1.5,8.7-0.6,17.5-1,26.3"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M123.2-85c0.4,1.6,1.1,3.6,2.3,4.2c0.2,0.1,0.3,0.2,0.5,0.2c1.2,0.2,2.7,0.5,4.2,0.8c0.4,0.1,0.7,0.1,1.1,0.2
c0.7,0.1,1.4,0.3,2.2,0.4c1,0.2,2.3,0.4,3.4,0.6c1.4,0.3,3.5,0.9,4.8,1.6c3.1,1.9,4.1,7.5,4.7,10.7c1.6,8.8,0.6,17.7,1,26.6"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M136.9-55.7c0.2,5.8,1.8,12.8,2.4,18.9"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M133.6-39.9c0.3-2.6,1-5.1,1.8-7.2c0.7-1.8,1.1-3.6,1.3-5.2c0.2-1.3,0.2-2.5,0.2-3.5"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M108.4-80.8c0,2,8.6,20.3,8.6,20.3h0c0,0,8.6-18.3,8.6-20.3"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M110.8-85c-0.4,1.6-1.1,3.5-2.3,4.2c-0.2,0.1-0.4,0.2-0.6,0.2c-1.2,0.2-2.7,0.5-4.2,0.8c-0.4,0.1-0.7,0.1-1.1,0.2
c-0.7,0.1-1.4,0.3-2.2,0.4c-1,0.2-2.3,0.4-3.4,0.6c-1.4,0.3-3.5,0.9-4.8,1.6c-3.1,1.9-4.1,7.5-4.7,10.7c-1.5,8.7-0.6,17.5-1,26.3"
/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M100.3-39.9c-0.3-2.6-1-5.1-1.8-7.2c-0.7-1.8-1.1-3.6-1.3-5.2c-0.2-1.3-0.2-2.5-0.2-3.5c0-0.1,0-0.1,0-0.2c0,0.1,0,0.1,0,0.2
c-0.2,5.7-1.7,12.6-2.3,18.6"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M129.2-107.2v0.2c0,2.8-0.9,6.5-2.5,9.8l0,0c-1,2.2-2.4,4.3-3.9,5.8c0,0,0,0,0,0c-1.7,1.7-3.7,2.8-5.7,2.8c-1.6,0-3.1-0.6-4.4-1.7
c-0.5-0.3-0.9-0.7-1.3-1.2c0,0,0,0,0,0c-1.5-1.5-2.9-3.6-3.9-5.8c-0.1-0.1-0.1-0.1-0.1-0.2c-1.5-3.2-2.4-6.8-2.4-9.5v0
c0-5.1,3.1-9.5,7.5-11.3c0.1,0,0.2-0.1,0.2-0.1c1-0.4,2-0.6,3-0.8c1.2,2.9,3.6,5.6,7,7.6c2.1,1.2,4.3,2,6.4,2.2
C129-108.6,129.2-107.9,129.2-107.2z"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M131.1-90.1c-2.7,2.5-5.4,4.2-7.9,5.1c-0.2-0.8-0.3-1.7-0.4-2.5v-0.1c0-0.4-0.1-0.8-0.1-1.1c0-1.2,0-2.2,0-2.7c0,0,0,0,0,0
c1.6-1.5,2.9-3.6,3.9-5.8l0,0c1.6-3.3,2.5-7,2.5-9.8v-0.2c-0.1-0.7-0.2-1.5-0.4-2.2c-2.1-0.3-4.3-1-6.4-2.2c-3.4-1.9-5.8-4.7-7-7.6
c-1.1,0.1-2.1,0.4-3,0.8c-0.1,0-0.2,0.1-0.2,0.1c-4.4,1.8-7.5,6.2-7.5,11.3v0c0,2.7,0.9,6.3,2.4,9.5c0,0.1,0.1,0.2,0.1,0.2
c1,2.2,2.4,4.2,3.9,5.8c0,0,0,0,0,0c0.1,1,0.2,4-0.5,6.4c-2.5-0.9-5.2-2.6-7.9-5.1c-4.6-4.4-3.3-13.4-2-20.6
c1.6-8.7,8.1-18.3,16.1-14.9c8-3.4,14.5,6.2,16.1,14.9C134.4-103.5,135.7-94.5,131.1-90.1z"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M100.5-79.2c0,0-0.2,6-0.8,9.8c-0.4,2.7-1.1,5.5-1.8,8.1c-0.5,1.7-0.8,3.5-0.8,5.3"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M133.5-79.2c0,0,0.2,6.2,0.8,10c0.4,2.7,1.1,5.5,1.8,8.1c0.5,1.7,0.8,3.5,0.8,5.3"/>
</g>
<g id="intro-client2" transform="translate(-40,-400)">
<path fill="#FFFFFF" d="M147.3-39.6c-0.4-8.9,0.6-17.8-1-26.6c-0.6-3.2-1.6-8.9-4.7-10.7c-1.2-0.7-3.3-1.3-4.8-1.6
c-1.1-0.2-2.3-0.4-3.4-0.6c-0.7-0.2-1.4-0.3-2.2-0.4c-0.4-0.1-0.7-0.1-1.1-0.2c-1.5-0.3-3-0.5-4.2-0.8c-0.2,0-0.4-0.1-0.5-0.2
c-1.2-0.6-1.9-2.6-2.3-4.2l1.1-10.7L109.2-96l1.5,11.1c-0.4,1.6-1.1,3.5-2.3,4.2c-0.2,0.1-0.4,0.2-0.6,0.2
c-1.2,0.2-2.7,0.5-4.2,0.8c-0.4,0.1-0.7,0.1-1.1,0.2c-0.7,0.1-1.4,0.3-2.2,0.4c-1,0.2-2.3,0.4-3.4,0.6c-1.4,0.3-3.5,0.9-4.8,1.6
c-3.1,1.9-4.1,7.5-4.7,10.7c-1.5,8.7-0.6,17.5-1,26.3"/>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M125.9-81.3c0,2-3.9,4-8.7,4s-8.7-2-8.7-4"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M97.5-52.9c0.2,1.6,0.6,3.4,1.3,5.2c0.8,2.1,1.5,4.5,1.8,7.2"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M136.9-52.9C136.9-52.8,136.9-52.8,136.9-52.9l0,0.1c-0.2,1.6-0.6,3.3-1.3,5.1c-0.8,2.1-1.5,4.5-1.8,7.2"/>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M112.5-90.3c-0.1-0.1-0.3-0.2-0.4-0.3c0,0,0,0,0,0c0,0,0,0,0,0c-0.2-0.2-0.4-0.4-0.6-0.6"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M100.1-79.7c-2.4,0.5-5,0.7-7.1,2c-1.6,1-2.2,2.6-2.9,4.3c-0.7,1.9-1.4,3.8-1.9,5.8c-1.1,3.8-2,7.7-2.7,11.6c-0.2,1-0.3,2-0.5,3
c0,0.3-0.5,2.7-0.3,2.9c0,0,1.2,0.4,2.9,0.9c2.7,0.7,6.6,1.5,9.5,1h0"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M137.2-48.2c2.9,0.6,6.8-0.2,9.5-1c1.8-0.5,3-0.9,3-0.9c0.2-0.2-0.3-2.5-0.3-2.9c-0.1-1-0.3-2-0.4-3c-0.7-3.9-1.6-7.8-2.7-11.6
c-0.6-2-1.2-3.9-1.9-5.8c-0.6-1.7-1.2-3.3-2.9-4.3c-2.1-1.3-4.7-1.6-7.1-2"/>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M136.7-60.2c0,0,0.7,3.1,0.2,7.3c0,0,0,0.1,0,0.1v0c0.1,1.5,0.2,3,0.3,4.5h0c0.2,1.9,0.4,3.9,0.7,5.8"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M147-40.6c0-0.6-0.1-1.3-0.1-1.9c-0.1-2.2-0.2-4.3-0.3-6.8v0"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M87.7-49.2L87.7-49.2c-0.1,3.1-0.2,5.8-0.4,8.7"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M96.6-42.4c0.2-1.9,0.4-3.9,0.6-5.8c0.1-1.5,0.2-3.1,0.3-4.6c-0.5-4.2,0.2-7.3,0.2-7.3"/>
</g>
</g>
</g>
<g>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M134.3-79.7c-0.2,0-0.4-0.1-0.7-0.1c-0.7-0.2-1.5-0.3-2.2-0.4c-0.4-0.1-0.7-0.1-1.1-0.2c-1.5-0.3-2.9-0.5-4.2-0.8
c-1.5-0.3-2.3-1.8-2.8-3.6c-0.6-2.4-0.5-5.4-0.5-6.4c0,0,0,0,0,0c1.5-1.5,2.9-3.6,3.9-5.8l0,0c1.6-3.3,2.6-7,2.6-9.8v-0.2
c-0.1-0.7-0.2-1.5-0.4-2.2c-2.1-0.3-4.3-1-6.4-2.2c-3.4-1.9-5.8-4.7-7-7.6c-1.1,0.1-2.1,0.4-3.1,0.8c-0.1,0-0.2,0.1-0.2,0.1
c-4.4,1.8-7.5,6.2-7.5,11.3v0c0,2.7,0.9,6.3,2.4,9.5c0,0.1,0.1,0.2,0.1,0.2c1,2.2,2.4,4.2,3.9,5.8c0,0,0,0,0,0h0l0,0
c0,1,0.2,4-0.5,6.4c-0.4,1.8-1.3,3.3-2.8,3.6c-1.2,0.2-2.7,0.5-4.2,0.8c-0.4,0.1-0.7,0.1-1.1,0.2c-0.7,0.1-1.4,0.3-2.2,0.4
c-0.2,0-0.4,0.1-0.6,0.1c2.2-3,3-8.4,2.7-12c-0.7-6.6-3.4-12.7-2.1-19.5c1.6-8.3,8.3-17.4,16.6-14.2c8.3-3.2,15,5.9,16.6,14.2
c1.3,6.8-1.4,12.9-2.1,19.5C131.3-88.1,132.1-82.7,134.3-79.7z"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M100.1-79.7C100.1-79.7,100-79.7,100.1-79.7"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M129.4-107v0.2c0,2.8-0.9,6.5-2.6,9.8l0,0c-1,2.2-2.4,4.3-3.9,5.8c0,0,0,0,0,0c-1.7,1.7-3.7,2.8-5.8,2.8c-1.6,0-3.2-0.7-4.7-1.9
c-0.2-0.1-0.3-0.2-0.4-0.4c0,0,0,0,0,0c0,0,0,0,0,0c-0.2-0.2-0.4-0.4-0.6-0.6h0c0,0,0,0,0,0c-1.5-1.5-2.9-3.6-3.9-5.8
c-0.1-0.1-0.1-0.1-0.1-0.2c-1.5-3.2-2.4-6.8-2.4-9.5v0c0-5.1,3.1-9.5,7.5-11.3c0.1,0,0.1-0.1,0.2-0.1c1-0.4,2-0.6,3.1-0.8
c1.2,2.9,3.6,5.6,7,7.6c2.1,1.2,4.3,2,6.4,2.2C129.2-108.5,129.3-107.8,129.4-107z"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M112-90.7c-0.2-0.2-0.4-0.4-0.6-0.6l0,0C111.6-91.1,111.8-90.9,112-90.7z"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M112.5-90.3c-0.1-0.1-0.3-0.2-0.4-0.3c0,0,0,0,0,0C112.2-90.5,112.3-90.4,112.5-90.3z"/>
</g>
</g>
<g id="intro-client3" transform="translate(-40,-400)">
<path fill="#FFFFFF" d="M147.3-39.6c-0.4-8.9,0.6-17.8-1-26.6c-0.6-3.2-1.6-8.9-4.7-10.7c-1.2-0.7-3.3-1.3-4.8-1.6
c-1.1-0.2-2.3-0.4-3.4-0.6c-0.7-0.2-1.4-0.3-2.2-0.4c-0.4-0.1-0.7-0.1-1.1-0.2c-1.5-0.3-3-0.5-4.2-0.8c-0.2,0-0.4-0.1-0.5-0.2
c-1.2-0.6-1.9-2.6-2.3-4.2l-0.6-10.8h-10.5L110.8-85c-0.4,1.6-1.1,3.5-2.3,4.2c-0.2,0.1-0.4,0.2-0.6,0.2c-1.2,0.2-2.7,0.5-4.2,0.8
c-0.4,0.1-0.7,0.1-1.1,0.2c-0.7,0.1-1.4,0.3-2.2,0.4c-1,0.2-2.3,0.4-3.4,0.6c-1.4,0.3-3.5,0.9-4.8,1.6c-3.1,1.9-4.1,7.5-4.7,10.7
c-1.5,8.7-0.6,17.5-1,26.3"/>
<g>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M126.1-81c0,2-3.9,4-8.7,4c-4.8,0-8.7-2-8.7-4"/>
</g>
</g>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M137.3-56c0.2,5.8,1.8,12.8,2.4,18.9"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M134-40.2c0.3-2.6,1-5.1,1.8-7.2c0.7-1.8,1.1-3.6,1.3-5.2c0.2-1.3,0.2-2.5,0.2-3.5"/>
</g>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M100.7-40.2c-0.3-2.6-1-5.1-1.8-7.2c-0.7-1.8-1.1-3.6-1.3-5.2c-0.2-1.3-0.2-2.5-0.2-3.5c0-0.1,0-0.1,0-0.2c0,0.1,0,0.1,0,0.2
c-0.2,5.7-1.7,12.6-2.3,18.6"/>
</g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M123.2-91.7c0,0.5-0.1,1.5,0,2.7c0,0.4,0,0.7,0.1,1.1v0.1c0.1,1.4,0.4,2.7,0.9,4c0.4,1,0.9,2.2,1.9,2.7c0.2,0.1,0.3,0.2,0.5,0.2
c1.2,0.2,2.7,0.5,4.2,0.8c0.4,0.1,0.7,0.1,1.1,0.2c0.7,0.1,1.4,0.3,2.2,0.4c1,0.2,2.3,0.4,3.4,0.6c1.4,0.3,3.5,0.9,4.8,1.6
c3.1,1.9,4.1,7.5,4.7,10.7c1.6,8.8,0.6,17.7,1,26.6"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M111.6-91.7c0.1,2,0.1,4.1-0.4,6.1c-0.3,1.5-0.9,3.7-2.4,4.5c-0.2,0.1-0.4,0.2-0.6,0.2c-1.2,0.2-2.7,0.5-4.2,0.8
c-0.4,0.1-0.7,0.1-1.1,0.2c-0.7,0.1-1.4,0.3-2.2,0.4c-1,0.2-2.3,0.4-3.4,0.6c-1.4,0.3-3.5,0.9-4.8,1.6c-3.1,1.9-4.1,7.5-4.7,10.7
c-1.5,8.7-0.6,17.5-1,26.3"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M104.1-80.1c-1.3,4-1.9,8.2-3.3,12.2c-1.4,3.8-3.2,7.6-3.4,11.7"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M130.7-80.1c1.3,4,1.9,8.2,3.3,12.2c1.4,3.8,3.2,7.8,3.4,11.9"/>
<g>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M131.4-110.2c0,2.1-0.5,4.6-1.3,7.1c-1.3,3.9-3.4,8-6.1,10.7c-2,2-4.2,3.3-6.6,3.3c-2.4,0-4.7-1.3-6.7-3.3
c-4.4-4.4-7.3-12.4-7.3-17.7c0-5.5,3.1-10.2,7.7-12.5c1.9-0.9,4-1.5,6.3-1.5C125.1-124.2,131.4-118,131.4-110.2z"/>
<g>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M111.1-122.7c-0.3-0.6-0.6-1.4-0.6-2.1c0-3.1,3.1-5.6,6.9-5.6s6.9,2.5,6.9,5.6c0,0.7-0.2,1.5-0.5,2.1"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M130.1-103.1c-4.6-0.9-7.3-5.6-9.3-9.8c-2.2,4.3-8.4,8.8-16.2,9.6"/>
</g>
</g>
</g>
<g id="intro-client4" transform="translate(-40,-400)">
<path fill="#FFFFFF" d="M78.1-43.6c0.1-3.5,0.4-8.1,0.9-11.6c0.8-5.9,1.1-13.2,5.5-17.5c3.5-3.5,8.8-4.7,13.3-5.6
c2.6-0.6,5.2-1.1,7.4-1.5c0.5-0.1,1-0.2,1.4-0.3c4.2-0.8,3.6-8.9,3.5-11.3l14.4,0.2c-0.1,2.4-0.6,10.3,3.5,11.1
c0.5,0.1,0.9,0.2,1.4,0.3c2.2,0.4,4.8,0.9,7.4,1.5c4.5,1,9.7,2.2,13.3,5.6c4.4,4.3,4.7,11.7,5.5,17.5c0.4,3.5,0.7,8.1,0.9,11.6"/>
<g>
<polyline fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
105.7,-80 111.7,-68.9 117.4,-75.8 108.6,-81.3 "/>
<polyline fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
129,-80 123.1,-68.9 117.4,-75.8 126.2,-81.3 "/>
</g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M139-39.7l0.8-19.2c0.3,5.7,2,12.7,2.7,18.7"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M92.4-40.2c0.7-6,2.4-13,2.7-18.7l0.8,19.2"/>
<g>
<polyline fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
121,-71.4 119.3,-67.9 119.3,-67.9 115.3,-67.9 113.5,-71.1 "/>
<line fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="115.3" y1="-67.9" x2="113.2" y2="-40.3"/>
<line fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="119.3" y1="-67.9" x2="121.5" y2="-40.3"/>
</g>
<g>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M131.9-104.5C131.9-104.5,131.9-104.5,131.9-104.5c-1.4,4.7-3.9,9.7-7.1,12.9c-2.2,2.3-4.7,3.7-7.4,3.7c-2.7,0-5.2-1.4-7.4-3.7
c-3.5-3.5-6.1-9-7.4-14c1.3-0.2,2.9-0.8,4.7-2.4c2.8-2.3,5.6-4.9,9.1-6c3-1,7.5,0.3,10.1-1.9C126.6-115.8,131.9-110.3,131.9-104.5
z"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M132.1-105.1c-0.1,0.3-0.1,0.5-0.2,0.6c0,0,0,0,0,0c0-5.8-5.3-11.4-5.3-11.4c-2.6,2.2-7.1,0.9-10.1,1.9c-3.5,1.2-6.4,3.7-9.1,6
c-1.8,1.5-3.4,2.2-4.7,2.4c-3.4,0.4-5.2-2.4-5.2-2.4c0-0.1,1.6-2.1,1.8-2.3c1.4-2,2-4,2.5-6.4c0.8-3.9,3.8-7.3,7.2-9.2
c3.7-2.1,7.5-2.1,11.6-1.6c3.4,0.4,7.1,2.5,8.7,5.6c0,0,2.3,0.5,4.1,3.6C134.9-115.7,132.7-107.5,132.1-105.1z"/>
</g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M110.2-91.4c0.1,2.4,0.7,10.5-3.5,11.3c-0.5,0.1-0.9,0.2-1.4,0.3c-2.2,0.4-4.8,0.9-7.4,1.5c-4.5,1-9.7,2.2-13.3,5.6
C80.2-68.4,79.8-61,79-55.2c-0.4,3.5-0.7,8.1-0.9,11.6"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M124.5-91.3c-0.1,2.4-0.6,10.3,3.5,11.1c0.5,0.1,0.9,0.2,1.4,0.3c2.2,0.4,4.8,0.9,7.4,1.5c4.5,1,9.7,2.2,13.3,5.6
c4.4,4.3,4.7,11.7,5.5,17.5c0.4,3.5,0.7,8.1,0.9,11.6"/>
</g>
<g id="intro-client5" transform="translate(-40,-400)">
<path fill="#FFFFFF" d="M78.1-43.6c0.1-3.5,0.4-8.1,0.9-11.6c0.8-5.9,1.1-13.2,5.5-17.5c3.5-3.5,8.8-4.7,13.3-5.6
c2.6-0.6,5.2-1.1,7.4-1.5c0.5-0.1,1-0.2,1.4-0.3c4.2-0.8,3.6-8.9,3.5-11.3l14.4,0.2c-0.1,2.4-0.6,10.3,3.5,11.1
c0.5,0.1,0.9,0.2,1.4,0.3c2.2,0.4,4.8,0.9,7.4,1.5c4.5,1,9.7,2.2,13.3,5.6c4.4,4.3,4.7,11.7,5.5,17.5c0.4,3.5,0.7,8.1,0.9,11.6"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M92.1-40.1c0.2-2.1,0.5-6.5,0.9-8.8"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M80-54.2c-0.4,3.5-0.7,7.4-0.8,11"/>
<g>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M128.4-79.8c0,2.6-4.9,5.3-10.9,5.3s-10.9-2.6-10.9-5.3"/>
</g>
</g>
<g>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M131.7-105.5c-1,4.9-3.6,10.6-7,14.2c-2.1,2.3-4.6,3.7-7.2,3.7c-2.6,0-5.1-1.5-7.2-3.7c-3.4-3.6-6-9.3-7-14.2
c4.2-3.8,4.1-10.4,4.1-10.4c2.9,1.1,6.3,1.7,10.1,1.7c3.7,0,7.2-0.7,10.1-1.7C127.6-115.9,127.5-109.2,131.7-105.5z"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M132.1-109.6c0,1.3-0.2,2.7-0.5,4.2c-4.2-3.8-4.1-10.4-4.1-10.4c-2.9,1.1-6.4,1.7-10.1,1.7c-3.7,0-7.2-0.7-10.1-1.7
c0,0,0.1,6.6-4.1,10.4c0-0.1-0.1-0.2-0.1-0.3c0-0.1,0-0.2,0-0.2c-0.1-0.7-0.3-2-0.3-2.9c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3,0-0.4
c0-0.7,0-8.7,0-8.7c0-4.6,3.8-8.4,8.4-8.4h12.5c4.6,0,8.4,3.8,8.4,8.4C132.1-118.3,132.1-109.8,132.1-109.6z"/>
</g>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M110.3-91.3c0.1,2.4,0.7,10.6-3.5,11.5c-0.5,0.1-0.9,0.2-1.4,0.3c-2.2,0.4-4.8,0.9-7.4,1.5c-4.5,1-9.7,2.2-13.3,5.6
c-4.4,4.3-4.7,11.7-5.5,17.5c0,0,8.9,6,14.7,6c0,0,0.9-6.2,1.3-9.7L96-39.4"/>
<g>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M141.9-48.9c0.4,2.3,0.7,6.6,0.9,8.8"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M154.9-54.2c0.4,3.5,0.7,7.4,0.8,11"/>
</g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M124.7-91.3c-0.1,2.4-0.7,10.6,3.5,11.5c0.5,0.1,0.9,0.2,1.4,0.3c2.2,0.4,4.8,0.9,7.4,1.5c4.5,1,9.7,2.2,13.3,5.6
c4.4,4.3,4.7,11.7,5.5,17.5c0,0-8.9,6-14.7,6c0,0-0.9-6.2-1.3-9.7L139-39.4"/>
</g>
</g>
</g>
<g id="intro-client6" transform="translate(-40,-400)">
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M104.8-102.4c-0.4-1.1-1.8-5-2.2-6.2c-1.3-4.1-1.6-8.7,0.7-12.4c3.1-5,6.7-7.7,12.9-8.2c2.5-0.2,8.8,0.3,9.9,2.9
c0,0,1.2,0.1,1.3,0.1c1,0.2,2,0.6,2.8,1.3c2.1,1.6,2.6,4.5,2.7,7c0.1,3.3-0.4,6.7-1,9.9c0,0.2-0.5,1.7-0.8,3l-0.4,1.7
c0,0-0.1-0.1-0.2-0.2"/>
<path fill="#FFFFFF" d="M78.1-43.6c0.1-3.5,0.4-8.1,0.9-11.6c0.8-5.9,1.1-13.2,5.5-17.5c3.5-3.5,8.8-4.7,13.3-5.6
c2.6-0.6,5.2-1.1,7.4-1.5c0.5-0.1,1-0.2,1.4-0.3c4.2-0.8,3.6-8.9,3.5-11.3l14.4,0.2c-0.1,2.4-0.6,10.3,3.5,11.1
c0.5,0.1,0.9,0.2,1.4,0.3c2.2,0.4,4.8,0.9,7.4,1.5c4.5,1,9.7,2.2,13.3,5.6c4.4,4.3,4.7,11.7,5.5,17.5c0.4,3.5,0.7,8.1,0.9,11.6"/>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M92.2-40.3c0.2-2.1,0.5-6.5,0.9-8.8"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M80.1-54.5c-0.4,3.5-0.7,7.4-0.8,11"/>
<g>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M128.6-80c0,1.8-5.3,12.1-8.6,15.6c-1.3,1.4-3.5,1.4-4.7,0c-3.2-3.5-8.6-13.7-8.6-15.6"/>
</g>
</g>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M110.5-91.4c0.1,2.4,0.7,10.5-3.5,11.3c-0.5,0.1-0.9,0.2-1.4,0.3c-2.2,0.4-4.8,0.9-7.4,1.5c-4.5,1-9.7,2.2-13.3,5.6
c-4.4,4.3-4.7,11.7-5.5,17.5c0,0,8.9,6,14.7,6c0,0,0.9-6.2,1.3-9.7l0.8,19.2"/>
<g>
<g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M142.1-49.1c0.4,2.3,0.7,6.6,0.9,8.8"/>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M155.1-54.5c0.4,3.5,0.7,7.4,0.8,11"/>
</g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M124.8-91.4c-0.1,2.4-0.6,10.5,3.5,11.3c0.5,0.1,0.9,0.2,1.4,0.3c2.2,0.4,4.8,0.9,7.4,1.5c4.5,1,9.7,2.2,13.3,5.6
c4.4,4.3,4.7,11.7,5.5,17.5c0,0-8.9,6-14.7,6c0,0-0.9-6.2-1.3-9.7l-0.8,19.2"/>
</g>
</g>
</g>
<path fill="none" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M126.8-116.7c0,0-4,2.1-6.2,2.2c-2.3,0.1-8.9,1.3-10.6,4.2c-1.5,2.6-4.5,6.9-5.3,7.8"/>
<path fill="#FFFFFF" stroke="#221F1F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M130.5-103.3c-0.5-0.4-1.8-1.5-1.9-2.9c-0.2-1.9,0-3.9-0.4-5.8c-0.3-1.7-1-3.1-1.4-4.8c0,0-4,2.1-6.2,2.2
c-2.3,0.1-8.9,1.3-10.6,4.2c-1.5,2.6-4.5,6.9-5.3,7.8c0.4,1.6,1.1,3.3,1.8,4.9c0,0.1,0.1,0.2,0.2,0.2c1.2,2.5,2.7,4.8,4.4,6.5
l1.3,1.2c1.6,1.3,3.4,2.1,5.3,2.1c1.8,0,3.6-0.8,5.2-2.1c0.2-0.1,0.4-0.3,0.5-0.4c0.3-0.2,0.5-0.5,0.8-0.7c1.7-1.7,3.2-4,4.4-6.5
c0.1-0.1,0.1-0.2,0.1-0.2c0.9-1.9,1.6-3.8,2-5.7"/>
</g>
</g> <!--- end of intro-area-svg-g-wrap -->
<g display="none" style="opacity:0" id="intro-area-white-over">
<rect x="-200" y="-50" width="1326" height="10000" fill="#fff" stroke="none" />
</g>
</svg>
</div>
</div>
<!-- intro paragraph -->
<div id="intro-paragraph">
<p style="margin-bottom: 0px">
At Stitch Fix, we’re transforming the way people find what they love. Our clients want the perfect clothes for their individual preferences—yet without the burden of search or having to keep up with current trends. Our merchandise is curated from the market and augmented with our own designs to fill in the gaps. It’s kept current and extremely vast and diverse—ensuring something for everyone. Rich data on both sides of this 'market' enables Stitch Fix to be a matchmaker, connecting clients with styles they love (and never would’ve found on their own).
</p>
</div>
<!-- main graphic div, contains #topics, #sections and #vis divs -->
<div id="graphic-background" style="background:white">
<div id="graphic" style="background:white">
<div id="topics">
<a href="#warehouse-assignment" class="topic" id="warehouse-assignment-topic">
Warehouse Assignment
</a>
<a href="#recommendation-systems" class="topic" id="recommendation-systems-topic">
Recommendation Systems
</a>
<a href="#matchmaking" class="topic" id="matchmaking-topic">
Matchmaking
</a>
<a href="#human-computation" class="topic" id="human-computation-topic">
Human Computation
</a>
<a href="#logistics-optimization" class="topic" id="logistics-optimization-topic">
Logistics Optimization
</a>
<a href="#state-machines" class="topic" id="state-machines-topic">
State Machines
</a>
<a href="#demand-modeling" class="topic" id="demand-modeling-topic">
Demand Modeling
</a>
<a href="#inventory-management" class="topic" id="inventory-management-topic">
Inventory Management
</a>
<a href="#new-style-development" class="topic" id="new-style-development-topic">
New Style Development
</a>
<a href="#data-platform" class="topic" id="data-platform-topic">
Data Platform
</a>
</div>
<div id="sections">
<section class="step" style="margin-top: 0px; margin-bottom: 0px">
<p></p>
</section>
<section class="step" style="margin-top: 250px;">
<p>
Our business model enables unprecedented data science, not only in recommendation systems, but also in human computation, resource management, inventory management, algorithmic fashion design and many other areas. Experimentation and algorithm development is deeply engrained in everything that Stitch Fix does. We’ll describe a few examples in detail as you scroll along.
</p>
</section>
<section class="step" style="margin-top: 150px;">
<p>
So what does the data look like? In addition to the rich feedback data we get from our clients, we also receive a great deal of upfront data on both our clothing and our clients. Our buyers and designers capture dimension and style details, and our clients fill out a profile upon signup that’s calibrated to get us the most useful data with the least client effort.
</p>
</section>
<section id="client-experience-part-1" class="step" style="margin: 80px 0">
<p>
Let's first walk through the filling of a shipment request to see a few of the many algorithms that play a role in that process, before zooming out to view the bigger picture.
</p>
</section>
<h3>Client Experience Part 1: Profile & Request</h3>
<section id="warehouse-assignment" class="step">
<p>
As noted, when a client first signs up, they fill out a Style Profile (it can be updated at any time). Then, scheduling a delivery is easy: an algorithm is used to populate a calendar from which she selects a delivery date.
</p>
</section>
<h3>Warehouse Assignment</h3>
<section class="step" style="margin-bottom: 100px">
<p>
The shipment request is processed by an algorithm that assigns it to a warehouse. This algorithm calculates a cost function for each warehouse based on a combination of its location relative to the client and how well the inventories in the different warehouses match the client's needs.
</p>
</section>
<section class="step" style="margin-bottom: 100px">
<p>
This set of cost calculations is carried out for each client to produce a cost matrix.
</p>
</section>
<section class="step" style="margin-bottom: 100px">
<p>
The assignment of clients to warehouses is then a binary optimization problem.
</p>
</section>
<section class="step" style="margin-bottom: 300px">
<p>
And the global optimum includes this particular client's warehouse assignment.
</p>
</section>
<section id="recommendation-systems" class="step">
<p>
The shipment request is then routed to the Humans + Machines styling algorithm.
</p>
</section>
<h3>Intelligent Machines</h3>
<section class="step">
<p>
First, the machines perform a variety of algorithms to produce rank-ordered lists of the inventory.
</p>
</section>
<section class="step">
<p>
A filtering step removes styles from consideration that the client has received in a previous shipment or that have attributes which the client has asked to avoid.
</p>
</section>
<section class="step">
<p>
For each of the remaining styles, the machines then try to evaluate the relative likelihood that this particular client will love that particular style. This is a difficult problem, and we approach it in many different ways—only a few of which we’ll discuss here. But in general, note that we tag each item multiple times with match scores from different algorithms, and then rank them.
</p>
</section>
<section class="step">
<p>
In some ways, the problem is a classic collaborative filtering problem: given different clients' feedback on different styles, we must fill in the gaps in the (sparse) matrix to predict the result of sending a style to a client who has not yet received it. As such, we <i>do</i> use some standard collaborative filtering algorithms (e.g. those who have liked what you have liked have also liked ...).
</p>
</section>
<section class="step">
<p>
However, unlike most collaborative filtering problems, we have a lot of explicit data, both from clients' self-descriptions and from clothing attributes. This helps with the cold start problem and also allows for greater accuracy if we employ algorithms that consider this data.
</p>
</section>
<section class="step">
<p>
One such approach is mixed-effects modeling, which is particularly useful because of the longitudinal nature of our problem: it lets us learn (and track) our clients' preferences over time, both individually and as a whole.
</p>
</section>
<section class="step">
<p>
And in addition to the many explicit features available, there are some particularly pertinent latent (unstated) features of both clients and styles that we can infer from other data (structured and/or unstructured) and use to improve our performance.
</p>
</section>
<section class="step">
<p>
For example, a new client may tell us that she wears medium-sized blouses, but where exactly would her preference fall along the spectrum of smallish mediums to largish mediums? The same question also applies to particular styles of clothing in our inventory. (Note that in this illustration we’re treating fit as unidimensional for simplicity, but in fact at Stitch Fix we treat it as multidimensional.)
</p>
</section>
<section class="step">
<p>
With clients' fit feedback and purchase histories, we can learn where particular clients and styles fall along this spectrum. These latent features can then be used in our mixed-effects models and elsewhere.
</p>
</section>
<section class="step">
<p>
Moving our problem even further beyond classical collaborative filtering, we also have a lot of photographic and textual data to consider: inventory style photos, Pinterest boards, and the vast amount of written feedback and request notes we receive from clients.
</p>
</section>
<section class="step">
<p>
Sometimes it can be difficult to describe your style preferences in words, but you know it when you see it—so we have our machines look at photos of clothing that customers like (e.g. from Pinterest), and look for visually similar items in our inventory. We use trained neural networks to derive vector descriptions of 'pinned' images, and then compute a cosine similarity between these vectors and pre-computed vectors for each item in our inventory.
</p>
</section>
<section class="step">
<p>
Natural language processing is used to score items based on the client's request note and textual feedback from other clients about the same item.