summaryrefslogblamecommitdiff
path: root/analog_frontend.kicad_sch
blob: 213b4830bf60652a1a8dbf126f0a13d136d78c10 (plain) (tree)
1
2
3
4
5
6
7
8
9
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054






                                                  

                                                                                                      

                                         
                                                   
                                         



                                              
                                          

                                              
                                                    

                                              
                                                                                                                                                    

                                              
                                                                

                                              


                                                      

                            

                                                     

                            
                                                      
                                               
                                  
         

                                                          

                                                        

                                                          

                                                        




















































                                                                                                


















































                                                                                                     






































                                                                                            

                                                                      
                                                        
       
                                                          
                                                        
       
                                                                                      
                                                              
       
                                                                                                 

                                              


                                         
                                                                              

                                              
                                                                                                                                                 

                                              
                                                                 

                                              

                                                          



                                               

                                                                 
                                                        
                                                        


                                                         
                                                          





                                                      

                                                            

                                                         
                                                            


                                                          


                                                             
         


                                                            
         

































































                                                                  
                                                   


                                                          
                                                    
                                                              
         






                                                                  
                                                   


                                                          
                                                    
                                                              
         




                                                                 
                                                        








                                                     
         
                                                              
                                                        
                                                         
         
                                                         
                                                        
                                                         
         

                                                            
                                                         
         

                                                          
                                                         
                                                      
         

                                                             
                                                         
         

                                                                
                                                         















                                                     
         

                                                                 
                                                         














                                                          
         

                                                                 
                                                         












                                                          
         

                                                                 
                                                         













                                                             
         

                                                             
                                                         
         

                                                                 
                                                        











                                                        
         

                                                             
                                                         
         

                                                                 
                                                         















                                                     
         

                                                                
                                                         

















                                                             
         

                                                                 
                                                         


















                                                          
         

                                                                 
                                                         

















                                                          
         

                                                                  
                                                         











                                                       
         

                                                                  
                                                         














                                                          
         

                                                                 
                                                         















                                                             
         

                                                                 
                                                         











                                                             
         

                                                                 
                                                         







                                                          



                                                    

                                                    
         

                                                             
                                                        
         

                                                                
                                                         







                                                          
         

                                                                 
                                                         







                                                          
         

                                                                 
                                                         










                                                             
         

                                                                 
                                                         










                                                             
         

                                                              

                                                         

                                                             
                                                         
         

                                                            
                                                         
         

                                                             
                                                         
         

                                                                  
                                                         













                                                             
         

                                                                 
                                                         














                                                             
         

                                                              
                                                        
         

                                                                  
                                                         














                                                        
         

                                                                  
                                                         















                                                       
         

                                                                
                                                         




                                                       
         

                                                             
                                                         




                                                        
         

                                                                 
                                                         




                                                       
         

                                                                 
                                                         










                                                          
         

                                                                 
                                                         












                                                          
         

                                                                  
                                                         










                                                          
         

                                                             
                                                         
         

                                                             
                                                         
         

                                                                  
                                                        




                                                        
         

                                                                 
                                                         



                                                   
         

                                                                  
                                                         






                                                      
         

                                                                 
                                                         












                                                       
         

                                                                  
                                                         













                                                         
         

                                                                  
                                                         












                                                        
         

                                                                  
                                                         














                                                          
         

















                                                                 
                                                         












                                                          
         

                                                                
                                                         








                                                        
         

                                                                 
                                                         












                                                        
         

                                                                  
                                                        
                                                       
         

                                                                 
                                                         












                                                        
         

                                                                 
                                                         
                                                           
         

                                                              
                                                         
         
                                                             


                                                         

                                                             

                                                         

                                                         
                                                         
         

                                                             
                                                         
         

                                                                 
                                                         
                                                           
         

                                                                
                                                         

















                                                      
         

                                                                  
                                                         












                                                          
         

                                                                  
                                                        



                                                        
         

                                                                 
                                                         













                                                          
         

                                                                  
                                                         














                                                        
         

                                                                 
                                                         






                                                       
         

                                                                 
                                                         




                                                        
         

                                                                
                                                         










                                                        
         

                                                                 
                                                         








                                                       
         

                                                                
                                                         



                                                          
         





                                                                
         

                                                            
                                                         
         

                                                                
                                                         











                                                         
         

                                                            
                                                        
         

                                                                 
                                                         












                                                      
         

                                                                
                                                         

















                                                             
         

                                                                
                                                         



                                                        
                                                    








                                                          
         

                                                                
                                                         










                                                       
         

                                                          
                                                         
         

                                                             
                                                         













                                                       
         

                                                                 
                                                         





                                                        
                                                    









                                                      
         

                                                             
                                                         
         

                                                             
                                                         
         

                                                             
                                                         


         







                                                                            

                                              





































                                                                                                           










                                                       
                                                                                                     

                                              








                                           


                    








                                           




                                           


                                                          



                                                        


                                                                                       
       

                                                
       













































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                               

   
                                                            
                                                            


                                                        
     
















































                                                                     
     



                                                  

                                            
                                                  

                                            
                                                         


                                                     
                                        




         
                                                            
                                                            




                                                         
                                       
     






















                                                            

                                       
                                                 

                                            
                                                 

                                            
                                                         


                                                     
                                        




         
                                                                  
                                                            

                                                       
                                            
     
                                                     

                                       
                                                

                                            
                                                 

                                            
                                                         


                                                     
                                       




         
                                                         
                                                            

                                                  
                                                      
     
                                                
                                                      
     
                                                 

                                            
                                                

                                            

                                                         


                                                     
                                    




         
                                                                               
                                                            
                                               
                                                      

                                       
                                                             

                                       
                                                                                  
                                                            
     






































































































                                                                                                        


                                                     
                                   




         

























                                                                 
                                                            

                                                   
                                                      
     
                                                  
                                                      
     
                                                   

                                            
                                                  

                                            

                                                         


                                                     
                                   




         




                                                                                
     
                                                         

                                       
                                                                                    

                                            
                                                                                            

                                            


                                                         


                                                     
                                   




         





























                                                             
                                                       
     
                                                  
                                                       
     
                                                 

                                            
                                                  

                                            

                                                         


                                                     
                                   




         
                                                                
                                                            




                                                        
                                       
     






















                                                            

                                       
                                                

                                            
                                                

                                            
                                                         


                                                     
                                        




         




                                                            
     

                                                      
     
                                                 

                                            
                                                 

                                            

                                                         


                                                     
                                    




         
                                                            
                                                            

                                                       

                                            
                                                 
                                       
     
                                               

                                            
                                               

                                            
                                                         


                                                     
                                        




         




                                                            
     















                                                         
     





                                                            
                                                      
     
                                                  
                                                      
     

                                                   
     






















































































































































                                                                                
     



                                                         

                                


                                                     



       
                                                                    

                                        

                                                            

                                                             
                                                                      

                                                          
                                          
                                                       
                                                 
     
                                         
                                                       
                                                 
     
                                                     
                                                      
                                                 
     
                                                    
                                                      
                                                 
     

                                
                                                                 







                         
(kicad_sch (version 20230121) (generator eeschema)

  (uuid 8520eda6-8ea2-46c6-b936-856b6ab0ca14)

  (paper "A4")

  (lib_symbols
    (symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_01x02" (at 0 -5.08 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "connector" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_01x02_1_1"
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 1.27) (end 1.27 -3.81)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
        (pin passive line (at -5.08 0 0) (length 3.81)
          (name "Pin_1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C" (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (at 0.9652 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.508) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default))
          (fill (type none))
        )
      )
      (symbol "C_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "L" (at -1.27 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "L" (at 1.905 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Inductor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "L_0_1"
        (arc (start 0 -2.54) (mid 0.6323 -1.905) (end 0 -1.27)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0 -1.27) (mid 0.6323 -0.635) (end 0 0)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0 0) (mid 0.6323 0.635) (end 0 1.27)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0 1.27) (mid 0.6323 1.905) (end 0 2.54)
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "L_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (at 2.032 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R" (at 0 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at -1.778 0 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "R res resistor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_0_1"
        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
      )
      (symbol "R_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "MCU_ST_STM32H7:STM32H725VGTx" (in_bom yes) (on_board yes)
      (property "Reference" "U" (at -30.48 67.31 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "STM32H725VGTx" (at 22.86 67.31 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "Package_QFP:LQFP-100_14x14mm_P0.5mm" (at -30.48 -66.04 0)
        (effects (font (size 1.27 1.27)) (justify right) hide)
      )
      (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32h725vg.pdf" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_locked" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "ki_keywords" "Arm Cortex-M7 STM32H7 STM32H725/735" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "STMicroelectronics Arm Cortex-M7 MCU, 1024KB flash, 564KB RAM, 550 MHz, 1.71-3.6V, 69 GPIO, LQFP100" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "LQFP*14x14mm*P0.5mm*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "STM32H725VGTx_0_1"
        (rectangle (start -30.48 -66.04) (end 33.02 66.04)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
      )
      (symbol "STM32H725VGTx_1_1"
        (pin bidirectional line (at -35.56 33.02 0) (length 5.08)
          (name "PE2" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
          (alternate "DEBUG_TRACECLK" bidirectional line)
          (alternate "ETH_TXD3" bidirectional line)
          (alternate "FMC_A23" bidirectional line)
          (alternate "OCTOSPIM_P1_IO2" bidirectional line)
          (alternate "SAI1_CK1" bidirectional line)
          (alternate "SAI1_MCLK_A" bidirectional line)
          (alternate "SAI4_CK1" bidirectional line)
          (alternate "SAI4_MCLK_A" bidirectional line)
          (alternate "SPI4_SCK" bidirectional line)
        )
        (pin power_in line (at -35.56 53.34 0) (length 5.08)
          (name "VLXSMPS" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 5.08 71.12 270) (length 5.08)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "100" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 20.32 71.12 270) (length 5.08)
          (name "VDDSMPS" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -35.56 45.72 0) (length 5.08)
          (name "VFBSMPS" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -35.56 40.64 0) (length 5.08)
          (name "PH0" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
          (alternate "RCC_OSC_IN" bidirectional line)
        )
        (pin bidirectional line (at -35.56 38.1 0) (length 5.08)
          (name "PH1" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
          (alternate "RCC_OSC_OUT" bidirectional line)
        )
        (pin input line (at -35.56 63.5 0) (length 5.08)
          (name "NRST" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 38.1 -22.86 180) (length 5.08)
          (name "PC0" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INP10" bidirectional line)
          (alternate "ADC2_INP10" bidirectional line)
          (alternate "ADC3_INP10" bidirectional line)
          (alternate "DFSDM1_CKIN0" bidirectional line)
          (alternate "DFSDM1_DATIN4" bidirectional line)
          (alternate "FMC_A25" bidirectional line)
          (alternate "FMC_D12" bidirectional line)
          (alternate "FMC_DA12" bidirectional line)
          (alternate "FMC_SDNWE" bidirectional line)
          (alternate "LTDC_G2" bidirectional line)
          (alternate "LTDC_R5" bidirectional line)
          (alternate "SAI4_FS_B" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_STP" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -25.4 180) (length 5.08)
          (name "PC1" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INN10" bidirectional line)
          (alternate "ADC1_INP11" bidirectional line)
          (alternate "ADC2_INN10" bidirectional line)
          (alternate "ADC2_INP11" bidirectional line)
          (alternate "ADC3_INN10" bidirectional line)
          (alternate "ADC3_INP11" bidirectional line)
          (alternate "DEBUG_TRACED0" bidirectional line)
          (alternate "DFSDM1_CKIN4" bidirectional line)
          (alternate "DFSDM1_DATIN0" bidirectional line)
          (alternate "ETH_MDC" bidirectional line)
          (alternate "I2S2_SDO" bidirectional line)
          (alternate "LTDC_G5" bidirectional line)
          (alternate "MDIOS_MDC" bidirectional line)
          (alternate "OCTOSPIM_P1_IO4" bidirectional line)
          (alternate "PWR_WKUP6" bidirectional line)
          (alternate "RTC_TAMP3" bidirectional line)
          (alternate "SAI1_D1" bidirectional line)
          (alternate "SAI1_SD_A" bidirectional line)
          (alternate "SAI4_D1" bidirectional line)
          (alternate "SAI4_SD_A" bidirectional line)
          (alternate "SDMMC2_CK" bidirectional line)
          (alternate "SPI2_MOSI" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -27.94 180) (length 5.08)
          (name "PC2_C" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
          (alternate "ADC3_INN1" bidirectional line)
          (alternate "ADC3_INP0" bidirectional line)
          (alternate "DFSDM1_CKIN1" bidirectional line)
          (alternate "DFSDM1_CKOUT" bidirectional line)
          (alternate "ETH_TXD2" bidirectional line)
          (alternate "FMC_SDNE0" bidirectional line)
          (alternate "I2S2_SDI" bidirectional line)
          (alternate "OCTOSPIM_P1_IO2" bidirectional line)
          (alternate "OCTOSPIM_P1_IO5" bidirectional line)
          (alternate "PWR_CSTOP" bidirectional line)
          (alternate "SPI2_MISO" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_DIR" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -30.48 180) (length 5.08)
          (name "PC3_C" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
          (alternate "ADC3_INP1" bidirectional line)
          (alternate "DFSDM1_DATIN1" bidirectional line)
          (alternate "ETH_TX_CLK" bidirectional line)
          (alternate "FMC_SDCKE0" bidirectional line)
          (alternate "I2S2_SDO" bidirectional line)
          (alternate "OCTOSPIM_P1_IO0" bidirectional line)
          (alternate "OCTOSPIM_P1_IO6" bidirectional line)
          (alternate "PWR_CSLEEP" bidirectional line)
          (alternate "SPI2_MOSI" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_NXT" bidirectional line)
        )
        (pin bidirectional line (at -35.56 30.48 0) (length 5.08)
          (name "PE4" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D4" bidirectional line)
          (alternate "DEBUG_TRACED1" bidirectional line)
          (alternate "DFSDM1_DATIN3" bidirectional line)
          (alternate "FMC_A20" bidirectional line)
          (alternate "LTDC_B0" bidirectional line)
          (alternate "PSSI_D4" bidirectional line)
          (alternate "SAI1_D2" bidirectional line)
          (alternate "SAI1_FS_A" bidirectional line)
          (alternate "SAI4_D2" bidirectional line)
          (alternate "SAI4_FS_A" bidirectional line)
          (alternate "SPI4_NSS" bidirectional line)
          (alternate "TIM15_CH1N" bidirectional line)
        )
        (pin power_in line (at -10.16 71.12 270) (length 5.08)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -71.12 90) (length 5.08)
          (name "VSS" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 -71.12 90) (length 5.08)
          (name "VSSA" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -35.56 50.8 0) (length 5.08)
          (name "VREF+" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
          (alternate "VREFBUF_OUT" bidirectional line)
        )
        (pin power_in line (at 10.16 71.12 270) (length 5.08)
          (name "VDDA" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 38.1 63.5 180) (length 5.08)
          (name "PA0" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INP16" bidirectional line)
          (alternate "ETH_CRS" bidirectional line)
          (alternate "FMC_A19" bidirectional line)
          (alternate "I2S6_WS" bidirectional line)
          (alternate "PWR_WKUP1" bidirectional line)
          (alternate "SAI4_SD_B" bidirectional line)
          (alternate "SDMMC2_CMD" bidirectional line)
          (alternate "SPI6_NSS" bidirectional line)
          (alternate "TIM15_BKIN" bidirectional line)
          (alternate "TIM2_CH1" bidirectional line)
          (alternate "TIM2_ETR" bidirectional line)
          (alternate "TIM5_CH1" bidirectional line)
          (alternate "TIM8_ETR" bidirectional line)
          (alternate "UART4_TX" bidirectional line)
          (alternate "USART2_CTS" bidirectional line)
          (alternate "USART2_NSS" bidirectional line)
        )
        (pin bidirectional line (at 38.1 60.96 180) (length 5.08)
          (name "PA1" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INN16" bidirectional line)
          (alternate "ADC1_INP17" bidirectional line)
          (alternate "ETH_REF_CLK" bidirectional line)
          (alternate "ETH_RX_CLK" bidirectional line)
          (alternate "LPTIM3_OUT" bidirectional line)
          (alternate "LTDC_R2" bidirectional line)
          (alternate "OCTOSPIM_P1_DQS" bidirectional line)
          (alternate "OCTOSPIM_P1_IO3" bidirectional line)
          (alternate "SAI4_MCLK_B" bidirectional line)
          (alternate "TIM15_CH1N" bidirectional line)
          (alternate "TIM2_CH2" bidirectional line)
          (alternate "TIM5_CH2" bidirectional line)
          (alternate "UART4_RX" bidirectional line)
          (alternate "USART2_DE" bidirectional line)
          (alternate "USART2_RTS" bidirectional line)
        )
        (pin bidirectional line (at 38.1 58.42 180) (length 5.08)
          (name "PA2" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INP14" bidirectional line)
          (alternate "ADC2_INP14" bidirectional line)
          (alternate "ETH_MDIO" bidirectional line)
          (alternate "LPTIM4_OUT" bidirectional line)
          (alternate "LTDC_R1" bidirectional line)
          (alternate "MDIOS_MDIO" bidirectional line)
          (alternate "OCTOSPIM_P1_IO0" bidirectional line)
          (alternate "PWR_WKUP2" bidirectional line)
          (alternate "SAI4_SCK_B" bidirectional line)
          (alternate "TIM15_CH1" bidirectional line)
          (alternate "TIM2_CH3" bidirectional line)
          (alternate "TIM5_CH3" bidirectional line)
          (alternate "USART2_TX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 55.88 180) (length 5.08)
          (name "PA3" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INP15" bidirectional line)
          (alternate "ADC2_INP15" bidirectional line)
          (alternate "ETH_COL" bidirectional line)
          (alternate "I2S6_MCK" bidirectional line)
          (alternate "LPTIM5_OUT" bidirectional line)
          (alternate "LTDC_B2" bidirectional line)
          (alternate "LTDC_B5" bidirectional line)
          (alternate "OCTOSPIM_P1_CLK" bidirectional line)
          (alternate "OCTOSPIM_P1_IO2" bidirectional line)
          (alternate "TIM15_CH2" bidirectional line)
          (alternate "TIM2_CH4" bidirectional line)
          (alternate "TIM5_CH4" bidirectional line)
          (alternate "USART2_RX" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_D0" bidirectional line)
        )
        (pin passive line (at 0 -71.12 90) (length 5.08) hide
          (name "VSS" (effects (font (size 1.27 1.27))))
          (number "29" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -35.56 27.94 0) (length 5.08)
          (name "PE5" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D6" bidirectional line)
          (alternate "DEBUG_TRACED2" bidirectional line)
          (alternate "DFSDM1_CKIN3" bidirectional line)
          (alternate "FMC_A21" bidirectional line)
          (alternate "LTDC_G0" bidirectional line)
          (alternate "PSSI_D6" bidirectional line)
          (alternate "SAI1_CK2" bidirectional line)
          (alternate "SAI1_SCK_A" bidirectional line)
          (alternate "SAI4_CK2" bidirectional line)
          (alternate "SAI4_SCK_A" bidirectional line)
          (alternate "SPI4_MISO" bidirectional line)
          (alternate "TIM15_CH1" bidirectional line)
        )
        (pin power_in line (at -7.62 71.12 270) (length 5.08)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "30" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 38.1 53.34 180) (length 5.08)
          (name "PA4" (effects (font (size 1.27 1.27))))
          (number "31" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INP18" bidirectional line)
          (alternate "ADC2_INP18" bidirectional line)
          (alternate "DAC1_OUT1" bidirectional line)
          (alternate "DCMI_HSYNC" bidirectional line)
          (alternate "FMC_D8" bidirectional line)
          (alternate "FMC_DA8" bidirectional line)
          (alternate "I2S1_WS" bidirectional line)
          (alternate "I2S3_WS" bidirectional line)
          (alternate "I2S6_WS" bidirectional line)
          (alternate "LTDC_VSYNC" bidirectional line)
          (alternate "PSSI_DE" bidirectional line)
          (alternate "SPI1_NSS" bidirectional line)
          (alternate "SPI3_NSS" bidirectional line)
          (alternate "SPI6_NSS" bidirectional line)
          (alternate "TIM5_ETR" bidirectional line)
          (alternate "USART2_CK" bidirectional line)
        )
        (pin bidirectional line (at 38.1 50.8 180) (length 5.08)
          (name "PA5" (effects (font (size 1.27 1.27))))
          (number "32" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INN18" bidirectional line)
          (alternate "ADC1_INP19" bidirectional line)
          (alternate "ADC2_INN18" bidirectional line)
          (alternate "ADC2_INP19" bidirectional line)
          (alternate "DAC1_OUT2" bidirectional line)
          (alternate "FMC_D9" bidirectional line)
          (alternate "FMC_DA9" bidirectional line)
          (alternate "I2S1_CK" bidirectional line)
          (alternate "I2S6_CK" bidirectional line)
          (alternate "LTDC_R4" bidirectional line)
          (alternate "PSSI_D14" bidirectional line)
          (alternate "PWR_NDSTOP2" bidirectional line)
          (alternate "SPI1_SCK" bidirectional line)
          (alternate "SPI6_SCK" bidirectional line)
          (alternate "TIM2_CH1" bidirectional line)
          (alternate "TIM2_ETR" bidirectional line)
          (alternate "TIM8_CH1N" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_CK" bidirectional line)
        )
        (pin bidirectional line (at 38.1 48.26 180) (length 5.08)
          (name "PA6" (effects (font (size 1.27 1.27))))
          (number "33" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INP3" bidirectional line)
          (alternate "ADC2_INP3" bidirectional line)
          (alternate "DCMI_PIXCLK" bidirectional line)
          (alternate "I2S1_SDI" bidirectional line)
          (alternate "I2S6_SDI" bidirectional line)
          (alternate "LTDC_G2" bidirectional line)
          (alternate "MDIOS_MDC" bidirectional line)
          (alternate "OCTOSPIM_P1_IO3" bidirectional line)
          (alternate "PSSI_PDCK" bidirectional line)
          (alternate "SPI1_MISO" bidirectional line)
          (alternate "SPI6_MISO" bidirectional line)
          (alternate "TIM13_CH1" bidirectional line)
          (alternate "TIM1_BKIN" bidirectional line)
          (alternate "TIM1_BKIN_COMP1" bidirectional line)
          (alternate "TIM1_BKIN_COMP2" bidirectional line)
          (alternate "TIM3_CH1" bidirectional line)
          (alternate "TIM8_BKIN" bidirectional line)
          (alternate "TIM8_BKIN_COMP1" bidirectional line)
          (alternate "TIM8_BKIN_COMP2" bidirectional line)
        )
        (pin bidirectional line (at 38.1 45.72 180) (length 5.08)
          (name "PA7" (effects (font (size 1.27 1.27))))
          (number "34" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INN3" bidirectional line)
          (alternate "ADC1_INP7" bidirectional line)
          (alternate "ADC2_INN3" bidirectional line)
          (alternate "ADC2_INP7" bidirectional line)
          (alternate "ETH_CRS_DV" bidirectional line)
          (alternate "ETH_RX_DV" bidirectional line)
          (alternate "FMC_SDNWE" bidirectional line)
          (alternate "I2S1_SDO" bidirectional line)
          (alternate "I2S6_SDO" bidirectional line)
          (alternate "LTDC_VSYNC" bidirectional line)
          (alternate "OCTOSPIM_P1_IO2" bidirectional line)
          (alternate "OPAMP1_VINM" bidirectional line)
          (alternate "SPI1_MOSI" bidirectional line)
          (alternate "SPI6_MOSI" bidirectional line)
          (alternate "TIM14_CH1" bidirectional line)
          (alternate "TIM1_CH1N" bidirectional line)
          (alternate "TIM3_CH2" bidirectional line)
          (alternate "TIM8_CH1N" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -33.02 180) (length 5.08)
          (name "PC4" (effects (font (size 1.27 1.27))))
          (number "35" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INP4" bidirectional line)
          (alternate "ADC2_INP4" bidirectional line)
          (alternate "COMP1_INM" bidirectional line)
          (alternate "DFSDM1_CKIN2" bidirectional line)
          (alternate "ETH_RXD0" bidirectional line)
          (alternate "FMC_A22" bidirectional line)
          (alternate "FMC_SDNE0" bidirectional line)
          (alternate "I2S1_MCK" bidirectional line)
          (alternate "LTDC_R7" bidirectional line)
          (alternate "OPAMP1_VOUT" bidirectional line)
          (alternate "SDMMC2_CKIN" bidirectional line)
          (alternate "SPDIFRX1_IN2" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -35.56 180) (length 5.08)
          (name "PC5" (effects (font (size 1.27 1.27))))
          (number "36" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INN4" bidirectional line)
          (alternate "ADC1_INP8" bidirectional line)
          (alternate "ADC2_INN4" bidirectional line)
          (alternate "ADC2_INP8" bidirectional line)
          (alternate "COMP1_OUT" bidirectional line)
          (alternate "DFSDM1_DATIN2" bidirectional line)
          (alternate "ETH_RXD1" bidirectional line)
          (alternate "FMC_SDCKE0" bidirectional line)
          (alternate "LTDC_DE" bidirectional line)
          (alternate "OCTOSPIM_P1_DQS" bidirectional line)
          (alternate "OPAMP1_VINM" bidirectional line)
          (alternate "PSSI_D15" bidirectional line)
          (alternate "SAI1_D3" bidirectional line)
          (alternate "SAI4_D3" bidirectional line)
          (alternate "SPDIFRX1_IN3" bidirectional line)
        )
        (pin bidirectional line (at 38.1 20.32 180) (length 5.08)
          (name "PB0" (effects (font (size 1.27 1.27))))
          (number "37" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INN5" bidirectional line)
          (alternate "ADC1_INP9" bidirectional line)
          (alternate "ADC2_INN5" bidirectional line)
          (alternate "ADC2_INP9" bidirectional line)
          (alternate "COMP1_INP" bidirectional line)
          (alternate "DFSDM1_CKOUT" bidirectional line)
          (alternate "ETH_RXD2" bidirectional line)
          (alternate "LTDC_G1" bidirectional line)
          (alternate "LTDC_R3" bidirectional line)
          (alternate "OCTOSPIM_P1_IO1" bidirectional line)
          (alternate "OPAMP1_VINP" bidirectional line)
          (alternate "TIM1_CH2N" bidirectional line)
          (alternate "TIM3_CH3" bidirectional line)
          (alternate "TIM8_CH2N" bidirectional line)
          (alternate "UART4_CTS" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_D1" bidirectional line)
        )
        (pin bidirectional line (at 38.1 17.78 180) (length 5.08)
          (name "PB1" (effects (font (size 1.27 1.27))))
          (number "38" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_INP5" bidirectional line)
          (alternate "ADC2_INP5" bidirectional line)
          (alternate "COMP1_INM" bidirectional line)
          (alternate "DFSDM1_DATIN1" bidirectional line)
          (alternate "ETH_RXD3" bidirectional line)
          (alternate "LTDC_G0" bidirectional line)
          (alternate "LTDC_R6" bidirectional line)
          (alternate "OCTOSPIM_P1_IO0" bidirectional line)
          (alternate "TIM1_CH3N" bidirectional line)
          (alternate "TIM3_CH4" bidirectional line)
          (alternate "TIM8_CH3N" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_D2" bidirectional line)
        )
        (pin bidirectional line (at 38.1 15.24 180) (length 5.08)
          (name "PB2" (effects (font (size 1.27 1.27))))
          (number "39" (effects (font (size 1.27 1.27))))
          (alternate "COMP1_INP" bidirectional line)
          (alternate "DFSDM1_CKIN1" bidirectional line)
          (alternate "ETH_TX_ER" bidirectional line)
          (alternate "I2S3_SDO" bidirectional line)
          (alternate "OCTOSPIM_P1_CLK" bidirectional line)
          (alternate "OCTOSPIM_P1_DQS" bidirectional line)
          (alternate "RTC_OUT_ALARM" bidirectional line)
          (alternate "RTC_OUT_CALIB" bidirectional line)
          (alternate "SAI1_D1" bidirectional line)
          (alternate "SAI1_SD_A" bidirectional line)
          (alternate "SAI4_D1" bidirectional line)
          (alternate "SAI4_SD_A" bidirectional line)
          (alternate "SPI3_MOSI" bidirectional line)
          (alternate "TIM23_ETR" bidirectional line)
        )
        (pin power_in line (at -12.7 71.12 270) (length 5.08)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -35.56 25.4 0) (length 5.08)
          (name "PE7" (effects (font (size 1.27 1.27))))
          (number "40" (effects (font (size 1.27 1.27))))
          (alternate "COMP2_INM" bidirectional line)
          (alternate "DFSDM1_DATIN2" bidirectional line)
          (alternate "FMC_D4" bidirectional line)
          (alternate "FMC_DA4" bidirectional line)
          (alternate "OCTOSPIM_P1_IO4" bidirectional line)
          (alternate "OPAMP2_VOUT" bidirectional line)
          (alternate "TIM1_ETR" bidirectional line)
          (alternate "UART7_RX" bidirectional line)
        )
        (pin bidirectional line (at -35.56 22.86 0) (length 5.08)
          (name "PE8" (effects (font (size 1.27 1.27))))
          (number "41" (effects (font (size 1.27 1.27))))
          (alternate "COMP2_OUT" bidirectional line)
          (alternate "DFSDM1_CKIN2" bidirectional line)
          (alternate "FMC_D5" bidirectional line)
          (alternate "FMC_DA5" bidirectional line)
          (alternate "OCTOSPIM_P1_IO5" bidirectional line)
          (alternate "OPAMP2_VINM" bidirectional line)
          (alternate "TIM1_CH1N" bidirectional line)
          (alternate "UART7_TX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -5.08 180) (length 5.08)
          (name "PB10" (effects (font (size 1.27 1.27))))
          (number "42" (effects (font (size 1.27 1.27))))
          (alternate "DFSDM1_DATIN7" bidirectional line)
          (alternate "ETH_RX_ER" bidirectional line)
          (alternate "I2C2_SCL" bidirectional line)
          (alternate "I2S2_CK" bidirectional line)
          (alternate "LPTIM2_IN1" bidirectional line)
          (alternate "LTDC_G4" bidirectional line)
          (alternate "OCTOSPIM_P1_NCS" bidirectional line)
          (alternate "SPI2_SCK" bidirectional line)
          (alternate "TIM2_CH3" bidirectional line)
          (alternate "USART3_TX" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_D3" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -7.62 180) (length 5.08)
          (name "PB11" (effects (font (size 1.27 1.27))))
          (number "43" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_EXTI11" bidirectional line)
          (alternate "ADC2_EXTI11" bidirectional line)
          (alternate "ADC3_EXTI11" bidirectional line)
          (alternate "DFSDM1_CKIN7" bidirectional line)
          (alternate "ETH_TX_EN" bidirectional line)
          (alternate "I2C2_SDA" bidirectional line)
          (alternate "LPTIM2_ETR" bidirectional line)
          (alternate "LTDC_G5" bidirectional line)
          (alternate "TIM2_CH4" bidirectional line)
          (alternate "USART3_RX" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_D4" bidirectional line)
        )
        (pin power_out line (at -35.56 -20.32 0) (length 5.08)
          (name "VCAP" (effects (font (size 1.27 1.27))))
          (number "44" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -71.12 90) (length 5.08) hide
          (name "VSS" (effects (font (size 1.27 1.27))))
          (number "45" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 12.7 71.12 270) (length 5.08)
          (name "VDDLDO" (effects (font (size 1.27 1.27))))
          (number "46" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -5.08 71.12 270) (length 5.08)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "47" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 38.1 -10.16 180) (length 5.08)
          (name "PB12" (effects (font (size 1.27 1.27))))
          (number "48" (effects (font (size 1.27 1.27))))
          (alternate "DFSDM1_DATIN1" bidirectional line)
          (alternate "ETH_TXD0" bidirectional line)
          (alternate "FDCAN2_RX" bidirectional line)
          (alternate "I2C2_SMBA" bidirectional line)
          (alternate "I2S2_WS" bidirectional line)
          (alternate "OCTOSPIM_P1_IO0" bidirectional line)
          (alternate "OCTOSPIM_P1_NCLK" bidirectional line)
          (alternate "SPI2_NSS" bidirectional line)
          (alternate "TIM1_BKIN" bidirectional line)
          (alternate "TIM1_BKIN_COMP1" bidirectional line)
          (alternate "TIM1_BKIN_COMP2" bidirectional line)
          (alternate "UART5_RX" bidirectional line)
          (alternate "USART3_CK" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_D5" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -12.7 180) (length 5.08)
          (name "PB13" (effects (font (size 1.27 1.27))))
          (number "49" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D2" bidirectional line)
          (alternate "DFSDM1_CKIN1" bidirectional line)
          (alternate "ETH_TXD1" bidirectional line)
          (alternate "FDCAN2_TX" bidirectional line)
          (alternate "I2S2_CK" bidirectional line)
          (alternate "LPTIM2_OUT" bidirectional line)
          (alternate "OCTOSPIM_P1_IO2" bidirectional line)
          (alternate "PSSI_D2" bidirectional line)
          (alternate "SDMMC1_D0" bidirectional line)
          (alternate "SPI2_SCK" bidirectional line)
          (alternate "TIM1_CH1N" bidirectional line)
          (alternate "UART5_TX" bidirectional line)
          (alternate "USART3_CTS" bidirectional line)
          (alternate "USART3_NSS" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_D6" bidirectional line)
        )
        (pin power_in line (at -15.24 71.12 270) (length 5.08)
          (name "VBAT" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 38.1 -15.24 180) (length 5.08)
          (name "PB14" (effects (font (size 1.27 1.27))))
          (number "50" (effects (font (size 1.27 1.27))))
          (alternate "DFSDM1_DATIN2" bidirectional line)
          (alternate "FMC_D10" bidirectional line)
          (alternate "FMC_DA10" bidirectional line)
          (alternate "I2S2_SDI" bidirectional line)
          (alternate "LTDC_CLK" bidirectional line)
          (alternate "SDMMC2_D0" bidirectional line)
          (alternate "SPI2_MISO" bidirectional line)
          (alternate "TIM12_CH1" bidirectional line)
          (alternate "TIM1_CH2N" bidirectional line)
          (alternate "TIM8_CH2N" bidirectional line)
          (alternate "UART4_DE" bidirectional line)
          (alternate "UART4_RTS" bidirectional line)
          (alternate "USART1_TX" bidirectional line)
          (alternate "USART3_DE" bidirectional line)
          (alternate "USART3_RTS" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -17.78 180) (length 5.08)
          (name "PB15" (effects (font (size 1.27 1.27))))
          (number "51" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_EXTI15" bidirectional line)
          (alternate "ADC2_EXTI15" bidirectional line)
          (alternate "ADC3_EXTI15" bidirectional line)
          (alternate "DFSDM1_CKIN2" bidirectional line)
          (alternate "FMC_D11" bidirectional line)
          (alternate "FMC_DA11" bidirectional line)
          (alternate "I2S2_SDO" bidirectional line)
          (alternate "LTDC_G7" bidirectional line)
          (alternate "RTC_REFIN" bidirectional line)
          (alternate "SDMMC2_D1" bidirectional line)
          (alternate "SPI2_MOSI" bidirectional line)
          (alternate "TIM12_CH2" bidirectional line)
          (alternate "TIM1_CH3N" bidirectional line)
          (alternate "TIM8_CH3N" bidirectional line)
          (alternate "UART4_CTS" bidirectional line)
          (alternate "USART1_RX" bidirectional line)
        )
        (pin bidirectional line (at -35.56 2.54 0) (length 5.08)
          (name "PD8" (effects (font (size 1.27 1.27))))
          (number "52" (effects (font (size 1.27 1.27))))
          (alternate "DFSDM1_CKIN3" bidirectional line)
          (alternate "FMC_D13" bidirectional line)
          (alternate "FMC_DA13" bidirectional line)
          (alternate "SPDIFRX1_IN1" bidirectional line)
          (alternate "USART3_TX" bidirectional line)
        )
        (pin bidirectional line (at -35.56 0 0) (length 5.08)
          (name "PD9" (effects (font (size 1.27 1.27))))
          (number "53" (effects (font (size 1.27 1.27))))
          (alternate "DAC1_EXTI9" bidirectional line)
          (alternate "DFSDM1_DATIN3" bidirectional line)
          (alternate "FMC_D14" bidirectional line)
          (alternate "FMC_DA14" bidirectional line)
          (alternate "USART3_RX" bidirectional line)
        )
        (pin bidirectional line (at -35.56 -2.54 0) (length 5.08)
          (name "PD10" (effects (font (size 1.27 1.27))))
          (number "54" (effects (font (size 1.27 1.27))))
          (alternate "DFSDM1_CKOUT" bidirectional line)
          (alternate "FMC_D15" bidirectional line)
          (alternate "FMC_DA15" bidirectional line)
          (alternate "LTDC_B3" bidirectional line)
          (alternate "USART3_CK" bidirectional line)
        )
        (pin bidirectional line (at -35.56 -5.08 0) (length 5.08)
          (name "PD11" (effects (font (size 1.27 1.27))))
          (number "55" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_EXTI11" bidirectional line)
          (alternate "ADC2_EXTI11" bidirectional line)
          (alternate "ADC3_EXTI11" bidirectional line)
          (alternate "FMC_A16" bidirectional line)
          (alternate "FMC_CLE" bidirectional line)
          (alternate "I2C4_SMBA" bidirectional line)
          (alternate "LPTIM2_IN2" bidirectional line)
          (alternate "OCTOSPIM_P1_IO0" bidirectional line)
          (alternate "SAI4_SD_A" bidirectional line)
          (alternate "USART3_CTS" bidirectional line)
          (alternate "USART3_NSS" bidirectional line)
        )
        (pin bidirectional line (at -35.56 -7.62 0) (length 5.08)
          (name "PD12" (effects (font (size 1.27 1.27))))
          (number "56" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D12" bidirectional line)
          (alternate "FDCAN3_RX" bidirectional line)
          (alternate "FMC_A17" bidirectional line)
          (alternate "FMC_ALE" bidirectional line)
          (alternate "I2C4_SCL" bidirectional line)
          (alternate "LPTIM1_IN1" bidirectional line)
          (alternate "LPTIM2_IN1" bidirectional line)
          (alternate "OCTOSPIM_P1_IO1" bidirectional line)
          (alternate "PSSI_D12" bidirectional line)
          (alternate "SAI4_FS_A" bidirectional line)
          (alternate "TIM4_CH1" bidirectional line)
          (alternate "USART3_DE" bidirectional line)
          (alternate "USART3_RTS" bidirectional line)
        )
        (pin bidirectional line (at -35.56 -10.16 0) (length 5.08)
          (name "PD13" (effects (font (size 1.27 1.27))))
          (number "57" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D13" bidirectional line)
          (alternate "FDCAN3_TX" bidirectional line)
          (alternate "FMC_A18" bidirectional line)
          (alternate "I2C4_SDA" bidirectional line)
          (alternate "LPTIM1_OUT" bidirectional line)
          (alternate "OCTOSPIM_P1_IO3" bidirectional line)
          (alternate "PSSI_D13" bidirectional line)
          (alternate "SAI4_SCK_A" bidirectional line)
          (alternate "TIM4_CH2" bidirectional line)
          (alternate "UART9_DE" bidirectional line)
          (alternate "UART9_RTS" bidirectional line)
        )
        (pin passive line (at 0 -71.12 90) (length 5.08) hide
          (name "VSS" (effects (font (size 1.27 1.27))))
          (number "58" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 71.12 270) (length 5.08)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "59" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 38.1 -55.88 180) (length 5.08)
          (name "PC13" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
          (alternate "PWR_WKUP4" bidirectional line)
          (alternate "RTC_OUT_ALARM" bidirectional line)
          (alternate "RTC_OUT_CALIB" bidirectional line)
          (alternate "RTC_TAMP1" bidirectional line)
          (alternate "RTC_TS" bidirectional line)
        )
        (pin bidirectional line (at -35.56 -12.7 0) (length 5.08)
          (name "PD14" (effects (font (size 1.27 1.27))))
          (number "60" (effects (font (size 1.27 1.27))))
          (alternate "FMC_D0" bidirectional line)
          (alternate "FMC_DA0" bidirectional line)
          (alternate "TIM4_CH3" bidirectional line)
          (alternate "UART9_RX" bidirectional line)
        )
        (pin bidirectional line (at -35.56 -15.24 0) (length 5.08)
          (name "PD15" (effects (font (size 1.27 1.27))))
          (number "61" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_EXTI15" bidirectional line)
          (alternate "ADC2_EXTI15" bidirectional line)
          (alternate "ADC3_EXTI15" bidirectional line)
          (alternate "FMC_D1" bidirectional line)
          (alternate "FMC_DA1" bidirectional line)
          (alternate "TIM4_CH4" bidirectional line)
          (alternate "UART9_TX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -38.1 180) (length 5.08)
          (name "PC6" (effects (font (size 1.27 1.27))))
          (number "62" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D0" bidirectional line)
          (alternate "DFSDM1_CKIN3" bidirectional line)
          (alternate "FMC_NWAIT" bidirectional line)
          (alternate "I2S2_MCK" bidirectional line)
          (alternate "LTDC_HSYNC" bidirectional line)
          (alternate "PSSI_D0" bidirectional line)
          (alternate "SDMMC1_D0DIR" bidirectional line)
          (alternate "SDMMC1_D6" bidirectional line)
          (alternate "SDMMC2_D6" bidirectional line)
          (alternate "SWPMI1_IO" bidirectional line)
          (alternate "TIM3_CH1" bidirectional line)
          (alternate "TIM8_CH1" bidirectional line)
          (alternate "USART6_TX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -40.64 180) (length 5.08)
          (name "PC7" (effects (font (size 1.27 1.27))))
          (number "63" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D1" bidirectional line)
          (alternate "DEBUG_TRGIO" bidirectional line)
          (alternate "DFSDM1_DATIN3" bidirectional line)
          (alternate "FMC_NE1" bidirectional line)
          (alternate "I2S3_MCK" bidirectional line)
          (alternate "LTDC_G6" bidirectional line)
          (alternate "PSSI_D1" bidirectional line)
          (alternate "SDMMC1_D123DIR" bidirectional line)
          (alternate "SDMMC1_D7" bidirectional line)
          (alternate "SDMMC2_D7" bidirectional line)
          (alternate "SWPMI1_TX" bidirectional line)
          (alternate "TIM3_CH2" bidirectional line)
          (alternate "TIM8_CH2" bidirectional line)
          (alternate "USART6_RX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -43.18 180) (length 5.08)
          (name "PC8" (effects (font (size 1.27 1.27))))
          (number "64" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D2" bidirectional line)
          (alternate "DEBUG_TRACED1" bidirectional line)
          (alternate "FMC_INT" bidirectional line)
          (alternate "FMC_NCE" bidirectional line)
          (alternate "FMC_NE2" bidirectional line)
          (alternate "PSSI_D2" bidirectional line)
          (alternate "SDMMC1_D0" bidirectional line)
          (alternate "SWPMI1_RX" bidirectional line)
          (alternate "TIM3_CH3" bidirectional line)
          (alternate "TIM8_CH3" bidirectional line)
          (alternate "UART5_DE" bidirectional line)
          (alternate "UART5_RTS" bidirectional line)
          (alternate "USART6_CK" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -45.72 180) (length 5.08)
          (name "PC9" (effects (font (size 1.27 1.27))))
          (number "65" (effects (font (size 1.27 1.27))))
          (alternate "DAC1_EXTI9" bidirectional line)
          (alternate "DCMI_D3" bidirectional line)
          (alternate "I2C3_SDA" bidirectional line)
          (alternate "I2C5_SDA" bidirectional line)
          (alternate "I2S_CKIN" bidirectional line)
          (alternate "LTDC_B2" bidirectional line)
          (alternate "LTDC_G3" bidirectional line)
          (alternate "OCTOSPIM_P1_IO0" bidirectional line)
          (alternate "PSSI_D3" bidirectional line)
          (alternate "RCC_MCO_2" bidirectional line)
          (alternate "SDMMC1_D1" bidirectional line)
          (alternate "SWPMI1_SUSPEND" bidirectional line)
          (alternate "TIM3_CH4" bidirectional line)
          (alternate "TIM8_CH4" bidirectional line)
          (alternate "UART5_CTS" bidirectional line)
        )
        (pin bidirectional line (at 38.1 43.18 180) (length 5.08)
          (name "PA8" (effects (font (size 1.27 1.27))))
          (number "66" (effects (font (size 1.27 1.27))))
          (alternate "I2C3_SCL" bidirectional line)
          (alternate "I2C5_SCL" bidirectional line)
          (alternate "LTDC_B3" bidirectional line)
          (alternate "LTDC_R6" bidirectional line)
          (alternate "RCC_MCO_1" bidirectional line)
          (alternate "TIM1_CH1" bidirectional line)
          (alternate "TIM8_BKIN2" bidirectional line)
          (alternate "TIM8_BKIN2_COMP1" bidirectional line)
          (alternate "TIM8_BKIN2_COMP2" bidirectional line)
          (alternate "UART7_RX" bidirectional line)
          (alternate "USART1_CK" bidirectional line)
          (alternate "USB_OTG_HS_SOF" bidirectional line)
        )
        (pin bidirectional line (at 38.1 40.64 180) (length 5.08)
          (name "PA9" (effects (font (size 1.27 1.27))))
          (number "67" (effects (font (size 1.27 1.27))))
          (alternate "DAC1_EXTI9" bidirectional line)
          (alternate "DCMI_D0" bidirectional line)
          (alternate "ETH_TX_ER" bidirectional line)
          (alternate "I2C3_SMBA" bidirectional line)
          (alternate "I2C5_SMBA" bidirectional line)
          (alternate "I2S2_CK" bidirectional line)
          (alternate "LPUART1_TX" bidirectional line)
          (alternate "LTDC_R5" bidirectional line)
          (alternate "PSSI_D0" bidirectional line)
          (alternate "SPI2_SCK" bidirectional line)
          (alternate "TIM1_CH2" bidirectional line)
          (alternate "USART1_TX" bidirectional line)
          (alternate "USB_OTG_HS_VBUS" bidirectional line)
        )
        (pin bidirectional line (at 38.1 38.1 180) (length 5.08)
          (name "PA10" (effects (font (size 1.27 1.27))))
          (number "68" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D1" bidirectional line)
          (alternate "LPUART1_RX" bidirectional line)
          (alternate "LTDC_B1" bidirectional line)
          (alternate "LTDC_B4" bidirectional line)
          (alternate "MDIOS_MDIO" bidirectional line)
          (alternate "PSSI_D1" bidirectional line)
          (alternate "TIM1_CH3" bidirectional line)
          (alternate "USART1_RX" bidirectional line)
          (alternate "USB_OTG_HS_ID" bidirectional line)
        )
        (pin bidirectional line (at 38.1 35.56 180) (length 5.08)
          (name "PA11" (effects (font (size 1.27 1.27))))
          (number "69" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_EXTI11" bidirectional line)
          (alternate "ADC2_EXTI11" bidirectional line)
          (alternate "ADC3_EXTI11" bidirectional line)
          (alternate "FDCAN1_RX" bidirectional line)
          (alternate "I2S2_WS" bidirectional line)
          (alternate "LPUART1_CTS" bidirectional line)
          (alternate "LTDC_R4" bidirectional line)
          (alternate "SPI2_NSS" bidirectional line)
          (alternate "TIM1_CH4" bidirectional line)
          (alternate "UART4_RX" bidirectional line)
          (alternate "USART1_CTS" bidirectional line)
          (alternate "USART1_NSS" bidirectional line)
          (alternate "USB_OTG_HS_DM" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -58.42 180) (length 5.08)
          (name "PC14" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
          (alternate "RCC_OSC32_IN" bidirectional line)
        )
        (pin bidirectional line (at 38.1 33.02 180) (length 5.08)
          (name "PA12" (effects (font (size 1.27 1.27))))
          (number "70" (effects (font (size 1.27 1.27))))
          (alternate "FDCAN1_TX" bidirectional line)
          (alternate "I2S2_CK" bidirectional line)
          (alternate "LPUART1_DE" bidirectional line)
          (alternate "LPUART1_RTS" bidirectional line)
          (alternate "LTDC_R5" bidirectional line)
          (alternate "SAI4_FS_B" bidirectional line)
          (alternate "SPI2_SCK" bidirectional line)
          (alternate "TIM1_BKIN2" bidirectional line)
          (alternate "TIM1_ETR" bidirectional line)
          (alternate "UART4_TX" bidirectional line)
          (alternate "USART1_DE" bidirectional line)
          (alternate "USART1_RTS" bidirectional line)
          (alternate "USB_OTG_HS_DP" bidirectional line)
        )
        (pin bidirectional line (at 38.1 30.48 180) (length 5.08)
          (name "PA13(JTMS" (effects (font (size 1.27 1.27))))
          (number "71" (effects (font (size 1.27 1.27))))
          (alternate "DEBUG_JTMS-SWDIO" bidirectional line)
        )
        (pin power_out line (at -35.56 -22.86 0) (length 5.08)
          (name "VCAP" (effects (font (size 1.27 1.27))))
          (number "72" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -71.12 90) (length 5.08) hide
          (name "VSS" (effects (font (size 1.27 1.27))))
          (number "73" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 15.24 71.12 270) (length 5.08)
          (name "VDDLDO" (effects (font (size 1.27 1.27))))
          (number "74" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 71.12 270) (length 5.08)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "75" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 7.62 71.12 270) (length 5.08)
          (name "VDD33USB" (effects (font (size 1.27 1.27))))
          (number "76" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 38.1 27.94 180) (length 5.08)
          (name "PA14(JTCK" (effects (font (size 1.27 1.27))))
          (number "77" (effects (font (size 1.27 1.27))))
          (alternate "DEBUG_JTCK-SWCLK" bidirectional line)
        )
        (pin bidirectional line (at 38.1 25.4 180) (length 5.08)
          (name "PA15(JTDI)" (effects (font (size 1.27 1.27))))
          (number "78" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_EXTI15" bidirectional line)
          (alternate "ADC2_EXTI15" bidirectional line)
          (alternate "ADC3_EXTI15" bidirectional line)
          (alternate "CEC" bidirectional line)
          (alternate "DEBUG_JTDI" bidirectional line)
          (alternate "I2S1_WS" bidirectional line)
          (alternate "I2S3_WS" bidirectional line)
          (alternate "I2S6_WS" bidirectional line)
          (alternate "LTDC_B6" bidirectional line)
          (alternate "LTDC_R3" bidirectional line)
          (alternate "SPI1_NSS" bidirectional line)
          (alternate "SPI3_NSS" bidirectional line)
          (alternate "SPI6_NSS" bidirectional line)
          (alternate "TIM2_CH1" bidirectional line)
          (alternate "TIM2_ETR" bidirectional line)
          (alternate "UART4_DE" bidirectional line)
          (alternate "UART4_RTS" bidirectional line)
          (alternate "UART7_TX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -48.26 180) (length 5.08)
          (name "PC10" (effects (font (size 1.27 1.27))))
          (number "79" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D8" bidirectional line)
          (alternate "DFSDM1_CKIN5" bidirectional line)
          (alternate "I2C5_SDA" bidirectional line)
          (alternate "I2S3_CK" bidirectional line)
          (alternate "LTDC_B1" bidirectional line)
          (alternate "LTDC_R2" bidirectional line)
          (alternate "OCTOSPIM_P1_IO1" bidirectional line)
          (alternate "PSSI_D8" bidirectional line)
          (alternate "SDMMC1_D2" bidirectional line)
          (alternate "SPI3_SCK" bidirectional line)
          (alternate "SWPMI1_RX" bidirectional line)
          (alternate "UART4_TX" bidirectional line)
          (alternate "USART3_TX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -60.96 180) (length 5.08)
          (name "PC15" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_EXTI15" bidirectional line)
          (alternate "ADC2_EXTI15" bidirectional line)
          (alternate "ADC3_EXTI15" bidirectional line)
          (alternate "RCC_OSC32_OUT" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -50.8 180) (length 5.08)
          (name "PC11" (effects (font (size 1.27 1.27))))
          (number "80" (effects (font (size 1.27 1.27))))
          (alternate "ADC1_EXTI11" bidirectional line)
          (alternate "ADC2_EXTI11" bidirectional line)
          (alternate "ADC3_EXTI11" bidirectional line)
          (alternate "DCMI_D4" bidirectional line)
          (alternate "DFSDM1_DATIN5" bidirectional line)
          (alternate "I2C5_SCL" bidirectional line)
          (alternate "I2S3_SDI" bidirectional line)
          (alternate "LTDC_B4" bidirectional line)
          (alternate "OCTOSPIM_P1_NCS" bidirectional line)
          (alternate "PSSI_D4" bidirectional line)
          (alternate "SDMMC1_D3" bidirectional line)
          (alternate "SPI3_MISO" bidirectional line)
          (alternate "UART4_RX" bidirectional line)
          (alternate "USART3_RX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -53.34 180) (length 5.08)
          (name "PC12" (effects (font (size 1.27 1.27))))
          (number "81" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D9" bidirectional line)
          (alternate "DEBUG_TRACED3" bidirectional line)
          (alternate "FMC_D6" bidirectional line)
          (alternate "FMC_DA6" bidirectional line)
          (alternate "I2C5_SMBA" bidirectional line)
          (alternate "I2S3_SDO" bidirectional line)
          (alternate "I2S6_CK" bidirectional line)
          (alternate "LTDC_R6" bidirectional line)
          (alternate "PSSI_D9" bidirectional line)
          (alternate "SDMMC1_CK" bidirectional line)
          (alternate "SPI3_MOSI" bidirectional line)
          (alternate "SPI6_SCK" bidirectional line)
          (alternate "TIM15_CH1" bidirectional line)
          (alternate "UART5_TX" bidirectional line)
          (alternate "USART3_CK" bidirectional line)
        )
        (pin bidirectional line (at -35.56 17.78 0) (length 5.08)
          (name "PD0" (effects (font (size 1.27 1.27))))
          (number "82" (effects (font (size 1.27 1.27))))
          (alternate "DFSDM1_CKIN6" bidirectional line)
          (alternate "FDCAN1_RX" bidirectional line)
          (alternate "FMC_D2" bidirectional line)
          (alternate "FMC_DA2" bidirectional line)
          (alternate "LTDC_B1" bidirectional line)
          (alternate "UART4_RX" bidirectional line)
          (alternate "UART9_CTS" bidirectional line)
        )
        (pin bidirectional line (at -35.56 15.24 0) (length 5.08)
          (name "PD1" (effects (font (size 1.27 1.27))))
          (number "83" (effects (font (size 1.27 1.27))))
          (alternate "DFSDM1_DATIN6" bidirectional line)
          (alternate "FDCAN1_TX" bidirectional line)
          (alternate "FMC_D3" bidirectional line)
          (alternate "FMC_DA3" bidirectional line)
          (alternate "UART4_TX" bidirectional line)
        )
        (pin bidirectional line (at -35.56 12.7 0) (length 5.08)
          (name "PD2" (effects (font (size 1.27 1.27))))
          (number "84" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D11" bidirectional line)
          (alternate "DEBUG_TRACED2" bidirectional line)
          (alternate "FMC_D7" bidirectional line)
          (alternate "FMC_DA7" bidirectional line)
          (alternate "LTDC_B2" bidirectional line)
          (alternate "LTDC_B7" bidirectional line)
          (alternate "PSSI_D11" bidirectional line)
          (alternate "SDMMC1_CMD" bidirectional line)
          (alternate "TIM15_BKIN" bidirectional line)
          (alternate "TIM3_ETR" bidirectional line)
          (alternate "UART5_RX" bidirectional line)
        )
        (pin bidirectional line (at -35.56 10.16 0) (length 5.08)
          (name "PD3" (effects (font (size 1.27 1.27))))
          (number "85" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D5" bidirectional line)
          (alternate "DFSDM1_CKOUT" bidirectional line)
          (alternate "FMC_CLK" bidirectional line)
          (alternate "I2S2_CK" bidirectional line)
          (alternate "LTDC_G7" bidirectional line)
          (alternate "PSSI_D5" bidirectional line)
          (alternate "SPI2_SCK" bidirectional line)
          (alternate "USART2_CTS" bidirectional line)
          (alternate "USART2_NSS" bidirectional line)
        )
        (pin bidirectional line (at -35.56 7.62 0) (length 5.08)
          (name "PD4" (effects (font (size 1.27 1.27))))
          (number "86" (effects (font (size 1.27 1.27))))
          (alternate "FMC_NOE" bidirectional line)
          (alternate "OCTOSPIM_P1_IO4" bidirectional line)
          (alternate "USART2_DE" bidirectional line)
          (alternate "USART2_RTS" bidirectional line)
        )
        (pin bidirectional line (at -35.56 5.08 0) (length 5.08)
          (name "PD5" (effects (font (size 1.27 1.27))))
          (number "87" (effects (font (size 1.27 1.27))))
          (alternate "FMC_NWE" bidirectional line)
          (alternate "OCTOSPIM_P1_IO5" bidirectional line)
          (alternate "USART2_TX" bidirectional line)
        )
        (pin power_in line (at 2.54 71.12 270) (length 5.08)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "88" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 38.1 12.7 180) (length 5.08)
          (name "PB3(JTDO" (effects (font (size 1.27 1.27))))
          (number "89" (effects (font (size 1.27 1.27))))
          (alternate "CRS_SYNC" bidirectional line)
          (alternate "DEBUG_JTDO-SWO" bidirectional line)
          (alternate "I2S1_CK" bidirectional line)
          (alternate "I2S3_CK" bidirectional line)
          (alternate "I2S6_CK" bidirectional line)
          (alternate "SDMMC2_D2" bidirectional line)
          (alternate "SPI1_SCK" bidirectional line)
          (alternate "SPI3_SCK" bidirectional line)
          (alternate "SPI6_SCK" bidirectional line)
          (alternate "TIM24_ETR" bidirectional line)
          (alternate "TIM2_CH2" bidirectional line)
          (alternate "UART7_RX" bidirectional line)
        )
        (pin power_in line (at 5.08 -71.12 90) (length 5.08)
          (name "VSSSMPS" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 38.1 10.16 180) (length 5.08)
          (name "PB4(NJTRST)" (effects (font (size 1.27 1.27))))
          (number "90" (effects (font (size 1.27 1.27))))
          (alternate "DEBUG_JTRST" bidirectional line)
          (alternate "I2S1_SDI" bidirectional line)
          (alternate "I2S2_WS" bidirectional line)
          (alternate "I2S3_SDI" bidirectional line)
          (alternate "I2S6_SDI" bidirectional line)
          (alternate "SDMMC2_D3" bidirectional line)
          (alternate "SPI1_MISO" bidirectional line)
          (alternate "SPI2_NSS" bidirectional line)
          (alternate "SPI3_MISO" bidirectional line)
          (alternate "SPI6_MISO" bidirectional line)
          (alternate "TIM16_BKIN" bidirectional line)
          (alternate "TIM3_CH1" bidirectional line)
          (alternate "UART7_TX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 7.62 180) (length 5.08)
          (name "PB5" (effects (font (size 1.27 1.27))))
          (number "91" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D10" bidirectional line)
          (alternate "ETH_PPS_OUT" bidirectional line)
          (alternate "FDCAN2_RX" bidirectional line)
          (alternate "FMC_SDCKE1" bidirectional line)
          (alternate "I2C1_SMBA" bidirectional line)
          (alternate "I2C4_SMBA" bidirectional line)
          (alternate "I2S1_SDO" bidirectional line)
          (alternate "I2S3_SDO" bidirectional line)
          (alternate "I2S6_SDO" bidirectional line)
          (alternate "LTDC_B5" bidirectional line)
          (alternate "PSSI_D10" bidirectional line)
          (alternate "SPI1_MOSI" bidirectional line)
          (alternate "SPI3_MOSI" bidirectional line)
          (alternate "SPI6_MOSI" bidirectional line)
          (alternate "TIM17_BKIN" bidirectional line)
          (alternate "TIM3_CH2" bidirectional line)
          (alternate "UART5_RX" bidirectional line)
          (alternate "USB_OTG_HS_ULPI_D7" bidirectional line)
        )
        (pin bidirectional line (at 38.1 5.08 180) (length 5.08)
          (name "PB6" (effects (font (size 1.27 1.27))))
          (number "92" (effects (font (size 1.27 1.27))))
          (alternate "CEC" bidirectional line)
          (alternate "DCMI_D5" bidirectional line)
          (alternate "DFSDM1_DATIN5" bidirectional line)
          (alternate "FDCAN2_TX" bidirectional line)
          (alternate "FMC_SDNE1" bidirectional line)
          (alternate "I2C1_SCL" bidirectional line)
          (alternate "I2C4_SCL" bidirectional line)
          (alternate "LPUART1_TX" bidirectional line)
          (alternate "OCTOSPIM_P1_NCS" bidirectional line)
          (alternate "PSSI_D5" bidirectional line)
          (alternate "TIM16_CH1N" bidirectional line)
          (alternate "TIM4_CH1" bidirectional line)
          (alternate "UART5_TX" bidirectional line)
          (alternate "USART1_TX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 2.54 180) (length 5.08)
          (name "PB7" (effects (font (size 1.27 1.27))))
          (number "93" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_VSYNC" bidirectional line)
          (alternate "DFSDM1_CKIN5" bidirectional line)
          (alternate "FMC_NL" bidirectional line)
          (alternate "I2C1_SDA" bidirectional line)
          (alternate "I2C4_SDA" bidirectional line)
          (alternate "LPUART1_RX" bidirectional line)
          (alternate "PSSI_RDY" bidirectional line)
          (alternate "PWR_PVD_IN" bidirectional line)
          (alternate "TIM17_CH1N" bidirectional line)
          (alternate "TIM4_CH2" bidirectional line)
          (alternate "USART1_RX" bidirectional line)
        )
        (pin input line (at -35.56 58.42 0) (length 5.08)
          (name "BOOT0" (effects (font (size 1.27 1.27))))
          (number "94" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 38.1 0 180) (length 5.08)
          (name "PB8" (effects (font (size 1.27 1.27))))
          (number "95" (effects (font (size 1.27 1.27))))
          (alternate "DCMI_D6" bidirectional line)
          (alternate "DFSDM1_CKIN7" bidirectional line)
          (alternate "ETH_TXD3" bidirectional line)
          (alternate "FDCAN1_RX" bidirectional line)
          (alternate "I2C1_SCL" bidirectional line)
          (alternate "I2C4_SCL" bidirectional line)
          (alternate "LTDC_B6" bidirectional line)
          (alternate "PSSI_D6" bidirectional line)
          (alternate "SDMMC1_CKIN" bidirectional line)
          (alternate "SDMMC1_D4" bidirectional line)
          (alternate "SDMMC2_D4" bidirectional line)
          (alternate "TIM16_CH1" bidirectional line)
          (alternate "TIM4_CH3" bidirectional line)
          (alternate "UART4_RX" bidirectional line)
        )
        (pin bidirectional line (at 38.1 -2.54 180) (length 5.08)
          (name "PB9" (effects (font (size 1.27 1.27))))
          (number "96" (effects (font (size 1.27 1.27))))
          (alternate "DAC1_EXTI9" bidirectional line)
          (alternate "DCMI_D7" bidirectional line)
          (alternate "DFSDM1_DATIN7" bidirectional line)
          (alternate "FDCAN1_TX" bidirectional line)
          (alternate "I2C1_SDA" bidirectional line)
          (alternate "I2C4_SDA" bidirectional line)
          (alternate "I2C4_SMBA" bidirectional line)
          (alternate "I2S2_WS" bidirectional line)
          (alternate "LTDC_B7" bidirectional line)
          (alternate "PSSI_D7" bidirectional line)
          (alternate "SDMMC1_CDIR" bidirectional line)
          (alternate "SDMMC1_D5" bidirectional line)
          (alternate "SDMMC2_D5" bidirectional line)
          (alternate "SPI2_NSS" bidirectional line)
          (alternate "TIM17_CH1" bidirectional line)
          (alternate "TIM4_CH4" bidirectional line)
          (alternate "UART4_TX" bidirectional line)
        )
        (pin power_out line (at -35.56 -25.4 0) (length 5.08)
          (name "VCAP" (effects (font (size 1.27 1.27))))
          (number "97" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -71.12 90) (length 5.08) hide
          (name "VSS" (effects (font (size 1.27 1.27))))
          (number "98" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 17.78 71.12 270) (length 5.08)
          (name "VDDLDO" (effects (font (size 1.27 1.27))))
          (number "99" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Regulator_Linear:LM1117DT-3.3" (in_bom yes) (on_board yes)
      (property "Reference" "U" (at -3.81 3.175 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "LM1117DT-3.3" (at 0 3.175 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "linear regulator ldo fixed positive" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, TO-252" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "TO?252*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "LM1117DT-3.3_0_1"
        (rectangle (start -5.08 -5.08) (end 5.08 1.905)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
      )
      (symbol "LM1117DT-3.3_1_1"
        (pin power_in line (at 0 -7.62 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_out line (at 7.62 0 180) (length 2.54)
          (name "VO" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -7.62 0 0) (length 2.54)
          (name "VI" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "+3.3V" (at 0 3.556 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+3.3V_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "+3.3V_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+3.3V" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+3.3VADC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 3.81 -1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "+3.3VADC" (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"+3.3VADC\"" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+3.3VADC_0_0"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+3.3VADC" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
      (symbol "+3.3VADC_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
    )
    (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "+5V" (at 0 3.556 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+5V_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "+5V_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+5V" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "GND_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 -1.27)
            (xy 1.27 -1.27)
            (xy 0 -2.54)
            (xy -1.27 -1.27)
            (xy 0 -1.27)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "GND_1_1"
        (pin power_in line (at 0 0 270) (length 0) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "#FLG" (at 0 1.905 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "PWR_FLAG" (at 0 3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "flag power" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Special symbol for telling ERC where power comes from" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "PWR_FLAG_0_0"
        (pin power_out line (at 0 0 90) (length 0)
          (name "pwr" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
      (symbol "PWR_FLAG_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 1.27)
            (xy -1.016 1.905)
            (xy 0 2.54)
            (xy 1.016 1.905)
            (xy 0 1.27)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
    )
  )

  (junction (at 140.97 104.775) (diameter 0) (color 0 0 0 0)
    (uuid 316629ba-4686-4640-b88c-5ac6e9d7b92f)
  )
  (junction (at 47.625 44.45) (diameter 0) (color 0 0 0 0)
    (uuid 3538b336-3a6d-4b14-a22b-0172fd059099)
  )
  (junction (at 34.29 33.02) (diameter 0) (color 0 0 0 0)
    (uuid 3d375a8d-5235-4abe-9f0c-2fa486086461)
  )
  (junction (at 60.96 25.4) (diameter 0) (color 0 0 0 0)
    (uuid 3da8f4dd-e12d-4946-a628-2f1baee6a4b3)
  )
  (junction (at 95.885 38.1) (diameter 0) (color 0 0 0 0)
    (uuid 40a800ec-d3f1-42ab-82c6-f1da8979ad5c)
  )
  (junction (at 54.61 52.07) (diameter 0) (color 0 0 0 0)
    (uuid 44336764-e33e-4f53-97e0-a2ee8b40f23e)
  )
  (junction (at 219.71 98.425) (diameter 0) (color 0 0 0 0)
    (uuid 48091bf6-aa66-4814-8e00-fc4c00e5dfd3)
  )
  (junction (at 98.425 154.305) (diameter 0) (color 0 0 0 0)
    (uuid 49b5e8dc-b83c-4793-a473-5438b1cb5012)
  )
  (junction (at 113.03 81.28) (diameter 0) (color 0 0 0 0)
    (uuid 4dc8e745-7366-42db-a0e4-52ee9bc86b42)
  )
  (junction (at 99.695 41.91) (diameter 0) (color 0 0 0 0)
    (uuid 4e70bac6-5c01-4740-8ce9-0934b8286cde)
  )
  (junction (at 47.625 52.07) (diameter 0) (color 0 0 0 0)
    (uuid 5c712a11-d122-4a6a-9597-f76288cde5dc)
  )
  (junction (at 74.295 44.45) (diameter 0) (color 0 0 0 0)
    (uuid 6092b39e-d866-4af0-b8ee-05cb8c1e8fc9)
  )
  (junction (at 74.295 25.4) (diameter 0) (color 0 0 0 0)
    (uuid 73f16289-9f3b-4d66-8076-010ffa6d6729)
  )
  (junction (at 47.625 33.02) (diameter 0) (color 0 0 0 0)
    (uuid 838387cb-c64a-4f52-abfc-73294c39deee)
  )
  (junction (at 221.615 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 865f2b7f-ce2f-4db7-9711-8fe9aef01ceb)
  )
  (junction (at 22.225 25.4) (diameter 0) (color 0 0 0 0)
    (uuid 8d7884e2-9e69-4cc4-80ac-8c9a6c1fe1dc)
  )
  (junction (at 60.96 33.02) (diameter 0) (color 0 0 0 0)
    (uuid 90ab65b0-f8f7-487f-9e0c-ea09b825bcd4)
  )
  (junction (at 60.96 44.45) (diameter 0) (color 0 0 0 0)
    (uuid 93c72025-ab91-4d79-8f72-edf7856e5358)
  )
  (junction (at 60.96 52.07) (diameter 0) (color 0 0 0 0)
    (uuid a02ca9f6-9762-4055-b65f-b4439ef18e22)
  )
  (junction (at 34.29 44.45) (diameter 0) (color 0 0 0 0)
    (uuid a5cc575d-3f7a-4f7f-a772-1618cb58e018)
  )
  (junction (at 47.625 25.4) (diameter 0) (color 0 0 0 0)
    (uuid ab9d855c-1c89-47fc-8e38-124e8f193189)
  )
  (junction (at 106.045 73.66) (diameter 0) (color 0 0 0 0)
    (uuid af3065ca-2b52-469c-9f9f-832f91433bb6)
  )
  (junction (at 53.975 33.02) (diameter 0) (color 0 0 0 0)
    (uuid ba5b02d6-7218-425d-8977-94ee7b8cffdb)
  )
  (junction (at 148.59 104.775) (diameter 0) (color 0 0 0 0)
    (uuid c616cfec-ad93-47ae-b33e-cdc84a768dd6)
  )
  (junction (at 123.19 43.18) (diameter 0) (color 0 0 0 0)
    (uuid c70b992c-e8ce-4e41-aa34-a4edfd71a6be)
  )
  (junction (at 123.19 40.64) (diameter 0) (color 0 0 0 0)
    (uuid c9d78c12-006e-47e6-a062-32c72e5b3b25)
  )
  (junction (at 140.97 95.885) (diameter 0) (color 0 0 0 0)
    (uuid cbe99778-da38-4fc4-a49e-b691abba0a0d)
  )
  (junction (at 98.425 160.02) (diameter 0) (color 0 0 0 0)
    (uuid d07eb1a0-0b1c-4f8d-9e8e-92eb802960d9)
  )
  (junction (at 269.875 55.88) (diameter 0) (color 0 0 0 0)
    (uuid dd7e7a68-86d7-4152-a3e7-977578c2e427)
  )
  (junction (at 119.38 73.66) (diameter 0) (color 0 0 0 0)
    (uuid e842e330-fd93-45ff-b16b-5fe40d5eea93)
  )
  (junction (at 34.29 25.4) (diameter 0) (color 0 0 0 0)
    (uuid e9666db9-042c-4b1a-a92c-ef04a3bedb20)
  )
  (junction (at 269.875 58.42) (diameter 0) (color 0 0 0 0)
    (uuid f0821b5d-7a6b-4b3e-b9b9-3ee6a91b9743)
  )
  (junction (at 109.855 38.1) (diameter 0) (color 0 0 0 0)
    (uuid f9864fac-75b0-4bf2-bb0a-7d9f10a8186b)
  )

  (no_connect (at 186.69 20.32) (uuid 0727f6ce-f5d1-40b8-a1b9-8cccace60861))
  (no_connect (at 199.39 93.98) (uuid 0753b4f1-db1e-444b-a3d1-9e80f9fd683c))
  (no_connect (at 207.01 93.98) (uuid 0bcd2dea-1c13-4b23-8387-23fc33a307f2))
  (no_connect (at 194.31 93.98) (uuid 0df32515-d9d4-4687-9975-5d7ef0326179))
  (no_connect (at 189.23 93.98) (uuid 11a277de-4d48-4725-b686-bb5362e40bec))
  (no_connect (at 204.47 93.98) (uuid 1516f10d-20ed-4295-bb3f-e6131afeff02))
  (no_connect (at 133.35 20.32) (uuid 165a6fc1-e603-48c3-a4ec-b866e2d8ed77))
  (no_connect (at 173.99 20.32) (uuid 17bcb4c2-8b43-4eb6-9a73-ae68fbb6f7d1))
  (no_connect (at 194.31 20.32) (uuid 1d356966-af4d-4028-be66-fbcdde81872f))
  (no_connect (at 153.67 20.32) (uuid 1f479bf3-acad-4717-9863-c967c4a9e6c7))
  (no_connect (at 222.25 20.32) (uuid 217a7215-8409-41ef-8bfe-ed7a16462c2b))
  (no_connect (at 179.07 20.32) (uuid 24177fbd-3b55-4c7e-a129-2edb4a615270))
  (no_connect (at 234.95 20.32) (uuid 2a17c08c-5a2a-423d-a483-30386384dd8c))
  (no_connect (at 176.53 20.32) (uuid 2a8fc393-6108-444b-95f8-aa3469b1b07e))
  (no_connect (at 168.91 20.32) (uuid 3534db53-cdc3-4f5c-bc25-c65299ccbb87))
  (no_connect (at 212.09 20.32) (uuid 374b91fd-fa1e-488d-8d42-bd8ce76597ff))
  (no_connect (at 163.83 20.32) (uuid 37785196-db37-47e5-aa41-0a8e2793e4ff))
  (no_connect (at 209.55 20.32) (uuid 3880f4fa-1921-40b7-8425-22ff1a9b2d1a))
  (no_connect (at 184.15 20.32) (uuid 39cbbd81-7686-450b-97a0-b58a312db0c3))
  (no_connect (at 135.89 20.32) (uuid 42cdd0bf-a15c-49c2-9414-8d5fbdf49ae6))
  (no_connect (at 171.45 93.98) (uuid 4587ac96-2e26-466d-8c8b-26147e50b3f7))
  (no_connect (at 199.39 20.32) (uuid 49301fa7-ceeb-4b75-b2a4-20f23a9fa8b0))
  (no_connect (at 229.87 20.32) (uuid 4940066c-7c0b-4774-95c2-a3f50416ca42))
  (no_connect (at 161.29 93.98) (uuid 4d30f582-80ed-45e7-b97f-42d524077300))
  (no_connect (at 140.97 20.32) (uuid 53632915-d309-42df-a6bd-022e28e6087a))
  (no_connect (at 240.03 20.32) (uuid 54143182-702a-4eac-b0eb-34da52feaae1))
  (no_connect (at 247.65 20.32) (uuid 59534d21-5188-43ae-92db-d0846c378088))
  (no_connect (at 184.15 93.98) (uuid 61b3fe9a-2d32-4be1-a9ad-e2a83406a3a0))
  (no_connect (at 153.67 93.98) (uuid 6838600e-9c29-45f9-8a3d-d1a6a720868d))
  (no_connect (at 191.77 93.98) (uuid 6b3b29e2-d8d3-4830-9eec-975842bc94b4))
  (no_connect (at 196.85 20.32) (uuid 6bc25d4e-77a2-431f-aa6b-efedbc68bea3))
  (no_connect (at 181.61 93.98) (uuid 74a029e4-7f33-46e2-ba37-745d9dc388ad))
  (no_connect (at 156.21 93.98) (uuid 78d85019-3e65-4077-a591-dcd90f0d0107))
  (no_connect (at 181.61 20.32) (uuid 7abd98bf-d2a5-4673-91db-980ecee0e984))
  (no_connect (at 156.21 20.32) (uuid 7bb440cd-00c1-4024-989e-938b38ee329c))
  (no_connect (at 143.51 93.98) (uuid 7f3f8f32-06cc-4ec1-a0d8-d4807b2e4b9f))
  (no_connect (at 245.11 20.32) (uuid 8d521069-4f69-493b-8eac-6d4fc8f6808b))
  (no_connect (at 130.81 93.98) (uuid 8f7fa3cb-a098-4f26-b7fe-8ee87fc8f7c0))
  (no_connect (at 201.93 93.98) (uuid 91e25a7a-6fb8-4509-8348-c30bcabe0508))
  (no_connect (at 176.53 93.98) (uuid 98663f77-b290-43e0-9dcf-dced48b7aca3))
  (no_connect (at 143.51 20.32) (uuid 9883d2f6-fd29-4136-931f-d169c93ee07f))
  (no_connect (at 135.89 93.98) (uuid 99414508-37c7-4364-8cb5-281b6eeb97ef))
  (no_connect (at 130.81 20.32) (uuid a0b86e10-a303-49ed-8dc2-2b24b61039a7))
  (no_connect (at 151.13 20.32) (uuid a5dee010-33e1-4272-9fe2-35fcab34bc7f))
  (no_connect (at 163.83 93.98) (uuid a8e4c826-f2ab-441f-a285-068daead4a44))
  (no_connect (at 138.43 20.32) (uuid af372112-9622-4b5e-900a-19e2518eb458))
  (no_connect (at 217.17 20.32) (uuid bf0be700-baad-4279-96f7-8e4610f637af))
  (no_connect (at 166.37 93.98) (uuid bf6e4b5e-74a2-44eb-b6a4-6e57007f095d))
  (no_connect (at 179.07 93.98) (uuid c49bbb21-7b77-4b57-a857-d46d0da485b1))
  (no_connect (at 255.27 20.32) (uuid c80d93af-31c1-4d4d-95fc-f109edecffa6))
  (no_connect (at 237.49 20.32) (uuid c935c230-7c42-4766-9d6c-0f9fdd233964))
  (no_connect (at 161.29 20.32) (uuid cd390bdd-c96b-4255-84e2-416eb891c1b7))
  (no_connect (at 204.47 20.32) (uuid d0e6da6f-6623-47d1-80a6-f99e4196b605))
  (no_connect (at 250.19 20.32) (uuid d386cad8-919d-4e95-ac04-b45669e07d9e))
  (no_connect (at 252.73 20.32) (uuid d8544e65-c5da-4250-90fc-1df5c4ebae42))
  (no_connect (at 196.85 93.98) (uuid dba54134-1036-4809-84fa-dedb5125c1b7))
  (no_connect (at 207.01 20.32) (uuid dbde3bb8-b67b-47e8-8994-94fa0444902d))
  (no_connect (at 209.55 93.98) (uuid dc5375cd-1ccf-498d-a560-d0615a41b314))
  (no_connect (at 224.79 20.32) (uuid e4e6b0a0-cf3d-45f5-9eb4-a138c45232bd))
  (no_connect (at 242.57 20.32) (uuid e5d2d8e0-64eb-4cd6-b771-cec52daa5c60))
  (no_connect (at 158.75 20.32) (uuid effdb286-6e6f-42f5-8296-1100f493f9d4))
  (no_connect (at 168.91 93.98) (uuid f2b485bf-6131-4f06-ba4c-db8f9f94d60d))
  (no_connect (at 166.37 20.32) (uuid f69d0d4d-b6e6-4d18-9843-e5fdb6f4b556))
  (no_connect (at 219.71 20.32) (uuid f7855c29-209f-4d33-9531-236da7930a73))
  (no_connect (at 232.41 20.32) (uuid fa7da8f9-1d71-4aa5-a90b-b51ee4a94ccf))
  (no_connect (at 201.93 20.32) (uuid fb4145b5-5a33-4cd0-abc4-5a11c14c7523))
  (no_connect (at 123.19 50.8) (uuid fc3a6694-0742-4d97-987b-a9253fc6b6c8))
  (no_connect (at 148.59 20.32) (uuid fef954e6-47e3-4277-a0db-7b3a009faa20))
  (no_connect (at 186.69 93.98) (uuid ffe09eb5-9ec9-4577-8f2a-cea87e03fb28))

  (wire (pts (xy 97.155 41.91) (xy 99.695 41.91))
    (stroke (width 0) (type default))
    (uuid 00fe5160-496c-4c6d-8933-f37d3beab8ff)
  )
  (wire (pts (xy 22.225 44.45) (xy 34.29 44.45))
    (stroke (width 0) (type default))
    (uuid 01718aa2-a76a-42a6-be93-56d8780e391c)
  )
  (wire (pts (xy 98.425 160.02) (xy 107.315 160.02))
    (stroke (width 0) (type default))
    (uuid 0d981758-ac29-42da-9614-81411b1e282c)
  )
  (wire (pts (xy 34.29 44.45) (xy 47.625 44.45))
    (stroke (width 0) (type default))
    (uuid 0dfbc6fe-874c-449b-b27d-2320e3622cad)
  )
  (wire (pts (xy 74.295 43.18) (xy 74.295 44.45))
    (stroke (width 0) (type default))
    (uuid 128d1907-c1d0-4645-b3fa-a1e7f6ceb554)
  )
  (wire (pts (xy 47.625 43.18) (xy 47.625 44.45))
    (stroke (width 0) (type default))
    (uuid 145a2855-23bf-45c9-8949-43e42cda3763)
  )
  (wire (pts (xy 54.61 52.07) (xy 54.61 54.61))
    (stroke (width 0) (type default))
    (uuid 1548a193-8a4c-4278-b824-1e310e7264f6)
  )
  (wire (pts (xy 36.83 68.58) (xy 36.83 71.12))
    (stroke (width 0) (type default))
    (uuid 1ad3fd36-c4a8-4231-8ed3-4ff0182684a4)
  )
  (wire (pts (xy 113.03 81.28) (xy 119.38 81.28))
    (stroke (width 0) (type default))
    (uuid 1cd6958f-f7b1-46ad-9e2d-b6f9d0af553f)
  )
  (wire (pts (xy 148.59 93.98) (xy 148.59 104.775))
    (stroke (width 0) (type default))
    (uuid 203aaf9b-9185-47b9-a39a-9fc4f39e2b89)
  )
  (wire (pts (xy 99.695 41.91) (xy 99.695 42.545))
    (stroke (width 0) (type default))
    (uuid 22e595d3-330c-40e6-8a5b-13f79d11b162)
  )
  (wire (pts (xy 34.29 24.13) (xy 34.29 25.4))
    (stroke (width 0) (type default))
    (uuid 23f8ef56-e828-4c85-9ceb-0c23207877dd)
  )
  (wire (pts (xy 140.97 104.14) (xy 140.97 104.775))
    (stroke (width 0) (type default))
    (uuid 251e1cd9-ca5c-4949-bdeb-99112808bf11)
  )
  (wire (pts (xy 47.625 52.07) (xy 54.61 52.07))
    (stroke (width 0) (type default))
    (uuid 265c4cf9-1bd1-432d-b9f7-99f27519d326)
  )
  (wire (pts (xy 117.475 147.32) (xy 117.475 149.86))
    (stroke (width 0) (type default))
    (uuid 2929c9e6-6eea-4dde-ba2b-6502e7b98071)
  )
  (wire (pts (xy 227.33 106.045) (xy 227.33 107.95))
    (stroke (width 0) (type default))
    (uuid 296bf757-3c0b-494e-92a3-e930d3ffbe50)
  )
  (wire (pts (xy 67.31 92.075) (xy 71.755 92.075))
    (stroke (width 0) (type default))
    (uuid 2be03f97-0946-444f-9a21-8a15229d9933)
  )
  (wire (pts (xy 34.29 33.02) (xy 47.625 33.02))
    (stroke (width 0) (type default))
    (uuid 2e5fef62-59a9-4e92-899d-402f64ea7c32)
  )
  (wire (pts (xy 109.855 38.1) (xy 123.19 38.1))
    (stroke (width 0) (type default))
    (uuid 2ee90013-c198-4329-a036-6175b68ce8ff)
  )
  (wire (pts (xy 121.285 60.96) (xy 123.19 60.96))
    (stroke (width 0) (type default))
    (uuid 3140ea10-0181-47b3-b3aa-3b9b63f2971e)
  )
  (wire (pts (xy 131.445 95.885) (xy 140.97 95.885))
    (stroke (width 0) (type default))
    (uuid 3b0e508f-b2c1-4bf9-a5a3-171a23c92886)
  )
  (wire (pts (xy 60.96 43.18) (xy 60.96 44.45))
    (stroke (width 0) (type default))
    (uuid 4033ac39-d333-454e-a871-1cea591f38e8)
  )
  (wire (pts (xy 148.59 104.775) (xy 140.97 104.775))
    (stroke (width 0) (type default))
    (uuid 40ede4d0-71e3-4788-9940-c9aaa72e25c8)
  )
  (wire (pts (xy 219.71 98.425) (xy 227.33 98.425))
    (stroke (width 0) (type default))
    (uuid 452b51a6-e89b-4d40-88c4-8d69c29f8a94)
  )
  (wire (pts (xy 148.59 104.775) (xy 156.845 104.775))
    (stroke (width 0) (type default))
    (uuid 45ca829b-7364-4bf2-a7af-88b03152c005)
  )
  (wire (pts (xy 47.625 44.45) (xy 60.96 44.45))
    (stroke (width 0) (type default))
    (uuid 4747e616-0a45-4d3f-8445-c43da4009ce1)
  )
  (wire (pts (xy 34.29 25.4) (xy 47.625 25.4))
    (stroke (width 0) (type default))
    (uuid 476be6b7-d6a3-4325-8eb7-c28ce4ca013b)
  )
  (wire (pts (xy 227.33 17.78) (xy 227.33 20.32))
    (stroke (width 0) (type default))
    (uuid 47debbbf-e7d4-451e-8558-3cb5354d6fbd)
  )
  (wire (pts (xy 22.225 25.4) (xy 34.29 25.4))
    (stroke (width 0) (type default))
    (uuid 4ba104ee-265a-40c0-bc34-f18274f74446)
  )
  (wire (pts (xy 214.63 107.95) (xy 221.615 107.95))
    (stroke (width 0) (type default))
    (uuid 4c034e18-c87d-4c35-892f-b890bfd57475)
  )
  (wire (pts (xy 121.285 68.58) (xy 123.19 68.58))
    (stroke (width 0) (type default))
    (uuid 4cc92071-cebf-4dcf-bede-fa5d86af8ec6)
  )
  (wire (pts (xy 60.96 44.45) (xy 74.295 44.45))
    (stroke (width 0) (type default))
    (uuid 50e36507-f631-4459-83e6-076bdd593fad)
  )
  (wire (pts (xy 86.995 92.075) (xy 92.075 92.075))
    (stroke (width 0) (type default))
    (uuid 512ca54d-c6e1-45c3-a855-6e9411e7ff26)
  )
  (wire (pts (xy 47.625 24.13) (xy 47.625 25.4))
    (stroke (width 0) (type default))
    (uuid 558f3404-d730-4307-9816-8a9606f3cbe3)
  )
  (wire (pts (xy 269.875 55.88) (xy 269.875 58.42))
    (stroke (width 0) (type default))
    (uuid 59f15ed5-eaff-4ba3-8b4c-582ba0dab034)
  )
  (wire (pts (xy 106.045 81.28) (xy 113.03 81.28))
    (stroke (width 0) (type default))
    (uuid 5ac88b3d-52ab-43e1-bfde-b1fd645afb6c)
  )
  (wire (pts (xy 53.975 33.02) (xy 53.975 34.925))
    (stroke (width 0) (type default))
    (uuid 5edb50c5-f169-4291-9f99-ab61cfe9d44f)
  )
  (wire (pts (xy 60.96 24.13) (xy 60.96 25.4))
    (stroke (width 0) (type default))
    (uuid 60f1873b-d25f-463f-a738-9e454c031fcd)
  )
  (wire (pts (xy 34.29 43.18) (xy 34.29 44.45))
    (stroke (width 0) (type default))
    (uuid 613a1216-4a9a-4fb2-ad8d-7e57e070313e)
  )
  (wire (pts (xy 121.285 55.88) (xy 123.19 55.88))
    (stroke (width 0) (type default))
    (uuid 63f6725e-f2bc-4c77-b5b9-ee1a946fb971)
  )
  (wire (pts (xy 93.345 154.305) (xy 98.425 154.305))
    (stroke (width 0) (type default))
    (uuid 684ef513-c365-40eb-82c0-c4da1b4181c1)
  )
  (wire (pts (xy 74.295 24.13) (xy 74.295 25.4))
    (stroke (width 0) (type default))
    (uuid 68e2eddb-65a5-4d7a-b4ab-d4448ca2b7c7)
  )
  (wire (pts (xy 119.38 73.66) (xy 123.19 73.66))
    (stroke (width 0) (type default))
    (uuid 6e8bac89-b1c1-4267-8604-6e72308dc755)
  )
  (wire (pts (xy 191.77 17.78) (xy 191.77 20.32))
    (stroke (width 0) (type default))
    (uuid 7189ad5f-3fb7-44e0-9221-fd66c3c65b10)
  )
  (wire (pts (xy 47.625 25.4) (xy 60.96 25.4))
    (stroke (width 0) (type default))
    (uuid 76d1bd6a-e4a2-4d58-bef6-5c2b70530c87)
  )
  (wire (pts (xy 146.05 17.78) (xy 146.05 20.32))
    (stroke (width 0) (type default))
    (uuid 77085569-c675-4a8f-85b6-d0420304d191)
  )
  (wire (pts (xy 121.285 63.5) (xy 123.19 63.5))
    (stroke (width 0) (type default))
    (uuid 7bea1f84-d66d-414e-b0a1-d44c9218f280)
  )
  (wire (pts (xy 140.97 93.98) (xy 140.97 95.885))
    (stroke (width 0) (type default))
    (uuid 7f280f01-1e8d-4fcd-8eba-96ddbca4c92a)
  )
  (wire (pts (xy 265.43 58.42) (xy 269.875 58.42))
    (stroke (width 0) (type default))
    (uuid 899c45b2-fd7d-4b52-bc56-bb904869077d)
  )
  (wire (pts (xy 99.695 40.64) (xy 99.695 41.91))
    (stroke (width 0) (type default))
    (uuid 90b9bc12-e2a0-4982-8306-3012c591d8e4)
  )
  (wire (pts (xy 89.535 38.1) (xy 95.885 38.1))
    (stroke (width 0) (type default))
    (uuid 91acc310-ddda-401b-9057-f83e0f2cf565)
  )
  (wire (pts (xy 140.97 104.775) (xy 140.97 105.41))
    (stroke (width 0) (type default))
    (uuid 94efca24-8024-4f8a-896b-e5a32e9d9eda)
  )
  (wire (pts (xy 26.035 68.58) (xy 26.035 71.12))
    (stroke (width 0) (type default))
    (uuid 96a9ff6b-36c1-4f06-8799-691147e0f795)
  )
  (wire (pts (xy 60.96 52.07) (xy 74.295 52.07))
    (stroke (width 0) (type default))
    (uuid 9ae313f5-6623-4db7-9650-e64c2b83de44)
  )
  (wire (pts (xy 106.045 73.66) (xy 119.38 73.66))
    (stroke (width 0) (type default))
    (uuid 9e149619-9335-4459-ab78-457df7e7f2ae)
  )
  (wire (pts (xy 54.61 52.07) (xy 60.96 52.07))
    (stroke (width 0) (type default))
    (uuid 9eb47d19-2de0-4352-abc7-419d152a07fa)
  )
  (wire (pts (xy 140.97 95.885) (xy 140.97 96.52))
    (stroke (width 0) (type default))
    (uuid a8dae85c-e5d4-4547-8e06-f57c499272a7)
  )
  (wire (pts (xy 121.285 66.04) (xy 123.19 66.04))
    (stroke (width 0) (type default))
    (uuid a9355ad8-b477-4013-abc7-78c9ccf7f988)
  )
  (wire (pts (xy 58.42 69.215) (xy 61.595 69.215))
    (stroke (width 0) (type default))
    (uuid aa7ffc22-f39e-4d42-914e-9875e44ee917)
  )
  (wire (pts (xy 123.19 43.18) (xy 123.19 45.72))
    (stroke (width 0) (type default))
    (uuid b02bf3e6-27c8-40ed-8b76-cf72348697d5)
  )
  (wire (pts (xy 121.285 58.42) (xy 123.19 58.42))
    (stroke (width 0) (type default))
    (uuid b0acb556-3004-4204-abfb-d6c39a4e2e59)
  )
  (wire (pts (xy 67.945 69.215) (xy 71.755 69.215))
    (stroke (width 0) (type default))
    (uuid ba02ed69-3380-4ab2-b452-a89bdb3e374d)
  )
  (wire (pts (xy 219.71 93.98) (xy 219.71 98.425))
    (stroke (width 0) (type default))
    (uuid bc4d703c-b718-4ca3-8c4a-3b6c419ce138)
  )
  (wire (pts (xy 265.43 55.88) (xy 269.875 55.88))
    (stroke (width 0) (type default))
    (uuid bd170868-283d-46b5-a048-3c07f42e7310)
  )
  (wire (pts (xy 217.17 98.425) (xy 217.17 93.98))
    (stroke (width 0) (type default))
    (uuid bd633e5a-f526-4bf8-9497-9aad40734dd9)
  )
  (wire (pts (xy 189.23 15.24) (xy 189.23 20.32))
    (stroke (width 0) (type default))
    (uuid c10bad34-a95a-41ac-8c0f-42dd9417f142)
  )
  (wire (pts (xy 60.96 25.4) (xy 74.295 25.4))
    (stroke (width 0) (type default))
    (uuid c1f5e75d-d454-4e35-b30d-1c70d728995b)
  )
  (wire (pts (xy 221.615 107.95) (xy 227.33 107.95))
    (stroke (width 0) (type default))
    (uuid c56328b4-8f0c-4fd1-9963-f3fd8f705d79)
  )
  (wire (pts (xy 34.29 52.07) (xy 47.625 52.07))
    (stroke (width 0) (type default))
    (uuid c9713222-616b-450b-9868-91a6f3ac66ff)
  )
  (wire (pts (xy 95.885 38.1) (xy 109.855 38.1))
    (stroke (width 0) (type default))
    (uuid cb782c45-17f0-44e0-9b59-8fa38329209c)
  )
  (wire (pts (xy 214.63 106.045) (xy 214.63 107.95))
    (stroke (width 0) (type default))
    (uuid ccf34abd-2557-42ad-ae72-48b811a13349)
  )
  (wire (pts (xy 60.96 33.02) (xy 74.295 33.02))
    (stroke (width 0) (type default))
    (uuid cee7212b-f5f1-41eb-9e84-35ced318d06c)
  )
  (wire (pts (xy 47.625 33.02) (xy 53.975 33.02))
    (stroke (width 0) (type default))
    (uuid d1ad3ccb-4a86-405b-8ebd-aa9e82190451)
  )
  (wire (pts (xy 121.285 53.34) (xy 123.19 53.34))
    (stroke (width 0) (type default))
    (uuid d5caba2d-7a56-4260-b65f-f2fa911c8962)
  )
  (wire (pts (xy 58.42 71.755) (xy 61.595 71.755))
    (stroke (width 0) (type default))
    (uuid d9c36f22-ba71-4415-bf99-a4162e8696bb)
  )
  (wire (pts (xy 131.445 104.775) (xy 131.445 95.885))
    (stroke (width 0) (type default))
    (uuid da6aa2cc-99a3-4682-bf8f-3bb18560f58c)
  )
  (wire (pts (xy 98.425 154.305) (xy 107.315 154.305))
    (stroke (width 0) (type default))
    (uuid dac1b7ce-a8e7-4adb-93ba-712cb81dbb6d)
  )
  (wire (pts (xy 217.17 98.425) (xy 219.71 98.425))
    (stroke (width 0) (type default))
    (uuid de20f3dd-96f6-4414-86f1-a0816ae4b02c)
  )
  (wire (pts (xy 99.695 40.64) (xy 123.19 40.64))
    (stroke (width 0) (type default))
    (uuid deb49a09-4bb7-4c17-9576-b2b3198d3c61)
  )
  (wire (pts (xy 93.345 160.02) (xy 98.425 160.02))
    (stroke (width 0) (type default))
    (uuid e2254000-5c64-47ea-9e81-9773ab005305)
  )
  (wire (pts (xy 214.63 93.98) (xy 214.63 98.425))
    (stroke (width 0) (type default))
    (uuid e2d82e04-f908-4f95-8f68-f6e1a8ff797a)
  )
  (wire (pts (xy 22.225 33.02) (xy 34.29 33.02))
    (stroke (width 0) (type default))
    (uuid e89c46d1-b1c3-4768-8388-e1a87a62e9b8)
  )
  (wire (pts (xy 265.43 53.34) (xy 269.875 53.34))
    (stroke (width 0) (type default))
    (uuid e9a461a1-bb4d-4fee-bdbb-575a29606fc1)
  )
  (wire (pts (xy 53.975 33.02) (xy 60.96 33.02))
    (stroke (width 0) (type default))
    (uuid ed8e564f-d6af-4ed2-b7ce-ee8bd3c3a728)
  )
  (wire (pts (xy 86.995 69.215) (xy 90.805 69.215))
    (stroke (width 0) (type default))
    (uuid f30ae0ef-49df-4f76-89c8-b09a7a72eada)
  )
  (wire (pts (xy 124.46 147.32) (xy 124.46 149.86))
    (stroke (width 0) (type default))
    (uuid f418442d-d386-489e-ae7f-ca76bccb6c78)
  )
  (wire (pts (xy 121.285 71.12) (xy 123.19 71.12))
    (stroke (width 0) (type default))
    (uuid f6a5fefd-096d-4d3f-b712-d1a063284580)
  )
  (wire (pts (xy 269.875 53.34) (xy 269.875 55.88))
    (stroke (width 0) (type default))
    (uuid fdd795e1-7c4a-4476-91f1-d608a7d92df8)
  )
  (wire (pts (xy 123.19 40.64) (xy 123.19 43.18))
    (stroke (width 0) (type default))
    (uuid ff0d1719-4e17-4361-86ce-e53affa08f0a)
  )

  (label "SDA" (at 93.345 154.305 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 1804cf84-723a-4853-b1fa-78257a3d2fd9)
  )
  (label "VDD0" (at 34.29 24.13 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 18da6a04-7ee2-4e1d-acd8-482fa607c5bb)
  )
  (label "VDD7" (at 74.295 43.18 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 26d90d9c-a051-4c9e-ba66-987a1286b16d)
  )
  (label "VDD4" (at 121.285 63.5 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 2786e07d-b626-4484-9a76-2328ff618c5f)
  )
  (label "VDD0" (at 121.285 53.34 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 3c9a36a4-581e-4c63-b941-430659d690c6)
  )
  (label "SCL" (at 189.23 15.24 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 47e7da09-b05e-438b-96f0-98b6b1864f3e)
  )
  (label "VDD1" (at 47.625 24.13 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 5c6be813-7254-429b-a568-29080b50a039)
  )
  (label "VDD5" (at 47.625 43.18 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 67d02e16-8a13-40cb-ac94-aa64b355b996)
  )
  (label "VDD2" (at 121.285 58.42 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 7057c89c-4e75-422e-af31-6571f29ca7f5)
  )
  (label "VDD3" (at 74.295 24.13 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 712a0407-9f09-4133-9d70-f755b2a3c0a4)
  )
  (label "ADC1" (at 146.05 17.78 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 94a1540b-5866-4ca3-a5e6-1b2d2c79acd7)
  )
  (label "SCL" (at 93.345 160.02 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid a045a3c3-ba34-45d3-9cbc-f59463729e31)
  )
  (label "VDD2" (at 60.96 24.13 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid a209aae1-d955-4b1f-8469-72e89ef3dc83)
  )
  (label "SDA" (at 191.77 17.78 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid ad2d3d34-b541-4a21-8dc3-72cb1ba47090)
  )
  (label "VDD3" (at 121.285 60.96 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid b634c94a-c694-490c-9e4f-eb57d0172b01)
  )
  (label "VDD5" (at 121.285 66.04 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid ba4d3609-998f-4a8a-8f03-ef8559c53a92)
  )
  (label "VDD7" (at 121.285 71.12 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid c2df042b-e216-4900-954d-f55e637c3e88)
  )
  (label "VLXSMPS" (at 140.97 104.775 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid c437209d-92a2-432e-8c77-a97e7f119bb2)
  )
  (label "ADC2" (at 227.33 17.78 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid c91343e6-3363-402e-9deb-de6e32e153e1)
  )
  (label "VLXSMPS" (at 97.155 41.91 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid ca6a1e89-f416-4e85-b04d-08d03677252c)
  )
  (label "VDD1" (at 121.285 55.88 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid ceb3a4e9-1c2c-47d9-a08a-a324e079410d)
  )
  (label "ADC2" (at 124.46 147.32 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid d361a781-7431-4540-91ac-78ef4158ebc5)
  )
  (label "VDD6" (at 60.96 43.18 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid df1fbdf7-6fa3-4b1d-9202-4dabc60d8fa5)
  )
  (label "ADC1" (at 117.475 147.32 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid e935cc36-ac83-4c0b-9da8-f84016dbf75f)
  )
  (label "VDD4" (at 34.29 43.18 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid f0baf0d9-2dd2-4114-a7ff-c3da7989fe1d)
  )
  (label "VDD6" (at 121.285 68.58 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid fb84a8ab-a99a-4f26-949e-223728a6d9df)
  )

  (symbol (lib_id "power:GND") (at 54.61 54.61 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 072a0eaa-9683-4d50-bd3e-4eb59aa23e0e)
    (property "Reference" "#PWR024" (at 54.61 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 54.61 59.69 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 54.61 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 54.61 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6019623f-790d-4a02-85cb-d95640103ea6))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR024") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Regulator_Linear:LM1117DT-3.3") (at 79.375 92.075 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 0b0ef36e-67b8-468d-8bba-c1aeed7f512f)
    (property "Reference" "U7" (at 79.375 85.725 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "LM1117DT-3.3" (at 79.375 88.265 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" (at 79.375 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf" (at 79.375 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 069045cb-71f6-4d89-a3db-55aeef5bb976))
    (pin "2" (uuid bf8e9fc9-0e37-481b-a7b1-339a2bf67a52))
    (pin "3" (uuid 0dab97a8-1d27-4227-8d62-6ca89000f5d0))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "U7") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:PWR_FLAG") (at 156.845 104.775 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 0c75952c-8474-486e-a087-afb3fff74193)
    (property "Reference" "#FLG03" (at 156.845 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "PWR_FLAG" (at 156.845 109.093 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 156.845 104.775 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 156.845 104.775 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid aaa842b8-20ac-46d0-8b67-49c8d4c0f2f9))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#FLG03") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 98.425 163.83 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 143c8351-1ced-4b6e-87b1-c2796e79e28a)
    (property "Reference" "R3" (at 100.33 162.56 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "10K" (at 100.33 165.1 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 96.647 163.83 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 98.425 163.83 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 16c0abd7-17db-4ae2-a597-029504d97a31))
    (pin "2" (uuid e398dea3-8cdf-4b1a-b421-78de327b0938))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "R3") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 269.875 58.42 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 16c31156-5a2c-4a3f-b2be-249a0019ef3a)
    (property "Reference" "#PWR014" (at 269.875 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 269.875 63.5 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 269.875 58.42 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 269.875 58.42 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 64836eba-7ae3-41f8-9683-f8d812894302))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR014") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3V") (at 89.535 38.1 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 1ab7572b-dee2-4b8c-a982-b34d58dc9169)
    (property "Reference" "#PWR016" (at 89.535 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (at 89.535 33.02 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 89.535 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 89.535 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 177ed6dc-6cc3-49f3-bcb7-830d4e5d78da))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR016") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 34.29 48.26 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 1c1eef8d-9b1e-43bb-b5af-4a9fcbceef8d)
    (property "Reference" "C17" (at 38.1 46.99 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100nF" (at 38.1 49.53 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 35.2552 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 34.29 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cb1f4af3-3b1c-4084-8a74-e22a18136d16))
    (pin "2" (uuid 1faa8983-fb86-48fb-ae8d-6026fbe32963))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C17") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+5V") (at 67.945 69.215 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 1fc9bfd5-9406-4c4b-a597-7d086ab3ab06)
    (property "Reference" "#PWR029" (at 67.945 73.025 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (at 67.945 64.135 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 67.945 69.215 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 67.945 69.215 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 04866051-3d66-4527-a415-f15b9ed444ad))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR029") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 140.97 113.03 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 2420bfe6-8396-4bee-8274-5c8781dc5578)
    (property "Reference" "#PWR019" (at 140.97 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 140.97 117.475 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 140.97 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 140.97 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f4cd6a4e-15b7-4261-9039-baabf1a7a23d))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR019") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 98.425 150.495 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 2a1c94f2-cf8a-4906-ba58-deeb4103d535)
    (property "Reference" "R2" (at 100.33 149.225 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "10K" (at 100.33 151.765 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 96.647 150.495 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 98.425 150.495 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e0e32824-bab1-4ac4-ab42-a411b8370e15))
    (pin "2" (uuid 4c9c82dd-f7af-4d5c-a062-8dc8a4a3bdb9))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "R2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 74.295 29.21 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 2c7ced1a-495f-4916-aae0-40d04f12b42b)
    (property "Reference" "C16" (at 78.105 27.94 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100nF" (at 78.105 30.48 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 75.2602 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 74.295 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 140b490e-f0ed-4151-a80f-da883206de27))
    (pin "2" (uuid fe387230-6db7-4da7-a384-3ab148dc5044))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C16") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 95.885 34.29 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 2d90f475-02eb-4623-8d2a-b1a10353ed9f)
    (property "Reference" "C6" (at 99.06 33.02 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "10uF" (at 99.06 35.56 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 96.8502 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 95.885 34.29 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 30459420-9721-41b1-9552-9b64b455f046))
    (pin "2" (uuid c3de61f3-5e67-4165-a9ee-fc568e9e1f37))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C6") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+5V") (at 36.83 68.58 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 300ac6c5-5507-4939-bfdf-a5e9ae7eb6eb)
    (property "Reference" "#PWR030" (at 36.83 72.39 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (at 36.83 63.5 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 36.83 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 36.83 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9d339c12-f3c0-497e-8ace-0f3129904c68))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR030") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 74.295 48.26 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 31116dde-3120-47bc-a993-b88da346565b)
    (property "Reference" "C20" (at 78.105 46.99 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100nF" (at 78.105 49.53 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 75.2602 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 74.295 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid dfe978a9-a691-492c-af55-fa333a1f13df))
    (pin "2" (uuid d578b45f-40e6-4843-a6ef-a2821fe93774))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C20") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 53.975 34.925 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 32b34497-6d6e-4b8d-97e8-af18e619a120)
    (property "Reference" "#PWR037" (at 53.975 41.275 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 53.975 40.005 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 53.975 34.925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 53.975 34.925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 83606023-41bb-4ccd-9118-c7cf9abe31fb))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR037") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3VADC") (at 123.19 48.26 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 36668bd6-a60b-4792-8974-9284b6391f83)
    (property "Reference" "#PWR013" (at 124.46 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3VADC" (at 119.38 48.26 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 123.19 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 123.19 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid fd889d1e-b4df-4d00-b3d9-a5697068aba5))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR013") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 109.855 34.29 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 3d438386-ed6e-43b4-82c2-58ab4a2ba7c0)
    (property "Reference" "C5" (at 113.665 33.02 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "4.7uF" (at 113.665 35.56 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 110.8202 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 109.855 34.29 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 86500fde-f7e8-4f0a-96f6-06ef2f2497eb))
    (pin "2" (uuid a80d20f4-eeed-49f7-8d5e-dbab7736bf90))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C5") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 119.38 77.47 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 492ac7cf-a7e2-46aa-82b1-f013b23c7de4)
    (property "Reference" "C12" (at 122.555 76.2 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "1uF" (at 122.555 78.74 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 120.3452 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 119.38 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8e37459f-4cb5-4936-86ee-4a2151917c65))
    (pin "2" (uuid efde9087-2b5f-4883-850a-5ae9c73e7c51))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C12") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 99.695 50.165 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 49527ca6-3400-4b4b-b855-4a2c0c2d276d)
    (property "Reference" "#PWR022" (at 99.695 56.515 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 99.695 55.245 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 99.695 50.165 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 99.695 50.165 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8d49b3f0-d5e1-493d-9333-9fff47e1721c))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR022") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 227.33 102.235 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 58436d8a-8249-4d7c-a06a-9ddb2c4442a2)
    (property "Reference" "C8" (at 230.505 100.965 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "2.2uF" (at 230.505 103.505 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 228.2952 106.045 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 227.33 102.235 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 539055fd-2411-4961-8d74-897844710954))
    (pin "2" (uuid 2a1d2e6c-640c-4bff-9192-32d199e5326a))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C8") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 60.96 48.26 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 63061c6b-459e-4032-9f2c-ecdf7c84252b)
    (property "Reference" "C19" (at 64.77 46.99 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100nF" (at 64.77 49.53 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 61.9252 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 60.96 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 79c3cc97-f3fc-436d-9ff9-369b3608cdb6))
    (pin "2" (uuid 78e027f3-c306-4984-8c5d-759a16719d0c))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C19") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 109.855 30.48 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 64a26a47-6e3c-4d16-b2c4-58a24be2207a)
    (property "Reference" "#PWR018" (at 109.855 24.13 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 109.855 26.035 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 109.855 30.48 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 109.855 30.48 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 73808f0f-3f3c-40d3-bfca-c4052e753162))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR018") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 47.625 48.26 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 6d44db59-9292-4953-8f89-983a259bc5ad)
    (property "Reference" "C18" (at 51.435 46.99 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100nF" (at 51.435 49.53 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 48.5902 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 47.625 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 87e09440-643e-45d1-925f-7d710960cf24))
    (pin "2" (uuid af40bfa8-9f20-44dc-aa47-895aaa7b9278))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C18") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 95.885 30.48 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 74ec2b68-4be2-4805-87f9-31fe2e75fb94)
    (property "Reference" "#PWR017" (at 95.885 24.13 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 95.885 25.4 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 95.885 30.48 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 95.885 30.48 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b94eaf77-e7ec-43e2-ac7a-0b4c283c6714))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR017") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 106.045 77.47 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 854bf715-da4c-431f-ba0e-8df7a72a3a59)
    (property "Reference" "C10" (at 109.855 76.2 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100nF" (at 109.855 78.74 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 107.0102 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 106.045 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2a426fc6-a435-4882-8bc7-115af70f9d61))
    (pin "2" (uuid a31e8cc8-ae40-4dd1-bf66-61f51b0a5916))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C10") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 214.63 102.235 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 8687b844-4117-4ac4-a457-f0b6d54beb04)
    (property "Reference" "C7" (at 217.805 100.965 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "2.2uF" (at 217.805 103.505 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 215.5952 106.045 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 214.63 102.235 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4966228c-b1b1-478f-ba25-5d7ec735a003))
    (pin "2" (uuid 13ff735c-bbac-4c2c-baa2-3be6dbd67439))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C7") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3V") (at 22.225 44.45 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 874dcb62-43ce-45a9-afed-f755d53d34fa)
    (property "Reference" "#PWR026" (at 22.225 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (at 22.225 39.37 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 22.225 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 22.225 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 91713b25-3e0f-4ea7-9148-6b5b18eaaaf6))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR026") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 34.29 29.21 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 89212a48-d50c-4e98-ac7f-029b34d5c3d4)
    (property "Reference" "C13" (at 38.1 27.94 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100nF" (at 38.1 30.48 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 35.2552 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 34.29 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d2d08feb-9a4a-4188-825c-0408ab4cd98c))
    (pin "2" (uuid 56b3e209-bd0c-4a5f-a44c-7659b893fb41))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C13") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3V") (at 98.425 146.685 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 89632135-569a-4175-b8db-4478ebf7cb52)
    (property "Reference" "#PWR031" (at 98.425 150.495 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (at 98.425 142.24 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 98.425 146.685 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 98.425 146.685 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c47f79d6-1d72-4056-acb7-5445eab691f2))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR031") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+5V") (at 61.595 69.215 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 8ca2f5d9-bc33-4656-93f5-67dc6c151071)
    (property "Reference" "#PWR028" (at 61.595 73.025 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (at 61.595 64.135 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 61.595 69.215 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 61.595 69.215 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4425dfdd-222a-4ab6-9263-35b1b7a9aaf1))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR028") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:PWR_FLAG") (at 131.445 104.775 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 9361f3e6-d269-4526-85d8-d1eb050a5379)
    (property "Reference" "#FLG04" (at 131.445 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "PWR_FLAG" (at 131.445 109.093 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 131.445 104.775 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 131.445 104.775 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 95a9466e-fe4d-4aa7-b195-dd91c03a449f))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#FLG04") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 221.615 107.95 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 94a89421-3a51-4ceb-ac60-6ba402d5c967)
    (property "Reference" "#PWR021" (at 221.615 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 221.615 112.395 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 221.615 107.95 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 221.615 107.95 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9c8c6296-1cbf-4ea1-a9d0-88f1de364d20))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR021") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 79.375 99.695 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 9a0bb7a8-d7d8-4578-9586-12f7c556e9be)
    (property "Reference" "#PWR034" (at 79.375 106.045 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 79.375 104.775 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 79.375 99.695 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 79.375 99.695 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 98e8b066-0817-4208-8c2b-ea1c869c882d))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR034") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 61.595 71.755 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 9d2d9d00-f29b-45cc-80d7-71af04c36ac3)
    (property "Reference" "#PWR027" (at 61.595 78.105 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 61.595 76.835 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 61.595 71.755 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 61.595 71.755 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cbb2c5b8-1d95-4efd-86cc-a7e59a276068))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR027") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:PWR_FLAG") (at 26.035 71.12 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid a02a1151-161e-4f5c-a255-33009aefa4a0)
    (property "Reference" "#FLG02" (at 26.035 73.025 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "PWR_FLAG" (at 26.035 75.438 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 26.035 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 26.035 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e189082a-269f-4461-8082-871e196b8781))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#FLG02") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 60.96 29.21 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid a4756311-1a83-4079-bbe3-34071d40ff58)
    (property "Reference" "C15" (at 64.77 27.94 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100nF" (at 64.77 30.48 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 61.9252 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 60.96 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a3120828-2baf-4dc1-b764-420a74203506))
    (pin "2" (uuid 1ae813cb-1651-497d-b069-806bfb901789))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C15") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "MCU_ST_STM32H7:STM32H725VGTx") (at 194.31 58.42 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid a70d0ae4-acb8-4877-b1e2-f42fd389d586)
    (property "Reference" "U4" (at 269.875 47.8439 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "STM32H725VGTx" (at 269.875 50.3839 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Package_QFP:LQFP-100_14x14mm_P0.5mm" (at 260.35 88.9 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
    (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32h725vg.pdf" (at 194.31 58.42 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9b9c500d-ffc6-49a6-bb4a-2692e1581cff))
    (pin "10" (uuid a7b0cd47-7f8c-4186-a604-d80793475dd5))
    (pin "100" (uuid a979b6d9-605a-4b25-886c-5e6604ef9fcc))
    (pin "11" (uuid 2ffd8eec-c840-482e-a060-51460f7da01b))
    (pin "12" (uuid 0390efe6-9d8e-4838-941d-de4efa577b80))
    (pin "13" (uuid dd57955f-2ce0-41dd-a953-9e7729e21414))
    (pin "14" (uuid 79149481-9881-4cee-8666-b39e1c09d25c))
    (pin "15" (uuid 47400629-a1f7-4ae9-bc16-5964fad86161))
    (pin "16" (uuid 20d049fd-61aa-4a76-81a9-2391a530586e))
    (pin "17" (uuid 34bea2b9-128c-4b7a-8439-a577e746a0f6))
    (pin "18" (uuid cff01980-76a4-45ac-8e3c-fdd7ffbc0727))
    (pin "19" (uuid cce9f853-6d14-4c23-abb0-5b276de3f730))
    (pin "2" (uuid ed726949-c4cf-4792-8511-44bcacd5e1e8))
    (pin "20" (uuid c09e4251-0580-4d3f-8870-2f62dad5a405))
    (pin "21" (uuid 7ef993e7-558b-4829-a6d0-53d740f49d13))
    (pin "22" (uuid 9338474c-ac7f-4f7e-8f4d-bdb015807189))
    (pin "23" (uuid 8a046b65-6446-4823-bcd4-29357bf09001))
    (pin "24" (uuid 457319bd-cb98-4146-a653-37ea078d0d8f))
    (pin "25" (uuid 3a0a1621-7a1e-4798-ae17-273e0777d484))
    (pin "26" (uuid 3b5c5782-10aa-48a1-a67b-8271ec597d3d))
    (pin "27" (uuid fc466390-b887-46e5-bc7d-2d5b71081603))
    (pin "28" (uuid 6a00c5cc-16b1-44bb-96d3-ed55bd8141bf))
    (pin "29" (uuid fb867e04-0518-457d-8e06-eab57d85c2e0))
    (pin "3" (uuid 715dc443-2bbb-4472-9f83-928248ec1912))
    (pin "30" (uuid f205247c-96eb-4676-87a2-51af4caf71f7))
    (pin "31" (uuid 102de6e3-fe7e-48c0-820b-2157cbd6d66e))
    (pin "32" (uuid 7ef8bd07-1957-48bf-af1b-40fc366f642a))
    (pin "33" (uuid b2b2b491-25bc-4ae6-9ce7-2a0af8818780))
    (pin "34" (uuid 686c7651-e325-4b37-9a04-1d28cec82b26))
    (pin "35" (uuid 3fb261c7-ed9f-464d-816c-1e530c963b0f))
    (pin "36" (uuid a4217cf3-3959-4d3c-b0ab-6a7a1ae6aa61))
    (pin "37" (uuid 3e4e38ff-c2b1-44d6-8cd0-548081c21173))
    (pin "38" (uuid 87da1cac-c79b-4f1f-86d7-8fb7b12025fb))
    (pin "39" (uuid 5171da83-3172-43e5-b976-159df5700fe4))
    (pin "4" (uuid 8aacad39-0080-4ad9-93d4-104e16ec9518))
    (pin "40" (uuid 8807b1df-386c-4598-a96f-7a2a7e10908b))
    (pin "41" (uuid 5a6e5ab2-560e-4650-bab2-aa8a4b531784))
    (pin "42" (uuid 36231aff-c634-4c7a-a238-8c229919c900))
    (pin "43" (uuid 62068944-1fde-4ef6-805d-e8b6dbfd4311))
    (pin "44" (uuid 49c63b2a-8da0-42d1-9003-d6a3648ea85e))
    (pin "45" (uuid b2de691c-f554-4b45-81e9-c0d68475f559))
    (pin "46" (uuid be380df7-558c-4a65-8107-de7aaf4d5c75))
    (pin "47" (uuid becabbd4-bcdf-43ed-8637-27c1d1811c81))
    (pin "48" (uuid b4413fda-a8f7-4fd9-8c4f-54e38af3f3cb))
    (pin "49" (uuid 02cc5580-7470-494b-a3f7-32b4539ce4d5))
    (pin "5" (uuid 25aa414b-189f-4f3e-8675-84cd0081c46a))
    (pin "50" (uuid ca340844-aeb5-486f-86b9-ba8eed4ef316))
    (pin "51" (uuid 8995e682-2112-498b-a9b8-da5e8cc2696f))
    (pin "52" (uuid b1c8562d-21ac-423a-b8c2-04fceae0efa5))
    (pin "53" (uuid 3ef20c1b-e66c-483f-8fd3-3a48dd1c93af))
    (pin "54" (uuid b6fb899a-21cc-417e-826c-061201f184c2))
    (pin "55" (uuid def6d8e9-c93c-425f-be39-a7833ec42ec7))
    (pin "56" (uuid c61f2046-4e59-4143-a615-1020d81d1259))
    (pin "57" (uuid b1c9b066-1b01-46eb-b815-0adb0ccb8e87))
    (pin "58" (uuid 441b3c83-6562-476d-ade7-70ed1dbc7aa5))
    (pin "59" (uuid 635f1074-d1df-44b0-96b9-fb1ef0f00c1c))
    (pin "6" (uuid d447e997-836b-41cb-bb0e-6beb613fc258))
    (pin "60" (uuid 652d3793-4663-4f95-a232-6e5c4618eaec))
    (pin "61" (uuid 9ddfc3a2-f0d4-466a-b317-c77a1a0b1848))
    (pin "62" (uuid e5bb1816-bb42-49c5-860e-709b816b612e))
    (pin "63" (uuid 81bb0517-7df1-4201-a205-397ede109380))
    (pin "64" (uuid 2fcba7e7-b5b5-40f5-b4b6-f9c5afa83a6f))
    (pin "65" (uuid f93ac639-46e1-4228-b710-1c5a02d24c98))
    (pin "66" (uuid 36bcba44-cc3d-46ff-8af9-b9c1c4e8a866))
    (pin "67" (uuid 541befb5-d1a2-4ce7-a027-f69d87207221))
    (pin "68" (uuid f3a4a2dc-83da-492a-8452-283a153db072))
    (pin "69" (uuid 494230df-a3b5-4db4-a659-dd9b6f45cffe))
    (pin "7" (uuid 9d2da944-f2d9-498b-90f1-a2ee33913032))
    (pin "70" (uuid 3d96b538-4a85-4ce8-8df0-341513bc33ab))
    (pin "71" (uuid d4a3fa5d-5ec9-44f1-8855-10ddb15e1f62))
    (pin "72" (uuid 3f36000d-7e26-4403-8b71-8d59147a1d8f))
    (pin "73" (uuid 13cf5ff8-05a0-4252-9e79-ca79b87ed81b))
    (pin "74" (uuid 2f4de6d2-b74f-46d8-a4a3-170f29c5bfee))
    (pin "75" (uuid e3e5ee42-d514-433a-9b4f-f7dd0d55de91))
    (pin "76" (uuid 08392276-15f3-4901-a1eb-f9b5c40e6e41))
    (pin "77" (uuid 19eb4b68-3ba4-48f8-90f8-c998eefb4e5f))
    (pin "78" (uuid 3416905d-215d-4dfc-97d7-ddc2f391885c))
    (pin "79" (uuid 853b4d44-d68d-4708-b2e9-2ed493aed6b0))
    (pin "8" (uuid f1259132-3a4e-45a5-96c1-5000f4487173))
    (pin "80" (uuid 4c0fe9fc-1e2c-4b19-8edc-b32f96700c13))
    (pin "81" (uuid e03f7b37-2fbc-40e2-b4a9-6f691626e044))
    (pin "82" (uuid 1e0cb2ec-818e-4555-b0a0-418a5faad21c))
    (pin "83" (uuid d3895239-fabb-49c6-851d-3261e49e827f))
    (pin "84" (uuid b5870f7e-daac-4d3b-8c09-e414d40be526))
    (pin "85" (uuid 48ade32a-53ad-438a-ac80-ba4e197b92a2))
    (pin "86" (uuid 6633ae6a-8dcf-44c9-ac60-45d2bfc1e2fb))
    (pin "87" (uuid 56f1f5de-37d7-485a-94d1-cbae95375554))
    (pin "88" (uuid e78fc3c1-5e91-4bad-84a0-e542b6cc210d))
    (pin "89" (uuid 6fc6d6fd-41c4-4df2-88dc-4930099d741b))
    (pin "9" (uuid 7e684651-d13a-4cb1-af99-fcd6e067ad59))
    (pin "90" (uuid 90524dcd-f9de-4808-96f0-0bc5155f0f1d))
    (pin "91" (uuid 747647d6-48ef-45cc-9c2e-7d3fa6c86f55))
    (pin "92" (uuid e5a56b7b-7237-49f4-b99b-7304c01b4f0f))
    (pin "93" (uuid 48e26dce-b407-4357-95c1-313477d6cfb2))
    (pin "94" (uuid 45bbcf11-574b-40d3-bc26-8b3960be35fc))
    (pin "95" (uuid 17814fb0-8ef2-4212-8406-a64184204082))
    (pin "96" (uuid 7e34e0a9-71f4-487f-bc80-25af0027169b))
    (pin "97" (uuid f85cbe98-f7af-4cee-a703-eacdefcb5427))
    (pin "98" (uuid ff94292f-7cbf-44a5-956c-541cebc623ae))
    (pin "99" (uuid a35b82df-4ec7-4241-8458-aacb94c8144c))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "U4") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:PWR_FLAG") (at 36.83 71.12 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid b255d3ac-f8b7-494e-afe9-a5a9f651f972)
    (property "Reference" "#FLG01" (at 36.83 73.025 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "PWR_FLAG" (at 36.83 75.438 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 36.83 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 36.83 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1017d079-4f55-4e63-87d8-d1b67b9607a6))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#FLG01") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 140.97 109.22 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid b532628e-2014-4651-a6b9-ae5441a4a851)
    (property "Reference" "C4" (at 144.78 107.95 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "220pF" (at 144.78 110.49 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 141.9352 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 140.97 109.22 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid da4008fe-f276-4695-9ecc-f7eeb8c5fc83))
    (pin "2" (uuid 6a5e2151-64b5-4c12-8f50-db611ac89d72))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C4") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Regulator_Linear:LM1117DT-3.3") (at 79.375 69.215 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid bc86cde7-f37a-4a66-bde3-5ed76ec18da3)
    (property "Reference" "U6" (at 79.375 62.865 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "LM1117DT-3.3" (at 79.375 65.405 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" (at 79.375 69.215 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf" (at 79.375 69.215 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 36da94fc-601f-478e-88b5-8ab32cf07637))
    (pin "2" (uuid 5d620694-e905-49fd-97e4-0cb568616877))
    (pin "3" (uuid 0bbc2bf5-409f-4e0d-92da-0f0208e7a16d))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "U6") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 22.225 29.21 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid be996078-31e3-48e3-a882-443081367453)
    (property "Reference" "C11" (at 26.035 27.94 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "4.7uF" (at 26.035 30.48 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 23.1902 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 22.225 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 34e306ab-7ba2-4fec-a7d9-0ce2414b741c))
    (pin "2" (uuid aa3cee3d-5482-431b-a7ac-7934446e6eb8))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C11") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:L") (at 140.97 100.33 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid cc86bf46-eca3-40a9-8fa7-6c9b7acacd5f)
    (property "Reference" "L1" (at 141.605 99.06 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "2.2uH" (at 141.605 101.6 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 140.97 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 140.97 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a19dc5e5-3d23-4a50-9c83-b5760205ca39))
    (pin "2" (uuid dd556233-c2a1-426e-a63a-9fde190dd7c1))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "L1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3V") (at 98.425 167.64 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid cecc05ed-6df7-4be2-a7d6-057306eebf2e)
    (property "Reference" "#PWR032" (at 98.425 163.83 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (at 98.425 172.085 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 98.425 167.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 98.425 167.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6ef45594-0ed5-4da3-a832-dfa932ab9d76))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR032") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 113.03 81.28 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid d1ae23b3-9955-474c-8790-32da6580558f)
    (property "Reference" "#PWR023" (at 113.03 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 113.03 86.36 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 113.03 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 113.03 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0090c6bc-6500-4626-b06d-d9b9859e8fd0))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR023") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 47.625 29.21 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid d59d62eb-b7f1-4c3f-aebd-1e6b9e62da77)
    (property "Reference" "C14" (at 51.435 27.94 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100nF" (at 51.435 30.48 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 48.5902 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 47.625 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4a9b4327-245c-420c-bb19-7c89f1259e90))
    (pin "2" (uuid 0b0e25c0-183b-4b33-b256-e52489a00df8))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C14") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3V") (at 22.225 25.4 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid d9683aad-f9f7-4b67-ae76-a70ea912e6d4)
    (property "Reference" "#PWR025" (at 22.225 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (at 22.225 20.32 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 22.225 25.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 22.225 25.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ac5ce72b-6afd-4c8a-8553-d955f36cc8bc))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR025") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+5V") (at 67.31 92.075 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid dbe70227-78c1-44b6-a261-4a5130eed93a)
    (property "Reference" "#PWR033" (at 67.31 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (at 67.31 86.995 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 67.31 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 67.31 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e14a3e1a-2fd5-4340-b42a-aeca462cb331))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR033") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 99.695 46.355 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid e2a0ed92-a868-45e2-90c1-127c33eb4b07)
    (property "Reference" "C9" (at 102.87 45.085 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "4.7uF" (at 102.87 47.625 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 100.6602 50.165 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 99.695 46.355 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f95e780e-8cb2-4a0a-8d26-1361e5dd48d7))
    (pin "2" (uuid 53afdd18-655b-4e2c-a117-d6614c2e6dd7))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C9") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3V") (at 106.045 73.66 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid e85270d1-8f51-4d27-8e43-d2071f3992e4)
    (property "Reference" "#PWR015" (at 106.045 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (at 106.045 68.58 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 106.045 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 106.045 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 212a42ab-d546-4c84-9959-fc9be5857372))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR015") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 26.035 68.58 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid e8953d87-ab66-400b-871e-42909a49ccad)
    (property "Reference" "#PWR036" (at 26.035 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 26.035 64.135 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 26.035 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 26.035 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3dfa91d6-556d-47ae-845d-f16c163f8692))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR036") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3VADC") (at 92.075 92.075 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid e9ac6d8e-da04-49de-b2fe-e597de1365e7)
    (property "Reference" "#PWR035" (at 95.885 93.345 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3VADC" (at 92.075 87.63 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 92.075 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 92.075 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6c2b1aa3-f4cd-4e1a-b331-2c18236d05b0))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR035") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Generic:Conn_01x02") (at 53.34 71.755 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid ed8d7233-fbd3-4c66-8fbe-63e50c8aae24)
    (property "Reference" "J2" (at 53.34 63.5 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "Conn_01x02" (at 53.34 66.04 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 53.34 71.755 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 53.34 71.755 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 69c25dcd-1281-4ea6-85ab-9579f22d5666))
    (pin "2" (uuid ed25455f-26aa-4c58-97fb-8065d2de5238))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "J2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3V") (at 90.805 69.215 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid f16f379e-1af2-4413-8a23-21c68b2105e6)
    (property "Reference" "#PWR020" (at 90.805 73.025 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (at 90.805 64.135 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 90.805 69.215 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 90.805 69.215 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 26118c45-4643-4865-8cdf-8e29baa7eaa2))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR020") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 79.375 76.835 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid ff5647e1-5181-485a-a4ea-43847cc3f55f)
    (property "Reference" "#PWR012" (at 79.375 83.185 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 79.375 81.915 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 79.375 76.835 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 79.375 76.835 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4e842121-1ec4-4d08-9439-a79d0c0dd5f3))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR012") (unit 1)
        )
      )
    )
  )

  (sheet (at 107.315 149.86) (size 27.305 15.24) (fields_autoplaced)
    (stroke (width 0.1524) (type solid))
    (fill (color 0 0 0 0.0000))
    (uuid fe78c58d-726d-42bd-820b-951ec0977bc5)
    (property "Sheetname" "frontend" (at 107.315 149.1484 0)
      (effects (font (size 1.27 1.27)) (justify left bottom))
    )
    (property "Sheetfile" "frontend.kicad_sch" (at 107.315 165.6846 0)
      (effects (font (size 1.27 1.27)) (justify left top))
    )
    (pin "I" output (at 117.475 149.86 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 8dbb82a2-e046-40e1-82e7-bc5ac9ae6dc1)
    )
    (pin "Q" output (at 124.46 149.86 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid e452342b-97b6-4644-95d3-b66096391714)
    )
    (pin "SDA" bidirectional (at 107.315 154.305 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 31bfaff9-8d6c-4aeb-b8ea-adb7c0f478ad)
    )
    (pin "SCL" bidirectional (at 107.315 160.02 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid b53104c3-d9cf-4342-a9be-60ca7eb2aeb9)
    )
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14" (page "4"))
      )
    )
  )

  (sheet_instances
    (path "/" (page "1"))
  )
)