-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1901 lines (1743 loc) · 187 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>That Podcast with Beau and Dave</title>
<meta name="description" content="Beau Simensen and Dave Marshall talking about life as dads, programmers, and entrepreneurs." />
<meta name="keywords" content="beau, beau simensen, dave, dave marshall, podcast, that podcast" />
<!-- Facebook -->
<meta property="og:title" content="That Podcast" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://thatpodcast.io/build/images/that-podcast-cover-photo.d9a72d20.jpg" />
<meta property="og:url" content="https://thatpodcast.io/" />
<meta property="og:description" content="Beau Simensen and Dave Marshall talking about life as dads, programmers, and entrepreneurs." />
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="That Podcast" />
<meta name="twitter:description" content="@beausimensen and @davedevelopment talking about life as dads, programmers, and entrepreneurs." />
<meta name="twitter:image" content="https://thatpodcast.io/build/images/that-podcast-cover-photo.d9a72d20.jpg" />
<link rel="stylesheet" href="build/app.793188cb.css">
</head>
<body>
<div id="hero-and-nav">
<nav class="font-normal text-base py-4 md:flex md:justify-between md:m-auto container">
<ul class="list-reset md:p-0 md:flex-1 md:flex md:items-center">
<li class="md:pr-2">
<a class="no-underline" href="/">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 302.8 296.6" style="enable-background:new 0 0 302.8 296.6;" xml:space="preserve" aria-label="Home" role="img" class="mb-4 md:mb-0 h-16 md:h-24 lg:h-32 md:mr-2 lg-pr-4 block svg-shadow">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g id="iUSryY.tif">
<g>
<circle class="st0" cx="150.1" cy="148.3" r="148.3"/>
<path d="M114.1,145.5c2.5,1.3,4.9,2.5,7.5,3.8c0.7-2.1,1.3-4.1,1.9-5.9c-2.9-1.7-5.7-3.3-8.5-5c-0.5-0.3-0.9-0.7-1.5-1 c-1.2-0.7-1.5-1.6-1-2.9c3.9,1.9,7.8,3.8,11.9,5.9c0.7-2.2,1.3-4.1,2-6.2c-2.1-1-4.2-1.9-6.2-2.9c-1.7-0.8-3.3-1.8-4.9-2.7 c-1.5-0.9-1.4-0.9-0.7-2.7c4.2,1.8,8.4,3.5,12.8,5.4c0.7-2.1,1.3-4.1,1.9-6c-4.3-1.8-8.4-3.6-12.7-5.5c0.2-0.8,0.4-1.5,0.6-2.3 c4.4,1.5,8.7,3,13.1,4.5c0.7-2,1.3-3.9,1.9-6c-4.4-1.5-8.7-3-13-4.6c0.3-0.9,0.5-1.6,0.7-2.4c4.5,1.2,8.8,2.4,13.3,3.7 c0.6-2,1.3-3.9,1.9-6c-4.4-1.2-8.8-2.4-13.3-3.7c0.2-0.8,0.4-1.5,0.7-2.4c4.5,1,9,1.9,13.6,2.9c0.6-1.9,1.3-3.8,2-6 c-4.5-1-9-2-13.4-2.9c0.3-2.3,0.4-2.4,2.5-2.1c3.9,0.6,7.8,1.2,11.8,1.8c0.6-2,1.3-3.9,1.9-6c-4.6-0.8-9.2-1.5-13.7-2.2 c0.5-2.2,0.5-2.2,2.5-2c4,0.3,8,0.7,12.2,1c0.6-1.8,1.2-3.8,1.9-6c-4.7-0.5-9.2-1-13.8-1.5c0.3-2,0.3-2.1,2.3-2 c3.8,0.1,7.6,0.3,11.4,0.5c0.8,0,1.2-0.1,1.4-0.9c0.5-1.7,1.1-3.4,1.7-5.3c-4.1-0.3-8.1-0.6-12.3-0.9c2.6-3.3,5.9-5.4,9.7-6.7 c9.2-3.2,18.4-2.4,27.5,0.2c8.9,2.5,16.8,6.9,22.9,14c5.9,6.8,7.6,14.6,4.8,23.3c-5.5,17-10.9,34-16.4,51 c-1.5,4.5-3.9,8.3-7.4,11.6c-0.8,0.7-1.4,1.7-1.8,2.8c-1.5,4.1-2.9,8.3-4.4,12.4c-0.2,0.5-0.6,1.1-1,1.2 c-8.6,1.7-17.2,2.3-25.8-0.2c-7.7-2.2-13.5-7-18.3-13.2c-1.5-1.9-2.6-4.1-3.9-6.1c-0.1-0.2-0.2-0.5-0.4-1.1 c1.3,0.8,2.2,1.4,3.2,1.9c6,3.3,12.5,4.9,19.2,5.6c4.8,0.5,9.6,0.5,14.3,0.8c1.1,0.1,1.6-0.3,2-1.4c4.9-14.2,9.8-28.3,14.8-42.5 c1.5-4.3,5-6.3,9-5.1c2.5,0.7,3.9,2.5,4.8,4.9c0.5-2.4-1.3-5.5-3.9-7.1c-3.4-2.1-7-1.6-10.5,1.2c-10.6-2.7-21-5.3-31.6-8 c-0.6,1.9-1.2,3.8-2,6c10.2,2.6,20.3,5.1,30.5,7.7c-0.2,0.8-0.5,1.5-0.8,2.6c-10.2-2.3-20.4-4.5-30.8-6.8 c-0.5,1.7-1.2,3.6-1.8,5.7c10.1,2.9,20.2,5,30.6,6.9c-0.3,0.9-0.5,1.6-0.7,2.4c-10.5-1.1-20.7-3-30.8-6c-0.7,2-1.3,3.9-1.9,6 c10,3.1,20.2,4.9,30.5,6.1c-0.4,2.4-0.4,2.5-2.6,2.3c-9.7-0.5-19.3-2.2-28.8-5.1c-0.6,2-1.3,3.9-1.9,6c9.9,3.2,20,4.7,30.3,5.4 c0,2.2-0.3,2.5-2.2,2.5c-9.5-0.1-18.9-1.3-28-4.3c-0.3-0.1-0.7-0.2-1.1-0.3c-0.6,2-1.2,3.9-1.9,5.9c9.9,3.4,20,4.7,30.5,4.9 c-0.8,2.2-1.5,4.3-2.2,6.3c-0.1,0.2-0.5,0.5-0.8,0.5c-10.2,0-20.3-0.8-29.9-4.9c-4.9-2.1-7.8-6.1-10.2-10.5 c-0.3-0.6-0.6-1.3-0.8-1.9C114.1,145.8,114.1,145.7,114.1,145.5z M144.3,99c-0.7,2.1-1.3,4-1.9,6c0.7,0.2,1.1,0.3,1.6,0.5 c5.8,1.6,11.7,3.1,17.5,4.8c3.4,0.9,6.7,2,10,3c1.6,0.5,3.1-0.4,3.7-1.9c0.5-1.5-0.1-3.1-1.6-3.8c-0.4-0.2-0.9-0.4-1.4-0.5 c-4.5-1.4-9-2.8-13.6-4.1C153.9,101.6,149.2,100.4,144.3,99z M145.4,95.6c0.3,0.1,0.5,0.3,0.6,0.3c9.2,2.1,18.1,5.1,26.9,8.5 c0.6,0.2,1.3,0.4,2,0.3c1.4-0.1,2.4-1.2,2.6-2.6c0.2-1.7-0.5-2.9-2.4-3.6c-7.3-2.5-14.6-4.9-22-7.3c-1.9-0.6-3.9-1-5.9-1.5 C146.6,91.8,146,93.7,145.4,95.6z M150.2,80.4c-0.7,2.1-1.3,4-1.9,6c2.4,0.6,4.7,1.2,6.9,1.8c6.8,1.9,13.3,4.5,19.7,7.5 c2,0.9,3.8,0.4,4.6-1.3c0.8-1.8,0.1-3.5-2-4.4c-1.5-0.7-3-1.4-4.6-2.1C165.7,84.7,158.2,82.2,150.2,80.4z M151.3,77.1 c0.5,0.1,0.7,0.2,1,0.3c6.1,1.4,12,3.2,17.6,5.9c2.5,1.2,4.9,2.6,7.3,3.8c1.2,0.6,2.4,0.6,3.5-0.2c1.1-0.8,1.6-2,1.1-3.1 c-0.4-1-1.2-1.9-2.1-2.5c-6.3-3.9-13.1-6.6-20.1-8.7c-2.1-0.6-4.3-1.1-6.4-1.6C152.5,73.1,151.9,75,151.3,77.1z"/>
<path d="M139.6,194c0,4.4,0,8.4,0,12.4c0.6,0,1,0,1.6,0c0-8.2,0-16.3,0-24.5c3.6,0.5,7,1,10.5,1.5c0,7.6,0,15.2,0,23 c0.5,0,0.9,0,1.5,0.1c0-4.1,0-8,0-12.3c2.7,0.4,5.3,0.6,7.8,1.1c6.8,1.3,13.3,3.2,19,7.3c2.3,1.7,4.3,3.7,5.3,6.4 c1.5,4.2,0.1,7.7-2.9,10.6c-3.9,3.9-8.7,6.1-13.9,7.6c-15.6,4.5-31.3,4.4-46.7-0.9c-4-1.4-7.8-3.3-10.9-6.3 c-5.3-5.1-5.1-11.3,0.5-16.2c4.7-4.1,10.4-6.3,16.3-7.7C131.5,195.3,135.4,194.8,139.6,194z"/>
<path d="M185.8,219.8c-0.5,2.9-2,5-4,6.8c-4,3.6-8.7,5.7-13.8,7.1c-15.3,4.2-30.5,4.2-45.6-0.8c-4.8-1.6-9.3-3.9-12.7-7.8 c-1.2-1.4-2.2-3-2.5-5.1c7.6,8.9,18,11.4,28.7,12.9c9.9,1.3,19.7,0.9,29.4-1.5c6.5-1.6,12.8-3.8,17.8-8.6 C184,221.9,184.8,220.9,185.8,219.8z"/>
<path d="M136.8,252.6c1,0.1,1.8,0.1,2.5,0.1c-0.6,8.2-1.2,16.3-1.9,24.4c-2.5,0.3-2.5,0.3-2.6-2c-1.2,0.6-2.4,1.5-3.8,1.8 c-3,0.7-5.7-1-6.9-4.1c-1.2-3.1-1-6.3,0.4-9.4c2.1-4.7,8.4-5.6,11.5-1.1C136.3,259.1,136.6,255.9,136.8,252.6z M135.5,267.5 c0,0-0.1,0-0.1,0c0-0.4,0-0.8,0-1.2c-0.1-2.5-1.6-4.2-4-4.6c-2-0.3-4,0.9-4.7,3.2c-0.8,2.3-0.8,4.6-0.1,6.8c0.6,2,2.3,3.2,4,3.2 c1.9,0,3.7-1.3,4.2-3.3C135.2,270.3,135.3,268.9,135.5,267.5z"/>
<path d="M92.4,258.7c-1.2,3.2-2.4,6.3-3.7,9.5c-0.8-0.3-1.6-0.6-2.5-1c2.8-7.2,5.5-14.3,8.3-21.7c3.1,1.3,6.2,2.4,9.1,4 c2.7,1.5,3.5,5.1,2.1,7.9c-1.5,3-4.4,4.3-7.5,3.3C96.3,260.2,94.4,259.5,92.4,258.7z M93.1,256.6c1.7,0.7,3.4,1.3,5,1.9 c2.3,0.8,4.3-0.1,5.1-2.1c0.9-2.1,0.1-4.3-2.1-5.3c-1.6-0.8-3.3-1.4-5.1-2.1C95.1,251.5,94.1,253.9,93.1,256.6z"/>
<path d="M136.7,38.7c-0.9,0-1.7,0-2.7,0c-0.3-8.1-0.5-16.2-0.8-24.5c1-0.1,1.9-0.1,2.9-0.2c0,3.5,0,6.8,0,10.2 c0.1,0.1,0.2,0.1,0.3,0.2c0.6-0.6,1.1-1.2,1.7-1.7c1.7-1.4,3.6-1.9,5.6-1.1c2.1,0.8,3,2.5,3.2,4.6c0.3,4,0.4,8,0.6,12.1 c-0.9,0.1-1.7,0.1-2.6,0.2c-0.1-2.9-0.2-5.7-0.3-8.5c-0.1-1.2-0.1-2.5-0.3-3.7c-0.4-2.4-2.5-3.4-4.7-2.3c-2.2,1.1-3.3,2.8-3.2,5.4 c0.1,2.7,0.2,5.3,0.3,8C136.7,37.7,136.7,38.1,136.7,38.7z"/>
<path d="M172.6,267.1c-0.1-2-0.2-3.7-2-4.5c-2.6-1-4.9-0.2-7,1.6c-0.4-0.5-0.9-1-1.3-1.4c1.7-2.4,5.3-3.4,8.6-2.5 c2.7,0.8,4,2.5,4.2,5.8c0.2,3.5,0.4,7.1,0.6,10.8c-0.9,0-1.6,0-2.5,0c-0.1-0.4-0.2-0.9-0.2-1.1c-1.8,0.7-3.7,1.3-5.5,1.9 c-0.3,0.1-0.7,0.1-1,0.1c-2.7-0.1-4.9-1.8-5.3-4c-0.4-2.2,1.2-4.7,3.9-5.6c1.6-0.5,3.4-0.7,5.1-0.9 C170.9,267.2,171.7,267.1,172.6,267.1z M172.7,268.9c-2.3,0.4-4.6,0.7-6.8,1.3c-1.3,0.3-2.1,1.5-1.9,3c0.1,1.3,1.2,2.2,2.7,2.5 C170.3,276.2,173.4,273.1,172.7,268.9z"/>
<path d="M155.8,25.1c-0.4-0.5-0.8-1-1.1-1.5c2.7-3.4,9.6-3,11.7,0.7c0.4,0.7,0.6,1.5,0.7,2.2c0.1,4,0,8.1,0,12.2 c-1.2,0-1.9,0-2.8,0c-0.1-0.5-0.1-1-0.1-1.5c-1.2,0.5-2.3,1.2-3.5,1.4c-1.6,0.2-3.4,0.2-4.9-0.2c-1.9-0.5-3.1-2-3.2-4 c-0.1-2,0.9-3.6,2.7-4.4c1.4-0.6,2.9-1,4.4-1.2c1.6-0.2,3.1,0,4.7,0c0.6-1.9,0.2-3.6-1.1-4.4C160.7,22.7,158.3,23.4,155.8,25.1z M164.5,30.6c-2.4,0.2-4.8,0.3-7.1,0.7c-1.3,0.2-2.2,1.4-2.1,2.8c0,1.3,1.1,2.4,2.5,2.7C161.5,37.6,164.6,35,164.5,30.6z"/>
<path d="M113.5,257.5c3.1,0,5.8,2,6.7,4.9c1,3.2,0.6,6.3-1.1,9.1c-1.5,2.5-3.7,3.8-6.7,3.6c-3-0.1-5.2-1.7-6.5-4.4 C103.1,264.8,107.3,257.4,113.5,257.5z M118.3,265.6c-0.1,0-0.2-0.1-0.3-0.1c0-0.3,0-0.7-0.1-1c-0.2-2.3-1.7-4.1-3.6-4.6 c-2.1-0.5-4.1,0.5-5.3,2.6c-1.2,2.1-1.6,4.4-0.9,6.7c0.6,2,1.8,3.4,4,3.7c2,0.2,3.6-0.7,4.5-2.4 C117.4,268.9,117.8,267.2,118.3,265.6z"/>
<path d="M192.6,260c-0.4,0.9-0.8,1.6-1,2.1c-1.3-0.6-2.5-1.4-3.8-1.7c-1.1-0.2-2.5,0.1-3.5,0.6c-0.6,0.3-1.3,1.3-1.3,2 c0,0.6,0.9,1.4,1.6,1.7c1,0.4,2.1,0.5,3.2,0.7c0.8,0.2,1.6,0.2,2.3,0.4c2.7,0.7,4.1,2,4.3,4.1c0.2,2-1.2,4.2-3.5,5.2 c-3.4,1.5-6.8,1.2-10.1-0.8c0.4-0.9,0.7-1.8,1-2.7c2.3,2.4,5.9,2.9,8.4,1.2c0.7-0.5,1.5-1.6,1.4-2.3c-0.1-0.7-1.1-1.6-1.9-1.9 c-1.6-0.5-3.3-0.7-4.9-1c-2.9-0.6-4.4-2-4.5-4c-0.1-2,1.5-4,4.1-4.9C187.1,257.8,189.9,258,192.6,260z"/>
<path d="M178.4,25.2c-1.3-0.2-2.5-0.4-3.9-0.7c0.1-0.7,0.3-1.3,0.4-2.1c1.3,0.2,2.6,0.3,3.9,0.5c0.2-0.8,0.3-1.6,0.5-2.4 c0.5-2.3,0.7-2.4,3.3-1.9c-0.4,1.5-0.8,3-1.2,4.6c1.9,0.3,3.6,0.6,5.4,0.8c-0.1,0.7-0.2,1.3-0.3,2.1c-1.8-0.2-3.5-0.5-5.5-0.7 c-0.9,3.5-1.8,7-1.5,10.7c0.1,1.5,1.7,2.4,3.3,2.2c1-0.2,1.9-0.5,2.9-0.8c0.2,0.6,0.3,1.2,0.6,2c-2.4,1.2-4.8,1.8-7.3,0.7 c-1.7-0.8-2.7-2.7-2.4-4.8c0.4-3.1,1-6.1,1.5-9.2C178.3,25.9,178.3,25.6,178.4,25.2z"/>
<path d="M198.5,256.4c-0.4-1.5-0.8-2.9-1.2-4.4c0.9-0.5,1.6-0.9,2.5-1.4c0.4,1.7,0.8,3.2,1.2,4.8c1.8-0.6,3.4-1.2,5.2-1.8 c0.3,0.7,0.5,1.3,0.8,2c-1.8,0.7-3.4,1.3-5.5,2c1.2,3.2,2.3,6.5,3.6,9.6c0.7,1.7,2.5,1.9,4,0.9c0.8-0.6,1.5-1.4,2.5-2.2 c0.4,0.4,0.8,0.9,1.4,1.5c-1.4,2.1-3.2,3.6-5.6,3.9c-2.1,0.3-3.9-0.7-4.8-2.9c-1.1-2.7-1.9-5.5-2.8-8.2c-0.2-0.5-0.3-1-0.5-1.7 c-1.2,0.4-2.4,0.8-3.7,1.2c-0.2-0.7-0.4-1.3-0.6-2C196.1,257.3,197.2,256.8,198.5,256.4z"/>
<path d="M117.3,19.6c-2.2,0.3-4.3,0.5-6.5,0.8c-0.1-0.7-0.2-1.4-0.4-2.3c5.3-0.7,10.5-1.4,15.8-2c0.1,0.8,0.2,1.4,0.3,2.3 c-2.2,0.3-4.4,0.6-6.8,0.9c0.9,6.9,1.7,13.7,2.6,20.6c-0.8,0.1-1.6,0.3-2.6,0.4C119.1,33.4,118.3,26.6,117.3,19.6z"/>
<path d="M157.4,263.6c-0.5,0.6-1.1,1.3-1.7,2c-1.8-2.9-5.1-3.8-7.7-2.1c-2.9,1.8-3.6,6.5-1.5,9.7c2,3,5.4,3.3,9.2,0.6 c0.4,0.5,0.9,1.1,1.4,1.6c-3.3,3.5-8.8,3.6-12.1,0.2c-3.4-3.6-3.1-10.2,0.7-13.3C149.2,259.3,154.7,259.9,157.4,263.6z"/>
<path d="M29.2,141.3c-1.1,0-2-0.9-1.9-1.9c0.1-1.1,0.7-1.7,1.8-1.7c1.1,0,1.9,0.8,1.8,1.9C30.8,140.6,30.2,141.2,29.2,141.3z"/>
<path d="M33.7,145.8c-1,0-2-0.8-1.9-1.8c0.1-1.1,0.6-1.7,1.8-1.8c1.1,0,1.9,0.8,1.9,1.8C35.4,144.9,34.6,145.7,33.7,145.8z"/>
<path d="M60.6,142.2c1.1,0.1,1.7,0.7,1.8,1.8c0.1,1-0.8,1.9-1.8,1.9c-1.1-0.1-1.7-0.7-1.8-1.8C58.6,143,59.5,142.1,60.6,142.2z"/>
<path d="M65.1,145.8c-1,0-1.9-0.9-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.7c1.1,0,1.7,0.7,1.8,1.7C67,144.8,66.1,145.8,65.1,145.8z"/>
<path d="M60.5,151.1c1,0,1.9,0.9,1.8,1.9c-0.1,1.1-0.7,1.7-1.8,1.7c-1.1,0-1.7-0.6-1.9-1.7C58.6,152,59.5,151.1,60.5,151.1z"/>
<path d="M65.1,154.7c-1,0-2-0.8-1.9-1.8c0.1-1.1,0.7-1.7,1.8-1.8c1-0.1,1.9,0.8,1.9,1.8C66.9,153.9,66.1,154.7,65.1,154.7z"/>
<path d="M30.9,157.5c-0.1,1.1-0.7,1.7-1.8,1.7c-1,0-1.9-0.9-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.8C30.1,155.5,30.9,156.4,30.9,157.5z"/>
<path d="M26.4,135.2c-0.1,1-0.7,1.6-1.8,1.6c-1,0.1-1.9-0.9-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.8C25.6,133.1,26.4,134,26.4,135.2z"/>
<path d="M45.3,135c0-1.1,0.7-1.7,1.7-1.8c1-0.1,1.9,0.8,1.9,1.8c0,1-0.9,1.9-1.9,1.8C46,136.7,45.3,136.1,45.3,135z"/>
<path d="M53.4,135c0,1-0.9,1.9-1.9,1.8c-1-0.1-1.7-0.7-1.7-1.8c0-1,0.9-1.9,1.9-1.8C52.7,133.3,53.3,133.9,53.4,135z"/>
<path d="M75.8,166.6c-0.1,0.9-0.7,1.5-1.8,1.6c-1,0.1-1.9-0.8-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.8C75,164.5,75.9,165.4,75.8,166.6z"/>
<path d="M38,141.3c-1-0.1-1.6-0.7-1.7-1.7c-0.1-1,0.8-1.9,1.8-1.9c1.1,0,1.7,0.6,1.8,1.7C40,140.4,39.1,141.3,38,141.3z"/>
<path d="M57.9,139.5c-0.1,1.1-0.7,1.7-1.8,1.8c-1,0.1-1.9-0.9-1.8-1.9c0-1,0.9-1.8,2-1.7C57.3,137.8,57.8,138.5,57.9,139.5z"/>
<path d="M62.4,139.4c0,1-0.9,1.9-1.9,1.8c-1.1-0.1-1.7-0.7-1.8-1.8c-0.1-1,0.9-1.9,1.9-1.8C61.7,137.7,62.3,138.4,62.4,139.4z"/>
<path d="M69.5,137.7c1.1,0.1,1.7,0.7,1.8,1.8c0.1,1-0.8,1.9-1.8,1.9c-1,0-1.9-0.9-1.8-1.9C67.8,138.3,68.5,137.7,69.5,137.7z"/>
<path d="M87.6,141.3c-1,0-2-0.9-1.9-1.9c0.1-1.1,0.7-1.7,1.8-1.8c1.1,0,1.7,0.6,1.9,1.7C89.4,140.3,88.6,141.3,87.6,141.3z"/>
<path d="M49.8,166.6c0-1.2,0.8-2.1,1.8-2c1.1,0.1,1.7,0.7,1.8,1.8c0,1-0.8,2-1.8,1.9C50.5,168.1,49.9,167.5,49.8,166.6z"/>
<path d="M75.8,161.9c0,1-0.8,1.9-1.8,1.9c-1.1-0.1-1.7-0.7-1.8-1.8c0-1.1,0.6-1.7,1.7-1.9C74.9,159.9,75.8,160.8,75.8,161.9z"/>
<path d="M53.4,161.9c0,1.1-0.7,1.7-1.7,1.9c-1,0.1-1.9-0.8-1.9-1.8c0-1,0.9-1.9,1.9-1.8C52.7,160.2,53.3,160.8,53.4,161.9z"/>
<path d="M35.4,148.5c0,1-0.9,1.8-1.9,1.8c-1.1-0.1-1.7-0.8-1.7-1.8c-0.1-1,0.9-1.8,1.9-1.8C34.7,146.7,35.4,147.5,35.4,148.5z"/>
<path d="M64.8,150.2c-1-0.1-1.6-0.7-1.6-1.8c-0.1-1,0.8-1.9,1.9-1.8c1.1,0.1,1.7,0.7,1.8,1.8C66.9,149.4,66,150.3,64.8,150.2z"/>
<path d="M35.4,153c0,1-0.9,1.8-2,1.7c-1.1-0.1-1.7-0.8-1.7-1.9c0-1,1-1.8,2-1.7C34.7,151.2,35.5,152.1,35.4,153z"/>
<path d="M48.9,161.8c0,1.1-0.9,2.1-1.9,2c-1-0.1-1.7-0.7-1.7-1.8c0-1,0.9-1.9,1.9-1.8C48.2,160.2,48.8,160.8,48.9,161.8z"/>
<path d="M69.4,155.6c1.1,0,2,0.9,1.9,1.9c-0.1,1.1-0.7,1.7-1.8,1.7c-1.1,0-1.9-0.8-1.8-1.9C67.8,156.2,68.5,155.7,69.4,155.6z"/>
<path d="M60.2,159.2c-1-0.2-1.5-0.8-1.5-1.9c0-1,1-1.9,2-1.7c1.1,0.2,1.6,0.9,1.6,1.9C62.3,158.6,61.4,159.3,60.2,159.2z"/>
<path d="M38.1,159.2c-1.1-0.1-1.7-0.7-1.8-1.7c-0.1-1,0.8-1.9,1.8-1.9c1,0,1.9,0.9,1.8,1.9C39.8,158.5,39.2,159.1,38.1,159.2z"/>
<path d="M56,159.2c-1,0-1.9-0.9-1.8-1.9c0.1-1.1,0.8-1.7,1.8-1.7c1,0,1.8,0.9,1.8,1.9C57.8,158.5,57,159.2,56,159.2z"/>
<path d="M17.5,130.7c-0.1,1-0.7,1.6-1.8,1.7c-1,0.1-1.9-0.8-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.8C16.6,128.6,17.5,129.5,17.5,130.7z"/>
<path d="M44.4,130.4c0,1-0.8,1.9-1.8,1.9c-1.1-0.1-1.7-0.7-1.8-1.8c0-1.1,0.6-1.7,1.7-1.9C43.4,128.5,44.4,129.4,44.4,130.4z"/>
<path d="M48.9,130.3c0,1.2-0.9,2.1-1.9,2c-1.1-0.1-1.7-0.7-1.7-1.8c0-1,0.9-1.9,1.9-1.8C48.2,128.8,48.8,129.4,48.9,130.3z"/>
<path d="M53.4,130.5c0,1.1-0.7,1.7-1.7,1.8c-1,0.1-1.9-0.8-1.9-1.8c0-1,0.9-1.9,1.9-1.8C52.6,128.7,53.4,129.5,53.4,130.5z"/>
<path d="M29.1,132.3c-1.1,0-1.9-1-1.8-1.9c0.1-1.1,0.8-1.7,1.9-1.7c1,0,1.8,0.9,1.8,1.9C30.8,131.7,30.1,132.2,29.1,132.3z"/>
<path d="M24.6,132.3c-1,0-1.9-0.9-1.8-1.9c0.1-1.1,0.8-1.7,1.8-1.7c1-0.1,1.8,0.9,1.8,1.9C26.4,131.6,25.6,132.3,24.6,132.3z"/>
<path d="M66.9,162c0,1-1,1.9-2,1.8c-1.1-0.1-1.7-0.8-1.7-1.9c0-1.1,0.7-1.7,1.8-1.8C66,160,66.9,161,66.9,162z"/>
<path d="M48.9,153.1c-0.1,0.9-0.6,1.6-1.7,1.7c-1.1,0.1-1.9-0.7-1.9-1.7c0-1.1,0.6-1.7,1.7-1.9C48,151,48.8,151.8,48.9,153.1z"/>
<path d="M38.2,154.7c-1.1,0-1.9-0.8-1.9-1.8c0.1-1.1,0.6-1.7,1.7-1.8c1-0.1,1.9,0.8,1.9,1.8C39.9,153.9,39.1,154.7,38.2,154.7z"/>
<path d="M93.8,139.4c0,1.1-1,2-1.9,1.9c-1.1-0.1-1.7-0.8-1.7-1.8c-0.1-1,0.9-1.9,1.9-1.8C93.2,137.7,93.7,138.4,93.8,139.4z"/>
<path d="M37.9,145.8c-0.9-0.1-1.6-0.7-1.6-1.8c-0.1-1,0.8-1.8,1.9-1.8c1.1,0.1,1.7,0.7,1.8,1.8C40,144.9,39,145.8,37.9,145.8z"/>
<path d="M57.9,130.5c0,1.1-0.6,1.7-1.7,1.8c-1,0.1-1.9-0.8-1.9-1.8c0-1,0.9-1.9,1.9-1.9C57.1,128.8,57.8,129.4,57.9,130.5z"/>
<path d="M48.9,143.9c0,1-0.8,1.9-1.9,1.8c-1.1-0.1-1.7-0.7-1.8-1.8c0-1.1,0.8-1.9,1.8-1.8C48.1,142.2,48.9,142.9,48.9,143.9z"/>
<path d="M78.7,145.8c-1.2,0-2-0.9-1.9-1.9c0.1-1.1,0.7-1.7,1.8-1.7c1.1,0,1.8,0.8,1.8,1.9C80.2,145.2,79.5,145.7,78.7,145.8z"/>
<path d="M89.3,144c-0.1,1-0.6,1.7-1.7,1.8c-1,0.1-2-0.8-1.9-1.8c0-1.1,0.6-1.7,1.7-1.8C88.5,142.1,89.3,142.9,89.3,144z"/>
<path d="M93.8,134.9c0,1-0.9,2-1.9,1.9c-1.1-0.1-1.7-0.7-1.8-1.8c-0.1-1,0.8-2,1.8-1.9C93.1,133.2,93.7,133.9,93.8,134.9z"/>
<path d="M78.5,151.1c1,0,1.9,0.8,1.8,1.9c-0.1,1.1-0.7,1.7-1.8,1.7c-1.1,0-1.7-0.6-1.8-1.7C76.6,152,77.5,151.1,78.5,151.1z"/>
<path d="M21.9,135.2c-0.1,0.9-0.7,1.5-1.8,1.6c-1,0.1-1.9-0.8-1.8-1.9c0-1.1,0.7-1.7,1.8-1.8C21.1,133.1,22,134,21.9,135.2z"/>
<path d="M21.9,130.7c-0.1,1-0.7,1.6-1.8,1.6c-1,0.1-1.9-0.8-1.8-1.9c0-1.1,0.7-1.7,1.8-1.8C21.1,128.6,22,129.5,21.9,130.7z"/>
<path d="M33.6,136.8c-1.1,0-2-1-1.8-2c0.1-1.1,0.8-1.7,1.9-1.7c1,0,1.9,1,1.8,2C35.3,136.2,34.6,136.7,33.6,136.8z"/>
<path d="M65.1,133.1c1.1,0.1,1.7,0.7,1.8,1.8c0.1,1-0.9,1.9-1.9,1.9c-1,0-1.9-1-1.8-1.9C63.3,133.8,64,133.2,65.1,133.1z"/>
<path d="M65.1,159.2c-1.2-0.1-1.8-0.7-1.9-1.8c-0.1-1,0.9-1.9,1.9-1.9c1.1,0.1,1.7,0.7,1.8,1.8C66.9,158.4,66,159.3,65.1,159.2z"/>
<path d="M62.4,148.5c-0.1,1-0.6,1.7-1.7,1.8c-1,0.1-2-0.7-1.9-1.8c0-1.1,0.6-1.7,1.7-1.8C61.5,146.6,62.4,147.4,62.4,148.5z"/>
<path d="M53.4,153.1c-0.1,0.9-0.7,1.5-1.8,1.6c-1.1,0-1.9-0.8-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.7C52.6,151.1,53.4,151.9,53.4,153.1z "/>
<path d="M57.9,148.5c-0.1,1.1-0.7,1.7-1.8,1.8c-1,0-1.9-0.8-1.9-1.8c0-1,0.9-1.8,1.9-1.8C57.3,146.7,57.8,147.4,57.9,148.5z"/>
<path d="M51.8,150.2c-1.2,0-2.1-0.8-2-1.8c0.1-1.1,0.7-1.7,1.8-1.8c1.1,0,1.9,0.8,1.8,1.8C53.3,149.6,52.7,150.1,51.8,150.2z"/>
<path d="M20.2,145.8c-1,0-1.9-0.8-1.8-1.8c0-1.1,0.7-1.7,1.8-1.7c1.1,0,1.7,0.6,1.8,1.7C22,144.9,21.2,145.8,20.2,145.8z"/>
<path d="M26.4,144c-0.1,1.1-0.7,1.7-1.8,1.8c-1,0.1-1.9-0.8-1.9-1.8c0-1,0.8-1.8,1.9-1.8C25.8,142.2,26.3,142.9,26.4,144z"/>
<path d="M48.9,148.4c0,1.2-0.9,2-2,1.9c-1.1-0.1-1.7-0.8-1.6-1.9c0-1.1,0.9-1.8,1.9-1.7C48.3,146.8,48.8,147.4,48.9,148.4z"/>
<path d="M78.5,150.2c-1.1,0-1.9-0.8-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.7c1.1,0,1.8,0.8,1.8,1.9C80.3,149.5,79.5,150.2,78.5,150.2z"/>
<path d="M38.1,150.2c-1,0-1.9-0.8-1.9-1.8c0.1-1.1,0.6-1.7,1.8-1.8c1-0.1,1.9,0.8,1.9,1.8C39.9,149.4,39.1,150.2,38.1,150.2z"/>
<path d="M75.8,148.5c0,1-0.9,1.8-1.9,1.7c-1.1-0.1-1.7-0.8-1.7-1.8c0-1.1,0.7-1.7,1.8-1.7C75.1,146.6,75.9,147.4,75.8,148.5z"/>
<path d="M71.4,148.4c0,1-0.8,1.9-1.8,1.8c-1.1,0-1.7-0.7-1.8-1.8c0-1.1,0.6-1.7,1.7-1.8C70.5,146.6,71.3,147.4,71.4,148.4z"/>
<path d="M29.3,146.6c0.9,0.1,1.5,0.7,1.6,1.8c0.1,1-0.8,1.9-1.8,1.8c-1.1,0-1.7-0.7-1.8-1.8C27.2,147.5,28.1,146.6,29.3,146.6z"/>
<path d="M51.7,145.8c-1.2,0-2-0.8-2-1.9c0.1-1.1,0.7-1.7,1.8-1.7c1.1,0,1.9,0.8,1.8,1.8C53.3,145.1,52.6,145.6,51.7,145.8z"/>
<path d="M26.4,148.5c-0.1,1.1-0.7,1.7-1.8,1.7c-1.1,0-1.9-0.8-1.8-1.8c0-1,0.9-1.8,1.9-1.8C25.8,146.7,26.4,147.4,26.4,148.5z"/>
<path d="M19.9,146.6c1.2,0,2.1,0.7,2,1.8c0,1.1-0.6,1.7-1.7,1.8c-1.1,0.1-1.9-0.7-1.9-1.8C18.4,147.3,19,146.8,19.9,146.6z"/>
<path d="M74,145.8c-1,0-1.8-0.9-1.7-1.9c0.1-1.1,0.7-1.7,1.8-1.7c1.1,0,1.7,0.7,1.8,1.8C75.9,145,75,145.8,74,145.8z"/>
<path d="M33.7,159.2c-1.2-0.1-1.8-0.7-1.9-1.7c-0.1-1,0.8-1.9,1.8-1.9c1,0,1.9,0.9,1.8,1.9C35.4,158.4,34.6,159.2,33.7,159.2z"/>
<path d="M33.6,137.7c1.2,0.1,1.8,0.7,1.8,1.8c0.1,1-0.9,1.9-1.9,1.8c-1.1-0.1-1.7-0.7-1.8-1.8C31.7,138.5,32.6,137.6,33.6,137.7z"/>
<path d="M65.1,137.7c1.1,0.1,1.7,0.7,1.8,1.8c0.1,1-0.9,1.9-1.9,1.9c-1,0-1.9-1-1.8-1.9C63.3,138.3,64,137.7,65.1,137.7z"/>
<path d="M67.7,135c0-1.1,0.7-1.7,1.7-1.8c1-0.1,1.9,0.8,1.9,1.8c0,1-0.9,1.9-1.9,1.8C68.4,136.7,67.8,136.1,67.7,135z"/>
<path d="M57.9,135c0,1.1-0.7,1.7-1.7,1.8c-1,0.1-1.9-0.8-1.9-1.8c0-1,0.9-1.9,1.9-1.8C57.2,133.3,57.8,133.9,57.9,135z"/>
<path d="M21.9,139.3c0,1.2-0.8,2.1-1.8,2c-1.1-0.1-1.7-0.7-1.8-1.8c0-1.1,0.8-1.9,1.8-1.8C21.2,137.7,21.8,138.3,21.9,139.3z"/>
<path d="M57.9,161.9c-0.1,1.1-0.7,1.7-1.8,1.8c-1,0.1-1.9-0.9-1.9-1.9c0.1-1.1,0.7-1.7,1.8-1.8C57,160,57.9,160.9,57.9,161.9z"/>
<path d="M44.4,135c0,1-0.9,1.9-1.9,1.8c-1-0.1-1.7-0.7-1.7-1.8c0-1.1,0.7-1.7,1.7-1.8C43.5,133,44.4,134,44.4,135z"/>
<path d="M30.9,135c-0.1,1.1-0.7,1.7-1.8,1.8c-1,0.1-1.9-0.9-1.9-1.9c0-1,0.9-1.9,1.9-1.8C30.2,133.2,30.9,134,30.9,135z"/>
<path d="M74,154.7c-1.1-0.1-1.7-0.7-1.8-1.8c0-1.1,0.8-1.9,1.8-1.9c1,0,1.9,0.9,1.8,1.9C75.7,154.1,75.1,154.7,74,154.7z"/>
<path d="M44.4,161.9c0,1-0.9,2-1.8,1.9c-1.1-0.1-1.7-0.7-1.8-1.8c0-1.1,0.6-1.7,1.7-1.9C43.4,159.9,44.4,160.9,44.4,161.9z"/>
<path d="M36.3,135c0.1-1.1,0.7-1.7,1.7-1.8c1-0.1,1.9,0.8,1.9,1.8c0,1-0.9,1.9-1.9,1.9C37.1,136.8,36.3,135.9,36.3,135z"/>
<path d="M69.4,154.7c-0.9,0-1.6-0.6-1.7-1.7c-0.1-1,0.7-1.9,1.7-2c1,0,1.9,0.8,1.9,1.8C71.4,153.9,70.6,154.7,69.4,154.7z"/>
<path d="M24.6,151.1c1,0,1.8,0.9,1.8,1.9c-0.1,1.1-0.7,1.7-1.8,1.7c-1.1,0-1.7-0.7-1.8-1.8C22.7,151.9,23.6,151.1,24.6,151.1z"/>
<path d="M84.8,153.1c-0.1,1-0.7,1.6-1.8,1.7c-1,0-1.9-0.8-1.9-1.8c0-1,0.9-1.8,1.9-1.8C84.1,151.2,84.8,152,84.8,153.1z"/>
<path d="M44.4,157.5c-0.1,0.9-0.7,1.6-1.8,1.7c-1.1,0.1-1.9-0.7-1.9-1.8c0-1.1,0.7-1.7,1.7-1.8C43.5,155.5,44.4,156.4,44.4,157.5z "/>
<path d="M84.8,143.9c-0.1,1.1-0.6,1.8-1.7,1.9c-1,0.1-1.9-0.7-1.9-1.8c0-1,0.8-1.9,1.9-1.8C84.1,142.2,84.7,142.8,84.8,143.9z"/>
<path d="M71.4,144c0,1-0.9,1.9-1.9,1.8c-1.1-0.1-1.7-0.7-1.7-1.8c0-1.1,0.6-1.7,1.7-1.8C70.5,142.1,71.4,142.9,71.4,144z"/>
<path d="M56.2,154.7c-1.2,0-2.1-0.8-2-1.8c0.1-1.1,0.7-1.7,1.8-1.8c1-0.1,1.9,0.8,1.8,1.9C57.8,154.1,57.2,154.7,56.2,154.7z"/>
<path d="M83,141.3c-1,0-1.9-0.9-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.7c1.1,0,1.7,0.6,1.8,1.7C84.9,140.4,84,141.3,83,141.3z"/>
<path d="M57.9,144c-0.1,1.1-0.7,1.7-1.8,1.8c-1,0-1.9-0.9-1.8-1.9c0-1,0.9-1.8,2-1.7C57.3,142.3,57.8,142.9,57.9,144z"/>
<path d="M62.4,130.5c-0.1,1-0.6,1.7-1.7,1.8c-1,0.1-1.9-0.8-2-1.8c0-1,0.9-2,1.9-1.9C61.6,128.7,62.2,129.4,62.4,130.5z"/>
<path d="M42.5,141.3c-1,0-1.8-0.9-1.7-2c0.1-1.1,0.8-1.7,1.8-1.7c1.1,0,1.7,0.7,1.8,1.8C44.5,140.5,43.5,141.3,42.5,141.3z"/>
<path d="M44.4,153c0,1-0.9,1.9-1.9,1.8c-1.1-0.1-1.7-0.7-1.7-1.8c0-1.1,0.7-1.7,1.7-1.8C43.6,151.1,44.4,151.9,44.4,153z"/>
<path d="M44.4,143.9c0,1-0.8,1.9-1.8,1.9c-1.1,0-1.7-0.6-1.8-1.7c0-1.1,0.5-1.8,1.6-1.9C43.5,142.1,44.4,142.9,44.4,143.9z"/>
<path d="M33.4,132.3c-1.1-0.2-1.6-0.9-1.6-1.9c0-1,1.1-1.8,2-1.7c1,0.1,1.8,1.1,1.6,2.1C35.2,131.7,34.4,132.4,33.4,132.3z"/>
<path d="M38.1,132.3c-1.1-0.1-1.8-0.8-1.8-1.8c-0.1-1,0.9-1.9,1.9-1.8c1.1,0.1,1.7,0.7,1.8,1.8C40,131.5,39,132.4,38.1,132.3z"/>
<path d="M51.6,141.3c-1,0-1.9-0.8-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.7c1.1,0,1.7,0.6,1.8,1.7C53.4,140.4,52.6,141.3,51.6,141.3z"/>
<path d="M47,137.7c1.1,0.1,1.7,0.6,1.8,1.7c0.1,1-0.7,1.9-1.7,2c-1,0-1.9-0.8-1.9-1.8C45.3,138.3,46,137.8,47,137.7z"/>
<path d="M44.4,148.5c0,1-0.9,1.9-1.9,1.8c-1.1-0.1-1.7-0.7-1.7-1.8c0-1.1,0.6-1.7,1.7-1.8C43.6,146.6,44.4,147.4,44.4,148.5z"/>
<path d="M24.7,141.3c-1.2,0-2-0.9-1.9-1.9c0.1-1.1,0.8-1.7,1.8-1.7c1.1,0,1.8,0.8,1.8,1.9C26.3,140.7,25.6,141.2,24.7,141.3z"/>
<path d="M83.2,150.2c-1.2,0-2.1-0.8-2-1.9c0.1-1.1,0.7-1.7,1.8-1.7c1.1,0,1.9,0.8,1.8,1.9C84.7,149.6,84.1,150.2,83.2,150.2z"/>
<path d="M62.4,135c-0.1,1.1-0.8,1.7-1.8,1.8c-1,0.1-1.9-0.9-1.9-1.9c0-1,1-1.9,2-1.8C61.7,133.3,62.3,134,62.4,135z"/>
<path d="M29.2,142.2c1,0.1,1.6,0.7,1.7,1.7c0.1,1-0.8,1.9-1.8,1.9c-1.1,0-1.7-0.7-1.8-1.7C27.2,143,28.1,142.2,29.2,142.2z"/>
<path d="M29.1,154.7c-1,0-1.9-0.8-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.8c1,0,1.9,0.8,1.8,1.9C30.9,154,30.1,154.7,29.1,154.7z"/>
<path d="M48.9,157.6c-0.1,0.9-0.7,1.6-1.8,1.6c-1.1,0.1-1.9-0.8-1.8-1.8c0-1.1,0.7-1.7,1.8-1.8C48.1,155.5,48.9,156.4,48.9,157.6z "/>
<path d="M53.4,157.6c-0.1,1-0.7,1.6-1.8,1.6c-1,0-1.9-0.8-1.8-1.9c0.1-1.1,0.7-1.7,1.8-1.7C52.6,155.5,53.4,156.4,53.4,157.6z"/>
<path d="M62.4,161.9c-0.1,1.1-0.7,1.7-1.8,1.8c-1,0.1-1.9-0.8-1.9-1.8c0-1,1-1.9,1.9-1.9C61.5,160.1,62.4,161,62.4,161.9z"/>
<path d="M80.3,157.6c-0.1,0.9-0.6,1.6-1.7,1.7c-1,0.1-1.9-0.8-1.9-1.8c0-1.1,0.7-1.7,1.7-1.8C79.4,155.5,80.3,156.4,80.3,157.6z"/>
<path d="M74,159.2c-1.1-0.1-1.7-0.7-1.7-1.8c0-1,0.8-1.9,1.9-1.8c1,0,1.8,0.9,1.7,2C75.7,158.6,75,159.1,74,159.2z"/>
<path d="M232.6,156.9c1.1,0.2,1.6,0.9,1.4,1.9c-0.1,1-0.8,1.4-1.8,1.3c-0.9-0.1-1.5-0.8-1.4-1.7 C230.9,157.4,231.6,156.9,232.6,156.9z"/>
<path d="M262.4,174.3c-0.2,1.5-0.7,2.1-1.8,2c-1-0.1-1.5-0.7-1.5-1.7c0-1,0.7-1.7,1.7-1.5C261.5,173.3,262,174,262.4,174.3z"/>
<path d="M262.4,154c-0.1,1.5-0.6,2.1-1.7,2.1c-1,0-1.6-0.6-1.6-1.6c0-1,0.6-1.8,1.6-1.6C261.4,153,261.9,153.7,262.4,154z"/>
<path d="M246.3,110.1c1-0.8,1.6-1.4,2.2-1.6c1-0.2,1.7,0.6,1.7,1.6c0,1-0.6,1.8-1.7,1.6C247.9,111.5,247.3,110.8,246.3,110.1z"/>
<path d="M244,164.2c-0.3-0.4-0.9-1-1-1.7c-0.2-1,0.7-1.8,1.6-1.6c0.6,0.1,1.4,0.9,1.5,1.6C246.3,163.6,245.5,164.1,244,164.2z"/>
<path d="M254.8,154.1c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.8,0.6,1.6,1.6c-0.1,0.6-1,1.5-1.5,1.5c-0.6,0-1.3-0.8-1.9-1.2 C254.8,154.6,254.8,154.4,254.8,154.1z"/>
<path d="M254.5,154.9c-0.6,0.4-1.3,1.2-1.9,1.2c-0.6,0-1.4-0.9-1.5-1.5c-0.2-1,0.6-1.8,1.6-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C254.5,154.4,254.5,154.6,254.5,154.9z"/>
<path d="M266.6,162.9c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.2-1.8-0.6-1.6-1.5c0.1-0.6,0.9-1.5,1.5-1.5c0.6,0,1.3,0.8,1.9,1.2 C266.6,162.5,266.6,162.7,266.6,162.9z"/>
<path d="M254.3,125.7c0,1.6-0.7,2.3-1.6,2.1c-0.6-0.1-1.4-0.9-1.6-1.5c-0.2-1,0.6-1.7,1.6-1.6 C253.3,124.8,253.9,125.4,254.3,125.7z"/>
<path d="M242.7,125.9c0.6-0.4,1.2-1.1,1.8-1.2c1-0.1,1.7,0.5,1.6,1.6c0,1-0.7,1.7-1.6,1.5c-0.7-0.1-1.3-0.8-1.9-1.3 C242.7,126.3,242.7,126.1,242.7,125.9z"/>
<path d="M216.7,152.6c0.4,0.6,1.1,1.2,1.2,1.9c0.1,1-0.6,1.7-1.6,1.6c-1.1,0-1.7-0.7-1.5-1.7c0.1-0.7,0.8-1.2,1.3-1.8 C216.3,152.6,216.5,152.6,216.7,152.6z"/>
<path d="M266.6,158.9c-0.6,0.4-1.2,1.1-1.9,1.2c-1,0.1-1.7-0.6-1.6-1.6c0-1.1,0.7-1.7,1.7-1.5c0.6,0.1,1.2,0.8,1.8,1.3 C266.6,158.5,266.6,158.7,266.6,158.9z"/>
<path d="M245,132.5c0.4,0.6,1.1,1.2,1.2,1.9c0.1,1-0.6,1.7-1.6,1.6c-1,0-1.7-0.7-1.5-1.8c0.2-0.6,0.9-1.2,1.3-1.7 C244.5,132.4,244.8,132.5,245,132.5z"/>
<path d="M254.3,109.6c-0.1,1.5-0.7,2.3-1.7,2.1c-0.6-0.1-1.4-0.9-1.5-1.5c-0.2-1,0.6-1.8,1.6-1.6 C253.3,108.6,253.9,109.3,254.3,109.6z"/>
<path d="M245,156.7c0.4,0.6,1.1,1.2,1.2,1.9c0.2,1-0.6,1.7-1.6,1.6c-1,0-1.7-0.7-1.5-1.7c0.2-0.6,0.9-1.2,1.3-1.7 C244.5,156.7,244.8,156.7,245,156.7z"/>
<path d="M244.3,140.2c-0.5-0.6-1.2-1.1-1.3-1.8c-0.2-1,0.5-1.7,1.5-1.7c1,0,1.8,0.6,1.6,1.6c-0.1,0.7-0.8,1.2-1.2,1.9 C244.7,140.2,244.5,140.2,244.3,140.2z"/>
<path d="M249,120.3c0.4,0.6,1.1,1.2,1.2,1.9c0.1,1-0.6,1.7-1.7,1.6c-1-0.1-1.7-0.8-1.5-1.7c0.1-0.6,0.8-1.2,1.3-1.8 C248.6,120.3,248.8,120.3,249,120.3z"/>
<path d="M249.1,176.3c-1.5-0.1-2.2-0.6-2.2-1.7c0-1,0.6-1.6,1.5-1.6c1.1,0,1.8,0.6,1.7,1.6C250.1,175.3,249.4,175.9,249.1,176.3z"/>
<path d="M254.5,142.7c-0.6,0.4-1.1,1.1-1.8,1.2c-1,0.2-1.7-0.5-1.7-1.6c0-1,0.7-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C254.5,142.3,254.5,142.5,254.5,142.7z"/>
<path d="M256.3,144.3c-0.4-0.6-1.1-1.2-1.2-1.8c-0.2-1,0.6-1.8,1.6-1.6c0.6,0.1,1.5,0.9,1.5,1.5c0,0.6-0.8,1.3-1.2,1.9 C256.8,144.3,256.6,144.3,256.3,144.3z"/>
<path d="M262.6,142.8c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.2-1.7-0.6-1.6-1.6c0-0.9,0.6-1.7,1.6-1.5c0.7,0.1,1.3,0.8,1.9,1.3 C262.6,142.3,262.6,142.5,262.6,142.8z"/>
<path d="M266.4,171.1c-0.4,0.3-1,1-1.6,1.1c-1,0.2-1.7-0.5-1.7-1.6c0-1,0.6-1.6,1.6-1.6C265.7,169,266.3,169.6,266.4,171.1z"/>
<path d="M254.2,171.3c-0.4,0.3-1,0.9-1.7,1c-1,0.1-1.8-0.7-1.5-1.7c0.2-0.6,1-1.4,1.6-1.5C253.7,168.9,254.3,169.7,254.2,171.3z"/>
<path d="M242.9,171.1c0.1-1.5,0.7-2.1,1.7-2.1c0.9,0,1.6,0.6,1.5,1.6c0,1.1-0.7,1.7-1.7,1.6C243.8,172.1,243.3,171.4,242.9,171.1z "/>
<path d="M222.5,170.3c0.6-0.4,1.2-1.1,1.8-1.2c1-0.1,1.7,0.6,1.7,1.6c0,1-0.7,1.7-1.7,1.5c-0.6-0.1-1.2-0.8-1.8-1.3 C222.5,170.7,222.5,170.5,222.5,170.3z"/>
<path d="M229,164.2c-1.6,0-2.2-0.6-2.2-1.7c0-0.9,0.6-1.6,1.6-1.6c1,0,1.8,0.6,1.6,1.6C229.9,163.2,229.2,163.8,229,164.2z"/>
<path d="M273.2,164.8c0.4,0.6,1.1,1.2,1.2,1.8c0.2,1-0.6,1.8-1.6,1.6c-0.6-0.1-1.5-1-1.5-1.5c0-0.6,0.8-1.3,1.2-1.9 C272.7,164.8,272.9,164.8,273.2,164.8z"/>
<path d="M265.1,164.8c0.4,0.6,1.1,1.2,1.2,1.8c0.2,1-0.6,1.7-1.6,1.7c-1,0-1.8-0.7-1.6-1.7c0.1-0.7,0.8-1.2,1.2-1.8 C264.6,164.8,264.9,164.8,265.1,164.8z"/>
<path d="M262.6,162.9c-0.6,0.4-1.1,1.1-1.8,1.2c-1,0.2-1.7-0.5-1.7-1.5c0-1,0.7-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C262.6,162.5,262.6,162.7,262.6,162.9z"/>
<path d="M256.3,164.4c-0.4-0.6-1-1.2-1.2-1.8c-0.2-1,0.6-1.8,1.6-1.6c0.6,0.1,1.5,1,1.5,1.6c0,0.6-0.8,1.3-1.2,1.9 C256.7,164.4,256.5,164.4,256.3,164.4z"/>
<path d="M222.2,163c-0.6,0.4-1.2,1-1.8,1.1c-1,0.2-1.8-0.6-1.6-1.6c0.1-0.6,1-1.5,1.6-1.5c0.6,0,1.3,0.8,1.9,1.2 C222.2,162.5,222.2,162.7,222.2,163z"/>
<path d="M268.3,164.4c-0.4-0.6-1-1.2-1.1-1.9c-0.1-1,0.7-1.8,1.6-1.6c0.6,0.1,1.5,1,1.5,1.6c0,0.6-0.8,1.2-1.3,1.9 C268.8,164.4,268.6,164.4,268.3,164.4z"/>
<path d="M244.9,120.3c0.4,0.6,1.3,1.3,1.2,1.9c0,0.6-0.9,1.4-1.5,1.6c-1,0.2-1.8-0.6-1.6-1.6c0.1-0.7,0.8-1.2,1.2-1.8 C244.4,120.3,244.6,120.3,244.9,120.3z"/>
<path d="M248.1,164.2c-0.3-0.4-0.9-1-1-1.6c-0.2-1,0.6-1.8,1.6-1.6c0.6,0.1,1.4,0.9,1.6,1.5C250.4,163.5,249.6,164.1,248.1,164.2z "/>
<path d="M234.3,162.9c-0.6,0.4-1.1,1.1-1.8,1.2c-1,0.2-1.7-0.5-1.7-1.5c0-1,0.7-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C234.3,162.5,234.3,162.7,234.3,162.9z"/>
<path d="M234.3,110.4c-0.6,0.4-1.2,1.1-1.9,1.2c-0.9,0.2-1.6-0.6-1.6-1.5c0-1,0.6-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C234.3,109.9,234.3,110.2,234.3,110.4z"/>
<path d="M242.4,110.4c-0.6,0.4-1.1,1.1-1.8,1.2c-1,0.2-1.7-0.6-1.7-1.6c0-1,0.7-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C242.4,110,242.4,110.2,242.4,110.4z"/>
<path d="M254.5,118.5c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.2-1.7-0.5-1.7-1.6c0-1,0.7-1.7,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.3 C254.5,118.1,254.5,118.3,254.5,118.5z"/>
<path d="M242.7,113.8c0.6-0.4,1.1-1.1,1.8-1.3c1-0.2,1.7,0.5,1.7,1.5c0,1.1-0.7,1.8-1.6,1.6c-0.7-0.1-1.2-0.8-1.8-1.2 C242.7,114.3,242.7,114.1,242.7,113.8z"/>
<path d="M236.1,120c-0.4-0.6-1-1.2-1.1-1.8c-0.2-1,0.7-1.8,1.6-1.6c0.6,0.1,1.5,1,1.5,1.6c0,0.6-0.8,1.3-1.2,1.9 C236.6,120,236.3,120,236.1,120z"/>
<path d="M242.2,186.3c-0.1,1.5-0.6,2.2-1.7,2.2c-1,0-1.6-0.6-1.6-1.5c0-1,0.6-1.8,1.6-1.6C241.2,185.3,241.7,186,242.2,186.3z"/>
<path d="M256.3,184.6c-0.4-0.6-1.1-1.1-1.2-1.8c-0.2-1,0.6-1.7,1.6-1.7c1,0,1.8,0.7,1.6,1.7c-0.1,0.7-0.8,1.2-1.3,1.8 C256.8,184.6,256.5,184.6,256.3,184.6z"/>
<path d="M244.3,184.6c-0.4-0.6-1.1-1.1-1.3-1.8c-0.2-1,0.5-1.7,1.5-1.7c1,0,1.8,0.6,1.6,1.6c-0.1,0.7-0.8,1.2-1.2,1.8 C244.7,184.6,244.5,184.6,244.3,184.6z"/>
<path d="M273.2,176.9c0.4,0.6,1,1.2,1.2,1.8c0.2,1-0.6,1.8-1.6,1.6c-0.6-0.1-1.5-1-1.5-1.5c0-0.6,0.8-1.3,1.2-1.9 C272.7,176.9,273,176.9,273.2,176.9z"/>
<path d="M257.1,176.9c0.4,0.6,1.1,1.2,1.2,1.8c0.1,1-0.6,1.7-1.6,1.6c-1,0-1.7-0.7-1.5-1.7c0.1-0.6,0.8-1.2,1.3-1.8 C256.6,176.9,256.8,176.9,257.1,176.9z"/>
<path d="M254.5,179c-0.6,0.5-1.3,1.3-1.9,1.2c-0.6,0-1.4-0.9-1.6-1.5c-0.2-1,0.5-1.8,1.6-1.6c0.7,0.1,1.2,0.7,1.8,1.1 C254.5,178.6,254.5,178.8,254.5,179z"/>
<path d="M268.5,176.6c-0.4-0.6-1.1-1.1-1.2-1.8c-0.2-1,0.5-1.7,1.5-1.7c1.1,0,1.7,0.7,1.6,1.6c-0.1,0.7-0.8,1.2-1.2,1.8 C268.9,176.6,268.7,176.6,268.5,176.6z"/>
<path d="M264.4,176.6c-0.4-0.6-1.2-1.3-1.2-1.9c0-0.6,0.9-1.4,1.5-1.5c1-0.2,1.8,0.6,1.6,1.6c-0.1,0.7-0.8,1.2-1.2,1.8 C264.9,176.6,264.6,176.6,264.4,176.6z"/>
<path d="M215.9,176.6c-0.4-0.6-1.1-1.2-1.2-1.8c-0.2-1,0.6-1.8,1.6-1.6c0.6,0.1,1.5,1,1.5,1.5c0,0.6-0.8,1.3-1.2,1.9 C216.4,176.6,216.2,176.6,215.9,176.6z"/>
<path d="M274.7,170.9c-0.6,0.4-1.1,1.1-1.8,1.3c-1,0.2-1.7-0.5-1.7-1.5c0-1,0.7-1.8,1.6-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C274.7,170.5,274.7,170.7,274.7,170.9z"/>
<path d="M254.8,170.3c0.6-0.4,1.2-1.1,1.8-1.2c1-0.1,1.7,0.6,1.7,1.6c0,1-0.7,1.7-1.7,1.5c-0.6-0.1-1.2-0.8-1.8-1.3 C254.8,170.7,254.8,170.5,254.8,170.3z"/>
<path d="M222,170.1c0,1.6-0.6,2.3-1.6,2.1c-0.6-0.1-1.4-0.9-1.6-1.5c-0.2-1,0.6-1.8,1.6-1.6C221,169.2,221.6,169.8,222,170.1z"/>
<path d="M275.2,167.2c0.1-1.5,0.6-2.1,1.7-2.1c1,0,1.6,0.6,1.6,1.5c0,1-0.6,1.8-1.6,1.6C276.2,168.1,275.6,167.4,275.2,167.2z"/>
<path d="M269.1,164.8c0.4,0.6,1.1,1.2,1.2,1.8c0.2,1-0.6,1.7-1.6,1.7c-1,0-1.7-0.7-1.5-1.7c0.1-0.7,0.8-1.2,1.2-1.8 C268.7,164.8,268.9,164.8,269.1,164.8z"/>
<path d="M262.4,167.1c-0.4,0.3-1,1-1.7,1.1c-0.9,0.2-1.6-0.6-1.6-1.5c0-0.9,0.5-1.6,1.5-1.7C261.6,165,262.2,165.5,262.4,167.1z"/>
<path d="M248.1,165c1.6,0.1,2.2,0.7,2.2,1.7c0,0.9-0.6,1.6-1.6,1.6c-1,0-1.8-0.7-1.6-1.7C247.1,165.9,247.8,165.4,248.1,165z"/>
<path d="M232.9,164.8c0.4,0.6,1,1.2,1.1,1.9c0.1,1-0.6,1.6-1.6,1.6c-1,0-1.7-0.7-1.5-1.6c0.1-0.7,0.8-1.3,1.3-1.9 C232.4,164.8,232.6,164.8,232.9,164.8z"/>
<path d="M228.5,165c1,0.1,1.6,0.7,1.6,1.7c0,1-0.7,1.5-1.6,1.5c-1,0-1.6-0.6-1.6-1.6C226.8,165.7,227.4,165,228.5,165z"/>
<path d="M222.5,166.3c0.6-0.4,1.1-1.1,1.8-1.3c1-0.2,1.7,0.5,1.7,1.5c0,1-0.7,1.8-1.6,1.6c-0.7-0.1-1.2-0.8-1.8-1.2 C222.5,166.8,222.5,166.5,222.5,166.3z"/>
<path d="M216.6,164.7c0.4,0.6,1.3,1.3,1.2,1.9c0,0.6-0.9,1.4-1.5,1.5c-1,0.2-1.7-0.6-1.6-1.6c0.1-0.7,0.8-1.2,1.2-1.8 C216.1,164.8,216.4,164.8,216.6,164.7z"/>
<path d="M256.4,120c-0.4-0.6-1.1-1.1-1.3-1.7c-0.2-1,0.5-1.7,1.5-1.7c1,0,1.8,0.6,1.7,1.6c-0.1,0.7-0.8,1.2-1.2,1.8 C256.9,120,256.6,120,256.4,120z"/>
<path d="M234.3,122.5c-0.6,0.4-1.1,1.1-1.8,1.3c-1,0.2-1.7-0.5-1.7-1.6c0-1,0.6-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C234.3,122.1,234.3,122.3,234.3,122.5z"/>
<path d="M272.5,164.4c-0.4-0.6-1.3-1.3-1.2-1.9c0-0.6,0.9-1.4,1.5-1.6c1-0.2,1.8,0.6,1.6,1.6c-0.1,0.7-0.8,1.2-1.2,1.8 C273,164.4,272.7,164.4,272.5,164.4z"/>
<path d="M266.9,154.2c0.6-0.5,1.1-1.2,1.8-1.3c1-0.2,1.7,0.5,1.7,1.5c0,1-0.6,1.8-1.6,1.6c-0.7-0.1-1.2-0.8-1.8-1.2 C266.9,154.7,266.9,154.5,266.9,154.2z"/>
<path d="M266.6,154.9c-0.7,0.4-1.4,1.2-2,1.1c-0.6-0.1-1.4-1-1.5-1.6c-0.2-1,0.7-1.7,1.7-1.5c0.7,0.1,1.2,0.8,1.8,1.3 C266.6,154.4,266.6,154.7,266.6,154.9z"/>
<path d="M252.3,140.2c-0.4-0.6-1.1-1.2-1.2-1.8c-0.2-1,0.6-1.7,1.6-1.7c1,0,1.8,0.7,1.5,1.7c-0.1,0.7-0.8,1.2-1.3,1.8 C252.7,140.2,252.5,140.2,252.3,140.2z"/>
<path d="M234.3,154.8c-0.6,0.4-1.3,1.2-1.9,1.2c-0.6,0-1.4-0.9-1.5-1.5c-0.2-1,0.6-1.7,1.6-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C234.3,154.4,234.3,154.6,234.3,154.8z"/>
<path d="M228.7,152.6c0.4,0.6,1.1,1.1,1.2,1.8c0.2,1-0.5,1.7-1.6,1.7c-1.1,0-1.7-0.7-1.6-1.7c0.1-0.7,0.8-1.2,1.2-1.8 C228.3,152.6,228.5,152.6,228.7,152.6z"/>
<path d="M222.5,154.2c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.7,0.6,1.7,1.6c0,1-0.7,1.8-1.7,1.6c-0.7-0.1-1.2-0.8-1.8-1.3 C222.5,154.6,222.5,154.4,222.5,154.2z"/>
<path d="M222.2,154.9c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.1-1.7-0.6-1.6-1.6c0-1,0.7-1.7,1.7-1.5c0.6,0.1,1.2,0.8,1.8,1.3 C222.2,154.5,222.2,154.7,222.2,154.9z"/>
<path d="M266.6,150.8c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.2-1.7-0.5-1.7-1.6c0-1,0.7-1.7,1.6-1.6c0.7,0.1,1.3,0.8,1.9,1.2 C266.6,150.3,266.6,150.6,266.6,150.8z"/>
<path d="M256.3,140.2c-0.4-0.6-1.1-1.1-1.2-1.8c-0.2-1,0.5-1.7,1.5-1.7c1,0,1.8,0.7,1.6,1.7c-0.1,0.7-0.8,1.2-1.2,1.8 C256.8,140.2,256.6,140.2,256.3,140.2z"/>
<path d="M222.5,142c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.7,0.6,1.7,1.6c0,1-0.7,1.7-1.7,1.5c-0.7-0.1-1.2-0.8-1.8-1.3 C222.5,142.5,222.5,142.2,222.5,142z"/>
<path d="M254.5,150.8c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.2-1.7-0.5-1.7-1.6c0-1,0.7-1.7,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.3 C254.5,150.4,254.5,150.6,254.5,150.8z"/>
<path d="M228.1,144.3c-0.5-0.6-1.2-1.2-1.3-1.9c-0.2-0.9,0.5-1.6,1.5-1.6c1.1,0,1.8,0.6,1.7,1.6c-0.1,0.7-0.8,1.2-1.2,1.9 C228.6,144.2,228.4,144.3,228.1,144.3z"/>
<path d="M234.3,142.7c-0.6,0.4-1.1,1.1-1.8,1.3c-1,0.2-1.7-0.5-1.7-1.5c0-1,0.6-1.8,1.6-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C234.3,142.2,234.3,142.5,234.3,142.7z"/>
<path d="M224.1,152.3c-0.4-0.6-1.1-1.1-1.3-1.8c-0.2-1,0.5-1.7,1.5-1.7c1,0,1.8,0.6,1.6,1.6c-0.1,0.7-0.8,1.2-1.2,1.8 C224.6,152.3,224.3,152.3,224.1,152.3z"/>
<path d="M248.2,144.2c-0.4-0.6-1.1-1.2-1.2-1.9c-0.1-1,0.6-1.6,1.6-1.6c1,0,1.7,0.7,1.5,1.6c-0.1,0.7-0.8,1.3-1.3,1.9 C248.6,144.3,248.4,144.2,248.2,144.2z"/>
<path d="M222.5,146c0.6-0.4,1.2-1,1.8-1.1c1-0.1,1.8,0.6,1.6,1.6c-0.1,0.6-1,1.5-1.6,1.5c-0.6,0-1.3-0.8-1.9-1.2 C222.5,146.5,222.5,146.2,222.5,146z"/>
<path d="M253,144.6c0.4,0.6,1.1,1.2,1.2,1.8c0.2,1-0.6,1.8-1.6,1.6c-0.6-0.1-1.5-1-1.5-1.5c0-0.6,0.8-1.3,1.2-1.9 C252.5,144.6,252.8,144.6,253,144.6z"/>
<path d="M242.7,146.1c0.6-0.4,1.1-1.1,1.8-1.3c1-0.2,1.7,0.5,1.7,1.5c0,1.1-0.7,1.8-1.6,1.6c-0.7-0.1-1.2-0.8-1.8-1.2 C242.7,146.6,242.7,146.4,242.7,146.1z"/>
<path d="M257,156.7c0.4,0.6,1.1,1.2,1.2,1.8c0.2,1-0.6,1.7-1.6,1.7c-1,0-1.8-0.7-1.5-1.7c0.1-0.7,0.8-1.2,1.2-1.8 C256.6,156.7,256.8,156.7,257,156.7z"/>
<path d="M234.6,125.9c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.8,0.6,1.6,1.6c-0.1,0.6-1,1.5-1.5,1.5c-0.6,0-1.3-0.8-1.9-1.2 C234.6,126.3,234.6,126.1,234.6,125.9z"/>
<path d="M242.4,130.7c-0.6,0.4-1.2,1-1.8,1.1c-1,0.2-1.8-0.7-1.6-1.6c0.1-0.6,1-1.5,1.6-1.5c0.6,0,1.3,0.8,1.9,1.2 C242.4,130.2,242.4,130.4,242.4,130.7z"/>
<path d="M244.1,132.1c-0.4-0.6-1.1-1.2-1.1-1.9c-0.1-1,0.6-1.6,1.6-1.6c0.9,0,1.7,0.7,1.5,1.6c-0.1,0.7-0.8,1.3-1.3,1.9 C244.6,132.1,244.4,132.1,244.1,132.1z"/>
<path d="M248.3,132.1c-0.4-0.6-1.1-1.1-1.2-1.8c-0.2-1,0.5-1.7,1.5-1.7c1,0,1.7,0.7,1.6,1.7c-0.1,0.7-0.8,1.2-1.2,1.8 C248.7,132.1,248.5,132.1,248.3,132.1z"/>
<path d="M254.5,122.6c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.1-1.7-0.6-1.6-1.6c0-1,0.7-1.7,1.7-1.5c0.7,0.1,1.2,0.8,1.8,1.3 C254.5,122.1,254.5,122.4,254.5,122.6z"/>
<path d="M252.3,156.8c1.5,0.3,2,0.9,1.9,2c-0.1,1-0.8,1.5-1.8,1.3c-0.9-0.1-1.6-0.8-1.4-1.7C251.2,157.8,252,157.2,252.3,156.8z"/>
<path d="M222,158c0,1.6-0.7,2.3-1.6,2.1c-0.6-0.1-1.4-0.9-1.6-1.5c-0.2-1,0.6-1.7,1.6-1.6C221,157.1,221.6,157.7,222,158z"/>
<path d="M224.7,156.7c0.4,0.6,1.1,1.2,1.2,1.8c0.2,1-0.6,1.7-1.6,1.7c-1,0-1.8-0.7-1.5-1.7c0.1-0.7,0.8-1.2,1.3-1.8 C224.3,156.7,224.5,156.7,224.7,156.7z"/>
<path d="M246.7,133.9c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.8,0.6,1.6,1.6c-0.1,0.6-1,1.5-1.5,1.5c-0.6,0-1.3-0.8-1.9-1.2 C246.7,134.4,246.7,134.2,246.7,133.9z"/>
<path d="M257.1,176.4c-1.5-0.2-2.1-0.8-2-1.8c0.1-1,0.8-1.7,1.6-1.4c0.6,0.2,1.5,1,1.5,1.6C258.2,175.3,257.4,175.9,257.1,176.4z"/>
<path d="M254.5,175c-0.6,0.4-1.1,1.1-1.8,1.2c-1,0.2-1.7-0.6-1.7-1.6c0-1,0.7-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C254.5,174.6,254.5,174.8,254.5,175z"/>
<path d="M246.7,117.8c0.6-0.4,1.2-1.1,1.8-1.2c1-0.1,1.7,0.6,1.6,1.6c0,1-0.7,1.7-1.7,1.5c-0.7-0.2-1.2-0.8-1.8-1.3 C246.7,118.2,246.7,118,246.7,117.8z"/>
<path d="M240.1,176.6c-0.4-0.6-1.1-1.2-1.2-1.8c-0.1-1,0.6-1.7,1.6-1.6c1,0,1.7,0.7,1.5,1.7c-0.1,0.7-0.8,1.2-1.3,1.8 C240.6,176.6,240.4,176.6,240.1,176.6z"/>
<path d="M222.2,175c-0.6,0.4-1.1,1.1-1.8,1.3c-1,0.2-1.7-0.5-1.7-1.5c0-1,0.6-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C222.2,174.6,222.2,174.8,222.2,175z"/>
<path d="M244.1,119.8c-0.3-0.4-1-1-1.1-1.6c-0.2-1,0.6-1.8,1.6-1.6c0.6,0.1,1.4,0.9,1.6,1.5C246.3,119.1,245.6,119.7,244.1,119.8z "/>
<path d="M242.4,118.4c-0.6,0.4-1.1,1.1-1.7,1.3c-1,0.2-1.7-0.5-1.7-1.5c0-1,0.6-1.8,1.6-1.7c0.7,0.1,1.2,0.8,1.8,1.2 C242.4,118,242.4,118.2,242.4,118.4z"/>
<path d="M234.3,146.8c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.2-1.7-0.5-1.7-1.6c0-1,0.7-1.7,1.7-1.5c0.7,0.1,1.2,0.8,1.8,1.2 C234.3,146.3,234.3,146.5,234.3,146.8z"/>
<path d="M234.6,146.2c0.6-0.4,1.1-1.1,1.7-1.3c1-0.2,1.7,0.5,1.7,1.5c0,1-0.6,1.8-1.6,1.6c-0.7-0.1-1.2-0.8-1.8-1.2 C234.6,146.6,234.6,146.4,234.6,146.2z"/>
<path d="M246.4,142.8c-0.7,0.4-1.3,1.1-2,1.2c-0.9,0.1-1.5-0.6-1.5-1.6c0-1,0.6-1.7,1.6-1.5c0.7,0.1,1.3,0.8,1.9,1.2 C246.4,142.3,246.4,142.5,246.4,142.8z"/>
<path d="M242.7,109.6c0.6-0.4,1.2-1,1.9-1.1c1-0.1,1.6,0.6,1.6,1.7c-0.1,1-0.8,1.7-1.8,1.5c-0.6-0.2-1.2-0.9-1.7-1.3 C242.7,110.1,242.7,109.8,242.7,109.6z"/>
<path d="M242.7,178.4c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.8,0.6,1.6,1.6c-0.1,0.6-1,1.5-1.5,1.5c-0.6,0-1.3-0.8-1.9-1.2 C242.7,178.9,242.7,178.6,242.7,178.4z"/>
<path d="M246.7,178.4c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.8,0.6,1.6,1.6c-0.1,0.6-1,1.5-1.5,1.5c-0.6,0-1.3-0.8-1.9-1.2 C246.7,178.8,246.7,178.6,246.7,178.4z"/>
<path d="M240.8,132.4c0.4,0.6,1.1,1.1,1.3,1.8c0.2,1-0.5,1.7-1.5,1.7c-1,0-1.8-0.7-1.6-1.6c0.1-0.7,0.8-1.2,1.2-1.8 C240.4,132.5,240.6,132.4,240.8,132.4z"/>
<path d="M261,176.9c0.4,0.6,1.1,1.1,1.3,1.8c0.2,1-0.5,1.7-1.5,1.7c-1,0-1.8-0.7-1.6-1.6c0.1-0.7,0.8-1.2,1.2-1.8 C260.5,176.9,260.8,176.9,261,176.9z"/>
<path d="M266.6,179.1c-0.6,0.4-1.3,1.2-1.9,1.2c-0.6,0-1.4-0.9-1.5-1.5c-0.2-1,0.6-1.7,1.6-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C266.6,178.6,266.6,178.8,266.6,179.1z"/>
<path d="M266.9,178.5c0.6-0.4,1.1-1.1,1.8-1.3c1-0.2,1.7,0.5,1.7,1.5c0,1-0.6,1.8-1.6,1.6c-0.7-0.1-1.2-0.8-1.8-1.2 C266.9,178.9,266.9,178.7,266.9,178.5z"/>
<path d="M234.3,114.5c-0.6,0.4-1.2,1.1-1.9,1.2c-1,0.1-1.7-0.6-1.6-1.6c0-1,0.7-1.7,1.7-1.5c0.6,0.1,1.2,0.8,1.8,1.3 C234.3,114.1,234.3,114.3,234.3,114.5z"/>
<path d="M236.2,132.1c-0.4-0.6-1.1-1.1-1.2-1.8c-0.2-1,0.5-1.7,1.5-1.7c1,0,1.8,0.7,1.6,1.7c-0.1,0.7-0.8,1.2-1.2,1.8 C236.6,132.1,236.4,132.1,236.2,132.1z"/>
<path d="M236.2,140.2c-0.5-0.6-1.1-1.1-1.3-1.8c-0.2-1,0.5-1.7,1.5-1.7c1,0,1.8,0.6,1.6,1.6c-0.1,0.7-0.8,1.2-1.2,1.8 C236.7,140.2,236.5,140.2,236.2,140.2z"/>
<path d="M256.3,152.3c-0.4-0.6-1.1-1.2-1.2-1.8c-0.2-1,0.6-1.8,1.6-1.6c0.6,0.1,1.5,1,1.5,1.5c0,0.6-0.8,1.3-1.2,1.9 C256.7,152.3,256.5,152.3,256.3,152.3z"/>
<path d="M254.8,121.8c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.8,0.6,1.6,1.6c-0.1,0.6-1,1.5-1.5,1.5c-0.6,0-1.3-0.8-1.9-1.2 C254.8,122.3,254.8,122,254.8,121.8z"/>
<path d="M222.2,167c-0.6,0.4-1.1,1.1-1.8,1.2c-1,0.2-1.7-0.6-1.7-1.6c0-1,0.7-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C222.2,166.5,222.2,166.7,222.2,167z"/>
<path d="M224,164.4c-0.4-0.6-1.1-1.2-1.2-1.8c-0.2-1,0.6-1.8,1.6-1.6c0.6,0.1,1.5,1,1.5,1.5c0,0.6-0.8,1.3-1.2,1.9 C224.5,164.4,224.2,164.4,224,164.4z"/>
<path d="M236.1,164.4c-0.4-0.6-1.1-1.2-1.2-1.8c-0.2-1,0.5-1.7,1.6-1.7c1,0,1.7,0.7,1.6,1.7c-0.1,0.7-0.8,1.2-1.3,1.8 C236.6,164.4,236.4,164.4,236.1,164.4z"/>
<path d="M256.9,144.6c0.5,0.6,1.3,1.3,1.3,1.9c0,0.6-0.9,1.4-1.5,1.6c-0.9,0.2-1.8-0.5-1.6-1.6c0.1-0.7,0.7-1.2,1.1-1.9 C256.5,144.6,256.7,144.6,256.9,144.6z"/>
<path d="M234.6,121.8c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.8,0.6,1.6,1.6c-0.1,0.6-1,1.5-1.5,1.5c-0.6,0-1.3-0.8-1.9-1.2 C234.6,122.3,234.6,122.1,234.6,121.8z"/>
<path d="M242.4,122.6c-0.6,0.4-1.2,1.1-1.9,1.2c-1,0.1-1.7-0.6-1.6-1.6c0-1,0.7-1.7,1.7-1.5c0.6,0.2,1.2,0.9,1.7,1.3 C242.4,122.2,242.4,122.4,242.4,122.6z"/>
<path d="M236.1,152.3c-0.4-0.6-1-1.2-1.1-1.8c-0.2-1,0.7-1.8,1.6-1.6c0.6,0.1,1.5,1,1.5,1.6c0,0.6-0.8,1.3-1.2,1.9 C236.6,152.3,236.3,152.3,236.1,152.3z"/>
<path d="M222.2,150.8c-0.6,0.4-1.1,1.1-1.8,1.3c-1,0.2-1.7-0.5-1.7-1.5c0-1,0.7-1.8,1.6-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C222.2,150.3,222.2,150.5,222.2,150.8z"/>
<path d="M234.3,150.9c-0.6,0.4-1.2,1-1.9,1.1c-1,0.1-1.8-0.6-1.6-1.6c0.1-0.6,1-1.5,1.6-1.5c0.6,0,1.3,0.8,1.9,1.3 C234.3,150.4,234.3,150.6,234.3,150.9z"/>
<path d="M234.6,158.2c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.8,0.6,1.6,1.6c-0.1,0.6-1,1.5-1.5,1.5c-0.6,0-1.3-0.8-1.9-1.2 C234.6,158.6,234.6,158.4,234.6,158.2z"/>
<path d="M276.5,164.4c-0.4-0.6-1.1-1.1-1.2-1.8c-0.2-1,0.5-1.7,1.5-1.7c1,0,1.8,0.7,1.6,1.7c-0.1,0.7-0.8,1.2-1.2,1.8 C277,164.4,276.8,164.4,276.5,164.4z"/>
<path d="M262.6,150.8c-0.6,0.4-1.1,1.1-1.8,1.2c-1,0.2-1.7-0.5-1.7-1.5c0-1,0.7-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C262.6,150.3,262.6,150.6,262.6,150.8z"/>
<path d="M254.5,163c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.2-1.8-0.6-1.6-1.6c0.1-0.6,1-1.5,1.6-1.5c0.6,0,1.3,0.8,1.9,1.2 C254.5,162.5,254.5,162.7,254.5,163z"/>
<path d="M242.4,183.1c-0.6,0.4-1.1,1.1-1.8,1.2c-1,0.2-1.7-0.5-1.7-1.5c0-1,0.7-1.7,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.2 C242.4,182.7,242.4,182.9,242.4,183.1z"/>
<path d="M242.1,125.7c0,1.6-0.7,2.3-1.6,2.1c-0.6-0.1-1.4-0.9-1.6-1.5c-0.2-1,0.6-1.8,1.6-1.6 C241.2,124.7,241.7,125.4,242.1,125.7z"/>
<path d="M240.9,112.3c0.4,0.6,1.1,1.1,1.2,1.8c0.2,1-0.5,1.7-1.6,1.7c-1,0-1.7-0.7-1.6-1.7c0.1-0.7,0.8-1.2,1.3-1.8 C240.4,112.3,240.6,112.3,240.9,112.3z"/>
<path d="M254.5,134.7c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.1-1.7-0.6-1.6-1.6c0-1,0.7-1.7,1.7-1.5c0.7,0.1,1.2,0.8,1.8,1.3 C254.5,134.3,254.5,134.5,254.5,134.7z"/>
<path d="M248.1,152.3c-0.4-0.6-1-1.2-1-1.9c-0.1-1,0.7-1.7,1.7-1.5c0.6,0.2,1.4,1.1,1.4,1.6c0,0.6-0.9,1.2-1.3,1.8 C248.5,152.3,248.3,152.3,248.1,152.3z"/>
<path d="M253,164.8c0.4,0.6,1.1,1.1,1.2,1.8c0.2,1-0.5,1.7-1.5,1.7c-1,0-1.8-0.7-1.6-1.7c0.1-0.7,0.8-1.2,1.2-1.8 C252.5,164.8,252.7,164.8,253,164.8z"/>
<path d="M254.9,166c0.6-0.3,1.3-0.9,1.9-1c1-0.1,1.7,0.8,1.4,1.7c-0.2,0.6-1.1,1.4-1.7,1.3c-0.6,0-1.2-0.9-1.8-1.4 C254.8,166.5,254.8,166.3,254.9,166z"/>
<path d="M229,152.1c-1.6,0-2.3-0.7-2.1-1.6c0.1-0.6,0.9-1.4,1.5-1.6c1-0.2,1.8,0.6,1.6,1.6C229.9,151.1,229.2,151.7,229,152.1z"/>
<path d="M263,146.5c-1.1,0.7-1.6,1.4-2.3,1.5c-1,0.1-1.7-0.6-1.6-1.6c0-1,0.7-1.7,1.7-1.5C261.5,145,262,145.7,263,146.5z"/>
<path d="M230.7,146.5c-1,0.8-1.6,1.5-2.3,1.6c-1,0.2-1.7-0.6-1.6-1.6c0-1,0.7-1.7,1.7-1.5C229.2,145,229.7,145.7,230.7,146.5z"/>
<path d="M242.1,170.1c0,1.6-0.7,2.3-1.6,2.1c-0.6-0.1-1.4-0.9-1.6-1.5c-0.2-1,0.6-1.8,1.6-1.6 C241.2,169.2,241.8,169.8,242.1,170.1z"/>
<path d="M254.5,130.6c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.2-1.7-0.6-1.7-1.6c0-1,0.7-1.8,1.7-1.6c0.7,0.1,1.2,0.8,1.8,1.3 C254.5,130.2,254.5,130.4,254.5,130.6z"/>
<path d="M240.8,144.6c0.4,0.6,1.1,1.1,1.2,1.8c0.2,1-0.5,1.7-1.5,1.7c-1,0-1.8-0.7-1.6-1.7c0.1-0.7,0.8-1.2,1.2-1.8 C240.4,144.6,240.6,144.6,240.8,144.6z"/>
<path d="M215.9,152.3c-0.4-0.6-1.1-1.2-1.2-1.8c-0.2-1,0.6-1.8,1.6-1.6c0.6,0.1,1.5,1,1.5,1.5c0,0.6-0.8,1.3-1.2,1.9 C216.4,152.3,216.2,152.3,215.9,152.3z"/>
<path d="M266.9,158.2c0.6-0.4,1.1-1.1,1.8-1.2c1-0.2,1.8,0.6,1.6,1.5c-0.1,0.6-0.9,1.5-1.5,1.6c-0.6,0.1-1.3-0.7-1.9-1.2 C266.9,158.7,266.9,158.5,266.9,158.2z"/>
<path d="M266.9,170.3c0.6-0.4,1.3-1.2,1.9-1.2c0.6,0,1.4,0.9,1.5,1.5c0.2,1-0.6,1.7-1.6,1.6c-0.7-0.1-1.2-0.8-1.8-1.2 C266.9,170.8,266.9,170.5,266.9,170.3z"/>
<path d="M230.3,158.9c-0.6,0.4-1.3,1.2-1.9,1.2c-0.6,0-1.4-0.9-1.5-1.5c-0.2-1,0.6-1.7,1.6-1.5c0.7,0.1,1.2,0.8,1.8,1.2 C230.3,158.4,230.3,158.7,230.3,158.9z"/>
<path d="M246.7,125.9c0.6-0.4,1.1-1.1,1.8-1.2c1-0.2,1.7,0.6,1.7,1.6c0,1-0.7,1.7-1.7,1.6c-0.6-0.1-1.2-0.8-1.8-1.3 C246.7,126.3,246.7,126.1,246.7,125.9z"/>
<path d="M262.5,171c-0.6,0.4-1.2,1.1-1.8,1.2c-1,0.2-1.8-0.6-1.6-1.6c0.1-0.6,1-1.5,1.5-1.5c0.6,0,1.3,0.8,1.9,1.2 C262.6,170.5,262.6,170.8,262.5,171z"/>
<path d="M246.3,170.6c1.1-0.7,1.6-1.4,2.3-1.5c1-0.1,1.7,0.6,1.6,1.6c0,1-0.7,1.7-1.7,1.5C247.8,172.1,247.3,171.4,246.3,170.6z"/>
<path d="M249,112.3c0.4,0.6,1.2,1.3,1.2,1.9c0,0.6-0.9,1.4-1.6,1.5c-1,0.2-1.7-0.6-1.5-1.6c0.1-0.6,0.8-1.2,1.2-1.8 C248.5,112.3,248.7,112.3,249,112.3z"/>
<path d="M246.7,182.5c0.6-0.4,1.1-1.2,1.8-1.3c1-0.2,1.7,0.6,1.7,1.6c0,1-0.6,1.8-1.7,1.6c-0.7-0.1-1.2-0.8-1.8-1.2 C246.7,182.9,246.7,182.7,246.7,182.5z"/>
<path d="M216.7,168.8c0.4,0.7,1.2,1.3,1.1,2c0,0.5-0.9,1.4-1.6,1.5c-1,0.2-1.7-0.6-1.5-1.6c0.1-0.7,0.8-1.2,1.3-1.8 C216.3,168.8,216.5,168.8,216.7,168.8z"/>
<path d="M248.2,140.2c-0.4-0.6-1-1.2-1.1-1.9c-0.1-1,0.6-1.6,1.6-1.6c1,0,1.8,0.7,1.6,1.7c-0.1,0.7-0.9,1.2-1.3,1.8 C248.6,140.2,248.4,140.2,248.2,140.2z"/>
<path d="M261.1,156.7c0.4,0.6,1,1.2,1.1,1.8c0.1,1-0.7,1.8-1.6,1.6c-0.6-0.1-1.5-1-1.5-1.6c0-0.6,0.8-1.2,1.3-1.9 C260.6,156.7,260.9,156.7,261.1,156.7z"/>
<path d="M246.7,158.2c0.6-0.4,1.2-1.1,1.8-1.2c1-0.2,1.6,0.5,1.6,1.5c0,1-0.6,1.8-1.6,1.6c-0.7-0.1-1.2-0.8-1.8-1.2 C246.7,158.6,246.7,158.4,246.7,158.2z"/>
<path d="M216.6,156.7c0.4,0.6,1.1,1.1,1.2,1.8c0.2,1-0.6,1.7-1.6,1.7c-1,0-1.8-0.7-1.5-1.7c0.1-0.7,0.8-1.2,1.2-1.8 C216.2,156.7,216.4,156.7,216.6,156.7z"/>
<path class="st0" d="M144.3,99c4.9,1.3,9.7,2.5,14.4,3.9c4.5,1.3,9.1,2.7,13.6,4.1c0.5,0.1,0.9,0.3,1.4,0.5 c1.5,0.8,2.1,2.4,1.6,3.8c-0.6,1.5-2.1,2.4-3.7,1.9c-3.4-0.9-6.7-2-10-3c-5.8-1.6-11.7-3.2-17.5-4.8c-0.5-0.1-0.9-0.3-1.6-0.5 C143,103.1,143.6,101.2,144.3,99z"/>
<path class="st0" d="M145.4,95.6c0.6-1.9,1.2-3.8,1.9-5.9c2,0.5,4,0.9,5.9,1.5c7.3,2.4,14.7,4.8,22,7.3c1.9,0.6,2.6,1.9,2.4,3.6 c-0.2,1.4-1.2,2.5-2.6,2.6c-0.7,0.1-1.4-0.1-2-0.3c-8.8-3.4-17.7-6.3-26.9-8.5C145.8,95.9,145.7,95.8,145.4,95.6z"/>
<path class="st0" d="M150.2,80.4c8,1.8,15.5,4.3,22.7,7.5c1.5,0.7,3.1,1.4,4.6,2.1c2,1,2.8,2.7,2,4.4c-0.8,1.6-2.6,2.2-4.6,1.3 c-6.4-3-12.9-5.6-19.7-7.5c-2.2-0.6-4.5-1.2-6.9-1.8C148.9,84.4,149.6,82.5,150.2,80.4z"/>
<path class="st0" d="M151.3,77.1c0.6-2.1,1.2-4,1.9-6c2.2,0.5,4.3,1,6.4,1.6c7,2.1,13.8,4.9,20.1,8.7c0.9,0.5,1.7,1.5,2.1,2.5 c0.5,1.1-0.1,2.3-1.1,3.1c-1.1,0.8-2.3,0.8-3.5,0.2c-2.4-1.3-4.8-2.6-7.3-3.8c-5.6-2.7-11.5-4.5-17.6-5.9 C152,77.3,151.8,77.2,151.3,77.1z"/>
<path class="st0" d="M135.5,267.5c-0.2,1.4-0.3,2.7-0.7,4.1c-0.6,2-2.3,3.3-4.2,3.3c-1.7,0-3.4-1.2-4-3.2 c-0.7-2.3-0.7-4.6,0.1-6.8c0.8-2.2,2.7-3.5,4.7-3.2c2.4,0.4,3.9,2.1,4,4.6c0,0.4,0,0.8,0,1.2C135.4,267.5,135.5,267.5,135.5,267.5 z"/>
<path class="st0" d="M93.1,256.6c1-2.6,2-5.1,3-7.7c1.8,0.7,3.5,1.3,5.1,2.1c2.2,1,2.9,3.2,2.1,5.3c-0.8,2.1-2.8,2.9-5.1,2.1 C96.5,257.9,94.9,257.2,93.1,256.6z"/>
<path class="st0" d="M172.7,268.9c0.7,4.2-2.3,7.3-6,6.7c-1.6-0.2-2.6-1.2-2.7-2.5c-0.1-1.5,0.6-2.6,1.9-3 C168,269.6,170.3,269.3,172.7,268.9z"/>
<path class="st0" d="M164.5,30.6c0,4.4-3,7-6.7,6.2c-1.4-0.3-2.5-1.4-2.5-2.7c0-1.5,0.8-2.6,2.1-2.8 C159.7,30.8,162.1,30.8,164.5,30.6z"/>
<path class="st0" d="M118.3,265.6c-0.5,1.6-0.9,3.3-1.7,4.8c-0.9,1.7-2.5,2.7-4.5,2.4c-2.1-0.3-3.4-1.7-4-3.7 c-0.7-2.3-0.3-4.6,0.9-6.7c1.2-2.1,3.2-3,5.3-2.6c1.9,0.4,3.4,2.3,3.6,4.6c0,0.3,0,0.7,0.1,1C118.1,265.5,118.2,265.5,118.3,265.6 z"/>
</g>
</g>
</svg>
</a>
</li>
<li class="py-1 md:py-0"><a class="font-sans font-thin text-lg md:text-xl lg:text-2xl md:px-2 md:py-2 lg:px-4 lg:py-4 text-shadow" href="/">Episodes</a></li>
<li class="py-1 md:py-0"><a class="font-sans font-thin text-lg md:text-xl lg:text-2xl md:px-2 md:py-2 lg:px-4 lg:py-4 text-shadow" href="/about">About</a></li>
</ul>
<ul class="right-menu list-reset hidden lg:not-hidden md:flex-1 md:flex md:justify-end md:items-center">
<li>
<a href="https://itunes.apple.com/us/podcast/that-podcast/id881491539">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 24 24" aria-label="RSS" class="h-10 p-2 block svg-shadow xl:h-12 xl:h-14"><title>Podcasts icon</title><path d="M11.93 24s2.633 0 2.633-7.794c0-1.451-1.18-2.633-2.633-2.633s-2.634 1.182-2.634 2.633C9.296 24 11.93 24 11.93 24zm3.23-2.656c.115-.447.205-.896.275-1.351l.053-.36c.115-.05.23-.098.346-.15 1.828-.828 3.367-2.243 4.348-3.993.447-.803.777-1.67.973-2.572.227-1.008.285-2.059.166-3.088-.105-.963-.361-1.904-.77-2.787-.465-1.039-1.111-1.986-1.924-2.784-.828-.827-1.807-1.505-2.875-1.972-1.098-.496-2.303-.752-3.52-.782-1.22-.03-2.438.166-3.582.603-1.098.419-2.106 1.037-2.979 1.834-.827.752-1.534 1.67-2.046 2.678-.437.858-.736 1.776-.902 2.723-.166.979-.166 1.986-.016 2.98.135.872.391 1.73.768 2.543.888 1.881 2.393 3.444 4.258 4.394.226.104.451.21.692.314.015.121.046.256.06.392.075.438.166.889.271 1.325-.406-.136-.813-.287-1.204-.468-2.152-.976-3.972-2.662-5.101-4.754-.512-.947-.873-1.955-1.098-3.01-.257-1.158-.302-2.377-.15-3.566.15-1.112.466-2.211.933-3.22.556-1.188 1.339-2.286 2.271-3.204.916-.916 2.06-1.684 3.31-2.211C9.02.311 10.42.018 11.828.001c1.412-.015 2.824.24 4.139.758 1.266.498 2.434 1.238 3.43 2.166.965.895 1.76 1.962 2.346 3.139.496.993.842 2.076 1.008 3.175.18 1.144.18 2.317-.016 3.446-.166 1.053-.512 2.091-.979 3.053-1.053 2.122-2.799 3.868-4.92 4.922-.527.256-1.084.481-1.655.661l-.021.023zm.52-4.295l.01-.47c0-.316 0-.632-.046-.943-.015-.121-.045-.226-.075-.346.557-.451 1.023-1.023 1.369-1.67.256-.481.451-1.008.557-1.551.121-.602.15-1.233.061-1.865-.074-.557-.227-1.098-.451-1.61-.285-.616-.677-1.188-1.158-1.67-.497-.481-1.054-.872-1.686-1.159-.692-.3-1.445-.48-2.197-.496-.752-.015-1.52.121-2.227.392-.632.256-1.219.617-1.73 1.083-.513.466-.934 1.008-1.235 1.624-.257.496-.436 1.024-.542 1.58-.105.572-.119 1.159-.045 1.73.075.557.226 1.099.451 1.609.346.768.857 1.445 1.49 2.002l-.091.406c-.06.316-.045.617-.045.947v.422c-1.054-.646-1.927-1.58-2.513-2.663-.347-.617-.587-1.279-.723-1.972-.166-.768-.195-1.564-.09-2.347.09-.707.286-1.399.572-2.032.346-.781.857-1.504 1.459-2.121.617-.617 1.339-1.113 2.121-1.459.873-.391 1.82-.602 2.769-.632.964-.016 1.927.15 2.813.497.813.315 1.551.781 2.197 1.368.631.587 1.174 1.278 1.564 2.047.316.632.557 1.309.678 2.001.121.723.15 1.459.045 2.182-.09.707-.285 1.399-.588 2.046-.586 1.31-1.594 2.438-2.828 3.176l.114-.106zm-3.75-9.575c1.465 0 2.654 1.188 2.654 2.656 0 1.473-1.189 2.662-2.654 2.662-1.467 0-2.655-1.189-2.655-2.648s1.188-2.649 2.655-2.649v-.021z"/></svg>
</a>
</li>
<li>
<a href="https://open.spotify.com/show/3XYrUZnOFi4dV2aM3PxnYc">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 24 24" aria-label="Spotify" class="h-10 p-2 block svg-shadow xl:h-12 xl:h-14"><title>Spotify icon</title><path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.021.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.779-.179-.899-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.301 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.419 1.56-.299.421-1.02.599-1.559.3z"/></svg>
</a>
</li>
<li>
<a href="http://www.stitcher.com/podcast/that-podcast?refid=stpr">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 24 24" aria-label="Stitcher" class="h-10 p-2 block svg-shadow xl:h-12 xl:h-14"><title>Stitcher icon</title><path d="M17.98 6.938h-.359v10.125h.359V6.938zm-.745 1.125h-.36v7.875h.36V8.063zm-1.116 0H0v7.875h16.119V8.063zm7.881 0h-4.508v7.875H24V8.063zm-5.256 0h-.36v7.875h.36V8.063z"/></svg>
</a>
</li>
<li>
<a href="itunes.rss">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 24 24" aria-label="Apple Podcasts" class="h-10 p-2 block svg-shadow xl:h-12 xl:h-14"><title>RSS icon</title><path d="M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291 17.415c1.814 0 3.293 1.479 3.293 3.295 0 1.813-1.485 3.29-3.301 3.29C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91z"/></svg>
</a>
</li>
<li>
<a href="https://twitter.com/thatpodcast">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 24 24" aria-label="Twitter" class="h-10 p-2 block svg-shadow lg:h-12 xl:h-14"><title>Twitter icon</title><path d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z"/></svg>
</a>
</li>
<li>
<a href="https://www.facebook.com/pages/That-Podcast/318310284991754">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 24 24" aria-label="Facebook" class="h-10 p-2 block svg-shadow lg:h-12 xl:h-14"><title>Facebook icon</title><path d="M23.9981 11.9991C23.9981 5.37216 18.626 0 11.9991 0C5.37216 0 0 5.37216 0 11.9991C0 17.9882 4.38789 22.9522 10.1242 23.8524V15.4676H7.07758V11.9991H10.1242V9.35553C10.1242 6.34826 11.9156 4.68714 14.6564 4.68714C15.9692 4.68714 17.3424 4.92149 17.3424 4.92149V7.87439H15.8294C14.3388 7.87439 13.8739 8.79933 13.8739 9.74824V11.9991H17.2018L16.6698 15.4676H13.8739V23.8524C19.6103 22.9522 23.9981 17.9882 23.9981 11.9991Z"/></svg>
</a></li>
<li>
<a href="https://github.com/thatpodcast">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 24 24" aria-label="GitHub" class="h-10 p-2 block svg-shadow lg:h-12 xl:h-14"><title>GitHub icon</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>
</a>
</li>
</ul>
</nav>
<div class="container hero">
<header class="hero-header">
<h1 class="hero-title">That Podcast</h1>
<h2 class="hero-subtitle">Beau and Dave talking about life as dads, programmers, and entrepreneurs.</h2>
</header>
</div>
<style>
#hero-and-nav {
background-image:
url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII='),
linear-gradient(rgba(0,0,0,.50) 5%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 40%, rgba(0,0,0,.75) 100%),
url(build/images/red-mic.25a83225.jpg);
}
</style>
</div>
<div class="container">
<ul class="list-reset">
<li class="py-16 border-grey">
<article>
<time class="" datetime="2020-10-30T16:00:00+00:00" pubdate>
<span class='month'>Oct</span> <span class='day'>30th</span> <span class='year'>2020</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-66-the-first-one-in-2020">Episode 66: The First One in 2020</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">It's been awhile!</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:52:10</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/42584242-8e1e-4a8e-af39-01a530ecff71/media/that-podcast-episode-66-the-first-one-in-2020.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2019-11-04T08:00:00+00:00" pubdate>
<span class='month'>Nov</span> <span class='day'>4th</span> <span class='year'>2019</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-65-the-one-with-the-book-the-axe-and-the-laravel-training">Episode 65: The One with the Book, the Axe, and the Laravel Training</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Because we've been busy this summer...</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:29:17</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/6fae78c5-feba-49d3-8025-33544f28b99a/media/that-podcast-episode-65-the-one-with-the-book-the-axe-and-the-laravel-training.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2019-08-19T06:00:00+00:00" pubdate>
<span class='month'>Aug</span> <span class='day'>19th</span> <span class='year'>2019</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-64-the-one-where-we-find-remote-client-work-with-amber-diehl">Episode 64: The One Where We Find Remote Client Work with Amber Diehl</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Setting out and Finding Gigs Can Be a Ton of Work</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:36:07</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/315e9e9d-443d-400d-b022-b4df5d07c4ec/media/that-podcast-episode-64-the-one-where-we-find-remote-client-work-with-amber-diehl.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2019-07-29T06:00:00+00:00" pubdate>
<span class='month'>Jul</span> <span class='day'>29th</span> <span class='year'>2019</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-63-the-one-where-we-talk-with-benjamin-eberlei-about-tideways">Episode 63: The One Where We Talk with Benjamin Eberlei about Tideways</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Because We Enjoy Learning How SaaS Projects Tick</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:55:24</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/d5cbc8d7-49c8-4bf0-a2e6-206359912cca/media/that-podcast-episode-63-the-one-where-we-talk-with-benjamin-eberlei-about-tideways.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2019-07-15T06:00:00+00:00" pubdate>
<span class='month'>Jul</span> <span class='day'>15th</span> <span class='year'>2019</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-62-the-one-where-we-talk-about-command-buses">Episode 62: The One Where We Talk about Command Buses</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">And Dave's Experiments Working with Wood</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:57:24</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/2072fba6-121a-4929-bf69-1ebc87f4176c/media/that-podcast-episode-62-the-one-where-we-talk-about-command-buses.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2019-07-08T10:00:00+00:00" pubdate>
<span class='month'>Jul</span> <span class='day'>8th</span> <span class='year'>2019</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-61-the-one-where-we-discuss-symfony-s-http-client-with-nicolas-grekas">Episode 61: The One Where We Discuss Symfony's HTTP Client with Nicolas Grekas</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Wait, Is It Haytch or Aytch?</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:37:25</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/27e39da8-c121-4e48-b3a9-1ec8898c091e/media/that-podcast-episode-61-the-one-where-we-discuss-symfony-s-http-client-with-nicolas-grekas.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2019-07-01T10:00:00+00:00" pubdate>
<span class='month'>Jul</span> <span class='day'>1st</span> <span class='year'>2019</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-60-the-one-where-we-talk-twig-drupal-and-sculpin-with-oliver-davies">Episode 60: The One Where We Talk Twig, Drupal, and Sculpin with Oliver Davies</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">With a little Tailwind CSS and Symfony</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:39:53</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/e349e2a6-fc07-4c59-99f3-3d832a732862/media/that-podcast-episode-60-the-one-where-we-talk-twig-drupal-and-sculpin-with-oliver-davies.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2019-04-23T10:00:00+00:00" pubdate>
<span class='month'>Apr</span> <span class='day'>23rd</span> <span class='year'>2019</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-59-the-first-one-in-2019">Episode 59: The First One in 2019</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Where we talk about Dave's forks</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:37:55</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/26fe507b-3bbf-4d6f-bc93-5a970f7c6013/media/that-podcast-episode-59-the-first-one-in-2019.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-12-18T18:00:00+00:00" pubdate>
<span class='month'>Dec</span> <span class='day'>18th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-58-the-one-with-all-the-self-care">Episode 58: The One with All the Self-care</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">With Eileen Webb</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:41:06</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/af262ede-6065-43ce-81be-e97b909ebfb9/media/that-podcast-episode-58-the-one-with-all-the-self-care.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-12-11T10:00:00+00:00" pubdate>
<span class='month'>Dec</span> <span class='day'>11th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-57-the-one-where-we-talk-about-mental-health-with-jenna-quindica">Episode 57: The One Where We Talk about Mental Health with Jenna Quindica</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Because mental health awareness is important...</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:35:09</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/0c8f3c86-babf-4491-956f-6d584ff97ec6/media/that-podcast-episode-57-the-one-where-we-talk-about-mental-health-with-jenna-quindica.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-12-02T10:00:00+00:00" pubdate>
<span class='month'>Dec</span> <span class='day'>2nd</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-56-the-one-where-we-talk-about-astrocasts">Episode 56: The One Where We Talk about Astrocasts</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Because Beau has been busy...</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:45:27</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/9c360eb6-a04a-4d7f-b470-7eea67b6b7d3/media/that-podcast-episode-56-the-one-where-we-talk-about-astrocasts.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-11-27T16:00:00+00:00" pubdate>
<span class='month'>Nov</span> <span class='day'>27th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-55-the-one-with-nicolas-steenhout-and-a11y">Episode 55: The One with Nicolas Steenhout and #a11y</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Because accessibility is where it is at</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:42:36</span>
<span class="size pl-2">N/A</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/25f854ec-5423-4dbb-8cf5-c5f56f6557d0/media/that-podcast-episode-55-the-one-with-nicolas-steenhout-and-a11y.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-10-18T08:38:00+00:00" pubdate>
<span class='month'>Oct</span> <span class='day'>18th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-54-the-one-with-event-sourcing-and-emily-stamey">Episode 54: The One with Event Sourcing and Emily Stamey</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Hey, boss...</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:43:16</span>
<span class="size pl-2">19.89 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/3d6715d1-43bb-4194-adb4-d09ecf6b0c22/media/that-podcast-episode-54-the-one-with-event-sourcing-and-emily-stamey.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-10-03T19:23:00+00:00" pubdate>
<span class='month'>Oct</span> <span class='day'>3rd</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-53-the-one-where-summer-got-away-from-us">Episode 53: The One Where Summer Got Away from Us</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg"></h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:28:03</span>
<span class="size pl-2">12.92 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/f29a6e1a-6592-4dc4-ba5f-0b69a381c7c0/media/that-podcast-episode-53-the-one-where-summer-got-away-from-us.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-09-27T13:26:00+00:00" pubdate>
<span class='month'>Sep</span> <span class='day'>27th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-52-geocod-io-with-michele-and-mathias">Episode 52: geocod.io with Michele and Mathias</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Because building a product out of something you need is awesome</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:46:15</span>
<span class="size pl-2">21.25 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/6da6aac4-654e-42a3-89d7-8ae0410c583a/media/that-podcast-episode-52-geocod-io-with-michele-and-mathias.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-09-13T00:02:00+00:00" pubdate>
<span class='month'>Sep</span> <span class='day'>13th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-51-the-one-with-jmac">Episode 51: The One with JMac</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Shift and BaseCode and stuff.</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:36:18</span>
<span class="size pl-2">16.70 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/ff602315-6a36-4d20-9093-b1d7661cfab0/media/that-podcast-episode-51-the-one-with-jmac.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-05-24T15:52:00+00:00" pubdate>
<span class='month'>May</span> <span class='day'>24th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-50-the-one-where-we-talk-to-shawn-about-event-sourcery-cqrs-event-sourcing-and-gdpr">Episode 50: The One Where We Talk to Shawn about Event Sourcery, CQRS, Event Sourcing and GDPR</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Because it's about time we're leaving the wild west</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:45:46</span>
<span class="size pl-2">21.03 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/6f142201-1aa2-4312-8ac6-c732a318aba8/media/that-podcast-episode-50-the-one-where-we-talk-to-shawn-about-event-sourcery-cqrs-event-sourcing-and-gdpr.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-03-16T03:17:00+00:00" pubdate>
<span class='month'>Mar</span> <span class='day'>16th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-49-the-one-where-the-events-are-the-sauce-and-not-the-meat">Episode 49: The One Where the Events Are the Sauce and Not the Meat</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Because that's how EventSauce.io rolls.</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:49:05</span>
<span class="size pl-2">22.55 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/7d40bccf-e162-4a23-9669-b592e10455a6/media/that-podcast-episode-49-the-one-where-the-events-are-the-sauce-and-not-the-meat.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-02-28T23:41:00+00:00" pubdate>
<span class='month'>Feb</span> <span class='day'>28th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-48-the-one-without-all-the-css">Episode 48: The One Without All the CSS</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Except for that bit in shame.css</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:57:28</span>
<span class="size pl-2">26.39 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/c5bbb87d-393e-471f-b030-90e77eb8c3de/media/that-podcast-episode-48-the-one-without-all-the-css.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-02-15T11:02:00+00:00" pubdate>
<span class='month'>Feb</span> <span class='day'>15th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-47-the-one-where-silex-is-dead">Episode 47: The One Where Silex Is Dead</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Beau and Dave discuss the death of Silex with Kevin Boyd.</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:42:37</span>
<span class="size pl-2">19.59 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/9e563cf9-7583-4998-b906-bd483688a16d/media/that-podcast-episode-47-the-one-where-silex-is-dead.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-02-07T22:23:00+00:00" pubdate>
<span class='month'>Feb</span> <span class='day'>7th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-46-the-one-with-the-last-jedi">Episode 46: The One with the Last Jedi</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Because we both love Star Wars.</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:48:03</span>
<span class="size pl-2">22.08 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/33f6a11a-887f-4ddd-b0c5-2118e1db562c/media/that-podcast-episode-46-the-one-with-the-last-jedi.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-01-31T23:16:00+00:00" pubdate>
<span class='month'>Jan</span> <span class='day'>31st</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-45-the-one-where-we-talk-about-psr-15-again">Episode 45: The One Where We Talk about PSR-15 Again</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Some of this got solved</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:39:51</span>
<span class="size pl-2">18.32 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/6cbe9f76-b5f8-4271-9532-18f3f63a35ff/media/that-podcast-episode-45-the-one-where-we-talk-about-psr-15-again.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-01-24T22:45:00+00:00" pubdate>
<span class='month'>Jan</span> <span class='day'>24th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-44-the-one-where-we-manage-products">Episode 44: The One Where We Manage Products</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Christophe Dujarric shares his experience with Product Management</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:53:08</span>
<span class="size pl-2">24.40 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/445e4e52-252e-4207-bca9-99b1d1243517/media/that-podcast-episode-44-the-one-where-we-manage-products.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-01-17T22:37:00+00:00" pubdate>
<span class='month'>Jan</span> <span class='day'>17th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-43-the-one-where-we-marvel-at-sketch">Episode 43: The one where we Marvel at Sketch</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Beau and Dave talk about design and prototyping workflows.</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:47:06</span>
<span class="size pl-2">21.64 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/9a1d2532-75bd-4a7d-bc78-2062f6b5d8e8/media/that-podcast-episode-43-the-one-where-we-marvel-at-sketch.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2018-01-11T04:26:00+00:00" pubdate>
<span class='month'>Jan</span> <span class='day'>11th</span> <span class='year'>2018</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-42-the-one-with-the-cpu-vulnerabilities">Episode 42: The one with the CPU vulnerabilities</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Meltdown and Spectre, oh my!</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:43:38</span>
<span class="size pl-2">20.06 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/faa60952-001b-4317-946f-9f0855583f78/media/that-podcast-episode-42-the-one-with-the-cpu-vulnerabilities.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2017-06-12T02:32:00+00:00" pubdate>
<span class='month'>Jun</span> <span class='day'>12th</span> <span class='year'>2017</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-41-sad">Episode 41: SAD</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Health and Technology</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:39:15</span>
<span class="size pl-2">18.05 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/71ff7677-d47c-43ee-afe0-b61a74313fe4/media/that-podcast-episode-41-sad.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2017-05-05T03:47:00+00:00" pubdate>
<span class='month'>May</span> <span class='day'>5th</span> <span class='year'>2017</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-40-flex">Episode 40: Flex</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">The Future's So Bright, Dave Gotta Wear Blade's Shades</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:23:53</span>
<span class="size pl-2">11.02 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/8cfc83bf-92c0-4085-8459-50355f8bcc16/media/that-podcast-episode-40-flex.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2017-03-09T03:37:00+00:00" pubdate>
<span class='month'>Mar</span> <span class='day'>9th</span> <span class='year'>2017</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-39-public-relations">Episode 39: Public Relations</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">What's in a name?</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:32:30</span>
<span class="size pl-2">14.96 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/d233f2d8-1d69-4c3b-926e-1faf4ea67f37/media/that-podcast-episode-39-public-relations.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">
<article>
<time class="" datetime="2017-02-17T00:47:00+00:00" pubdate>
<span class='month'>Feb</span> <span class='day'>17th</span> <span class='year'>2017</span> <span class='time-zone'>UTC</span>
</time>
<header>
<h1><a class="no-underline text-black" href="episodes/episode-38-bullet">Episode 38: Bullet</a></h1>
<h2 class="text-grey-darker font-normal py-2 xl:text-lg">Sunshine PHP, Bullet Journaling, Mockery and Symfony Experiments.</h2>
</header>
<div class="controls text-sm">
<p class="flex">
<span class="duration">00:32:45</span>
<span class="size pl-2">15.07 MB</span>
<span class="download pl-2"><a class="flex no-underline" href="https://s3.amazonaws.com/thatpodcast-content/episodes/405881e2-8d6a-4105-a637-3870f866dab7/media/that-podcast-episode-38-bullet.mp3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="h-4 fill-current mr-1"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></svg>
download</a></span>
</p>
</div>
</article>
</li>
<li class="py-16 border-t-2 border-grey">