schematic-symbols 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/.github/CODEOWNERS +1 -0
  2. package/.github/workflows/bun-pver-release.yml +25 -0
  3. package/README.md +88 -0
  4. package/assets/symbols-svg-json/boxresistor.json +90 -0
  5. package/assets/symbols-svg-json/capacitor.json +76 -0
  6. package/assets/symbols-svg-json/capacitor_polarized.json +83 -0
  7. package/assets/symbols-svg-json/diode.json +91 -0
  8. package/assets/symbols-svg-json/diode_bipolar_zener.json +166 -0
  9. package/assets/symbols-svg-json/diode_schottky.json +76 -0
  10. package/assets/symbols-svg-json/diode_zener.json +31 -0
  11. package/assets/symbols-svg-json/fuse.json +84 -0
  12. package/assets/symbols-svg-json/led.json +205 -0
  13. package/assets/symbols-svg-json/mosfet_depletion_normally_on.json +267 -0
  14. package/assets/symbols-svg-json/potentiometer.json +137 -0
  15. package/assets/symbols-svg-json/potentiometer2.json +160 -0
  16. package/assets/symbols-svg-json/testshape.json +35 -0
  17. package/assets/symbols-svg-json/varistor.json +129 -0
  18. package/assets/symbols.svg +965 -0
  19. package/biome.json +44 -0
  20. package/bun.lockb +0 -0
  21. package/dev-server.ts +22 -0
  22. package/drawing/arrow.ts +41 -0
  23. package/drawing/box.ts +5 -0
  24. package/drawing/circle.ts +7 -0
  25. package/drawing/defineSymbol.ts +5 -0
  26. package/drawing/getBoundsOfSvgJson.ts +44 -0
  27. package/drawing/getSvg.ts +133 -0
  28. package/drawing/index.ts +11 -0
  29. package/drawing/mapColor.ts +10 -0
  30. package/drawing/ninePointAnchorToSvgAnchor.ts +11 -0
  31. package/drawing/path.ts +5 -0
  32. package/drawing/pathToSvgD.ts +9 -0
  33. package/drawing/resizeSymbol.ts +66 -0
  34. package/drawing/rotateSymbol.ts +94 -0
  35. package/drawing/svgPathToPoints.ts +50 -0
  36. package/drawing/text.ts +8 -0
  37. package/drawing/types.ts +90 -0
  38. package/index.ts +1 -0
  39. package/package.json +25 -0
  40. package/scripts/build.ts +18 -0
  41. package/scripts/convertToObjectWithOrderedPositionIds.ts +52 -0
  42. package/scripts/generate-symbols-from-asset-svgs.ts +145 -0
  43. package/scripts/lib/applyGroupTransformsToChildren.ts +118 -0
  44. package/scripts/lib/findInnerText.ts +11 -0
  45. package/scripts/lib/generate-web-page.ts +60 -0
  46. package/scripts/lib/getTsFileContentForSvgGroup.ts +33 -0
  47. package/scripts/lib/serializeSvgPathCommands.ts +47 -0
  48. package/symbols/boxresistor_horz.ts +35 -0
  49. package/symbols/boxresistor_vert.ts +4 -0
  50. package/symbols/fuse_horz.ts +24 -0
  51. package/symbols/fuse_vert.ts +4 -0
  52. package/symbols/index.ts +31 -0
  53. package/symbols/led_horz.ts +18 -0
  54. package/symbols/led_vert.ts +4 -0
  55. package/symbols/mosfet_depletion_normally_on_horz.ts +19 -0
  56. package/symbols/mosfet_depletion_normally_on_vert.ts +21 -0
  57. package/symbols/potentiometer2_horz.ts +14 -0
  58. package/symbols/potentiometer2_vert.ts +4 -0
  59. package/symbols/potentiometer_horz.ts +18 -0
  60. package/symbols/potentiometer_vert.ts +6 -0
  61. package/symbols/varistor_horz.ts +24 -0
  62. package/symbols/varistor_vert.ts +4 -0
  63. package/tests/assets/boxresistor-untransformed.json +187 -0
  64. package/tests/assets/testshape-untransformed.json +25 -0
  65. package/tests/normalize-svg.test.ts +29 -0
  66. package/tsconfig.json +28 -0
@@ -0,0 +1,965 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="210mm"
6
+ height="297mm"
7
+ viewBox="0 0 210 297"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.3.2 (091e20e, 2023-11-25)"
11
+ sodipodi:docname="symbols.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="false"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="47.443969"
27
+ inkscape:cx="91.887337"
28
+ inkscape:cy="694.10297"
29
+ inkscape:window-width="1728"
30
+ inkscape:window-height="1051"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="38"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="led"
35
+ showgrid="true">
36
+ <inkscape:grid
37
+ id="grid207"
38
+ units="mm"
39
+ originx="0"
40
+ originy="0"
41
+ spacingx="10"
42
+ spacingy="10"
43
+ empcolor="#0099e5"
44
+ empopacity="0.30196078"
45
+ color="#0099e5"
46
+ opacity="0.14901961"
47
+ empspacing="5"
48
+ dotted="false"
49
+ gridanglex="30"
50
+ gridanglez="30"
51
+ visible="true" />
52
+ </sodipodi:namedview>
53
+ <defs
54
+ id="defs1">
55
+ <marker
56
+ inkscape:collect="always"
57
+ inkscape:isstock="true"
58
+ style="overflow:visible"
59
+ id="TriangleInM-68-33"
60
+ refX="0"
61
+ refY="0"
62
+ orient="auto"
63
+ inkscape:stockid="TriangleInM">
64
+ <path
65
+ transform="scale(-0.4)"
66
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
67
+ d="M 5.77,0 -2.88,5 V -5 Z"
68
+ id="path5871-92-3"
69
+ inkscape:connector-curvature="0" />
70
+ </marker>
71
+ <marker
72
+ inkscape:collect="always"
73
+ inkscape:isstock="true"
74
+ style="overflow:visible"
75
+ id="TriangleInM-1"
76
+ refX="0"
77
+ refY="0"
78
+ orient="auto"
79
+ inkscape:stockid="TriangleInM">
80
+ <path
81
+ transform="scale(-0.4)"
82
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
83
+ d="M 5.77,0 -2.88,5 V -5 Z"
84
+ id="path5871-0"
85
+ inkscape:connector-curvature="0" />
86
+ </marker>
87
+ </defs>
88
+ <g
89
+ inkscape:label="root"
90
+ inkscape:groupmode="layer"
91
+ id="root">
92
+ <g
93
+ id="potentiometer"
94
+ transform="rotate(90,-69.477089,-2.1195639)">
95
+ <path
96
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
97
+ d="m 58.208334,-91.281231 v -2.645833"
98
+ id="path11"
99
+ inkscape:connector-curvature="0" />
100
+ <path
101
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
102
+ d="m 58.208334,-99.218734 v -2.645836"
103
+ id="path12"
104
+ inkscape:connector-curvature="0" />
105
+ <path
106
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
107
+ d="m 56.885416,-96.572913 v -2.64583 h 2.645834 v 5.29167 h -2.645834 v -2.64584"
108
+ id="path13"
109
+ inkscape:connector-curvature="0" />
110
+ <path
111
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;-inkscape-stroke:none"
112
+ d="m 55.714844,-97.224609 v 1.304687 l 1.128906,-0.652344 z"
113
+ id="path15"
114
+ sodipodi:nodetypes="cccc" />
115
+ <text
116
+ xml:space="preserve"
117
+ style="font-size:1.05833px;fill:#000000;stroke-width:0.264583"
118
+ x="97.820702"
119
+ y="55.847672"
120
+ id="text14"
121
+ transform="rotate(-90)"><tspan
122
+ sodipodi:role="line"
123
+ id="tspan14"
124
+ style="font-size:1.05833px;stroke-width:0.264583"
125
+ x="97.820702"
126
+ y="55.847672">{REF}</tspan></text>
127
+ <text
128
+ xml:space="preserve"
129
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;fill:#000000;stroke-width:0.264583"
130
+ x="96.49707"
131
+ y="61.089119"
132
+ id="text14-3"
133
+ transform="rotate(-90)"><tspan
134
+ sodipodi:role="line"
135
+ id="tspan14-1"
136
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;stroke-width:0.264583"
137
+ x="96.49707"
138
+ y="61.089119">{VAL}</tspan></text>
139
+ <circle
140
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
141
+ id="refblock-5"
142
+ cx="91.123001"
143
+ cy="58.216862"
144
+ r="0.28158441"
145
+ transform="rotate(-90)" />
146
+ <circle
147
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
148
+ id="refblock-5-7"
149
+ cx="101.95097"
150
+ cy="58.206898"
151
+ r="0.28158441"
152
+ transform="rotate(-90)" />
153
+ <path
154
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-opacity:1"
155
+ d="m 54.016225,-96.575488 h 2.15206"
156
+ id="path17" />
157
+ </g>
158
+ <g
159
+ id="boxresistor"
160
+ transform="rotate(90,-72.654678,2.0374476)"
161
+ inkscape:label="boxresistor">
162
+ <title
163
+ id="title1">Resistor</title>
164
+ <path
165
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
166
+ d="M 30.427082,-90.614597 V -93.26043"
167
+ id="path1"
168
+ inkscape:connector-curvature="0" />
169
+ <path
170
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
171
+ d="m 30.427082,-98.552096 v -2.645834"
172
+ id="path2"
173
+ inkscape:connector-curvature="0" />
174
+ <path
175
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
176
+ d="m 29.104165,-95.906262 v -2.645833 h 2.645834 v 5.291667 h -2.645834 v -2.645834"
177
+ id="path3"
178
+ inkscape:connector-curvature="0" />
179
+ <text
180
+ xml:space="preserve"
181
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;fill:#000000;stroke-width:0.264583"
182
+ x="95.718857"
183
+ y="28.388716"
184
+ id="text14-0-6"
185
+ transform="rotate(-90)"><tspan
186
+ sodipodi:role="line"
187
+ id="tspan14-0-1"
188
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;stroke-width:0.264583"
189
+ x="95.718857"
190
+ y="28.388716">{REF}</tspan></text>
191
+ <text
192
+ xml:space="preserve"
193
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;fill:#000000;stroke-width:0.264583"
194
+ x="95.728477"
195
+ y="33.388676"
196
+ id="text14-0-4-4"
197
+ transform="rotate(-90)"><tspan
198
+ sodipodi:role="line"
199
+ id="tspan14-0-9-0"
200
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;stroke-width:0.264583"
201
+ x="95.728477"
202
+ y="33.388676">{VAL}</tspan></text>
203
+ <title
204
+ id="title3">Resistor</title>
205
+ <title
206
+ id="title4">Resistor</title>
207
+ </g>
208
+ <g
209
+ id="varistor"
210
+ transform="rotate(90,-70.547403,-0.19324066)">
211
+ <title
212
+ id="title5">Varistor</title>
213
+ <path
214
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
215
+ d="m 44.979166,-90.614594 v -2.645833"
216
+ id="path5"
217
+ inkscape:connector-curvature="0" />
218
+ <path
219
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
220
+ d="m 44.979166,-98.552097 v -2.645833"
221
+ id="path6"
222
+ inkscape:connector-curvature="0" />
223
+ <path
224
+ style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
225
+ d="m 47.360416,-98.552097 -4.7625,5.29167"
226
+ id="path7"
227
+ inkscape:connector-curvature="0"
228
+ sodipodi:nodetypes="cc" />
229
+ <path
230
+ style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
231
+ d="m 47.360416,-99.610427 v 1.05833"
232
+ id="path8"
233
+ inkscape:connector-curvature="0"
234
+ sodipodi:nodetypes="cc" />
235
+ <text
236
+ xml:space="preserve"
237
+ style="font-size:1.05833px;fill:#000000;stroke-width:0.264583"
238
+ x="95.27552"
239
+ y="42.509102"
240
+ id="text14-0"
241
+ transform="rotate(-90)"><tspan
242
+ sodipodi:role="line"
243
+ id="tspan14-0"
244
+ style="font-size:1.05833px;stroke-width:0.264583"
245
+ x="95.27552"
246
+ y="42.509102">{REF}</tspan></text>
247
+ <text
248
+ xml:space="preserve"
249
+ style="font-size:1.05833px;text-align:end;text-anchor:end;fill:#000000;stroke-width:0.264583"
250
+ x="95.945496"
251
+ y="47.542412"
252
+ id="text14-0-4"
253
+ transform="rotate(-90)"><tspan
254
+ sodipodi:role="line"
255
+ id="tspan14-0-9"
256
+ style="font-size:1.05833px;text-align:end;text-anchor:end;stroke-width:0.264583"
257
+ x="95.945496"
258
+ y="47.542412">{VAL}</tspan></text>
259
+ <path
260
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
261
+ d="m 43.656248,-95.906276 v -2.64583 h 2.645834 v 5.29167 h -2.645834 v -2.64584"
262
+ id="path9"
263
+ inkscape:connector-curvature="0" />
264
+ <title
265
+ id="title9">Varistor</title>
266
+ <title
267
+ id="title10">Varistor</title>
268
+ <circle
269
+ style="opacity:1;fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
270
+ id="refblock"
271
+ cx="90.468109"
272
+ cy="44.996063"
273
+ r="0.28158441"
274
+ transform="rotate(-90)" />
275
+ <circle
276
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
277
+ id="refblock-6"
278
+ cx="101.25274"
279
+ cy="44.972359"
280
+ r="0.28158441"
281
+ transform="rotate(-90)" />
282
+ </g>
283
+ <g
284
+ id="testshape"
285
+ style="fill:none;stroke:#000000;stroke-opacity:1"
286
+ transform="translate(0.45366488,0.38885561)">
287
+ <path
288
+ style="opacity:1;fill:none;stroke:#000000;stroke-width:0.264583;stroke-opacity:1"
289
+ d="m 21.331058,95.261238 1.282194,-3.817442 4.953934,0.582816"
290
+ id="path207" />
291
+ </g>
292
+ <g
293
+ id="mosfet_depletion_normally_on"
294
+ transform="translate(22.894245,103.97002)">
295
+ <title
296
+ id="title207">MOSFET_normally_on</title>
297
+ <path
298
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
299
+ d="m 35.718749,2.7e-5 1.322917,2.64583"
300
+ id="path208"
301
+ inkscape:connector-curvature="0" />
302
+ <path
303
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
304
+ d="M 34.395832,2.645857 35.718749,2.7e-5"
305
+ id="path209"
306
+ inkscape:connector-curvature="0" />
307
+ <path
308
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
309
+ d="M 37.041666,2.645857 H 34.395832"
310
+ id="path210"
311
+ inkscape:connector-curvature="0" />
312
+ <path
313
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
314
+ d="m 34.395832,2.7e-5 h 2.645834"
315
+ id="path211"
316
+ inkscape:connector-curvature="0" />
317
+ <path
318
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
319
+ d="m 33.072916,5.291677 h 2.645833"
320
+ id="path212"
321
+ inkscape:connector-curvature="0" />
322
+ <path
323
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
324
+ d="M 35.718749,-2.645813 H 33.072916"
325
+ id="path213"
326
+ inkscape:connector-curvature="0" />
327
+ <path
328
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
329
+ d="m 33.072916,-3.968733 v 3.43957"
330
+ id="path214"
331
+ inkscape:connector-curvature="0"
332
+ sodipodi:nodetypes="cc" />
333
+ <path
334
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
335
+ d="M 33.072916,6.614587 V 1.322917"
336
+ id="path215"
337
+ inkscape:connector-curvature="0"
338
+ sodipodi:nodetypes="cc" />
339
+ <path
340
+ style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
341
+ d="M 35.718749,5.2916833 V -2.64582"
342
+ id="path216"
343
+ inkscape:connector-curvature="0"
344
+ sodipodi:nodetypes="cc" />
345
+ <path
346
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
347
+ d="m 30.427083,-1.322923 v 5.29166"
348
+ id="path217"
349
+ inkscape:connector-curvature="0" />
350
+ <path
351
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
352
+ d="m 29.633333,3.968747 v -5.29166"
353
+ id="path218"
354
+ inkscape:connector-curvature="0" />
355
+ <path
356
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
357
+ d="m 26.458333,3.968737 3.175,2e-5"
358
+ id="path219"
359
+ inkscape:connector-curvature="0"
360
+ sodipodi:nodetypes="cc" />
361
+ <path
362
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
363
+ d="m 30.427083,3.174987 h 2.645834"
364
+ id="path220"
365
+ inkscape:connector-curvature="0" />
366
+ <path
367
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
368
+ d="m 30.427083,-0.529173 h 2.645834"
369
+ id="path221"
370
+ inkscape:connector-curvature="0" />
371
+ <path
372
+ style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#TriangleInM-68-33)"
373
+ d="m 31.220833,1.322917 h 1.852083"
374
+ id="path222"
375
+ inkscape:connector-curvature="0"
376
+ sodipodi:nodetypes="cc" />
377
+ <ellipse
378
+ ry="0.39901915"
379
+ rx="0.40116644"
380
+ cy="-2.6458166"
381
+ cx="33.072914"
382
+ id="ellipse222"
383
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.256;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
384
+ <ellipse
385
+ ry="0.39901915"
386
+ rx="0.40116644"
387
+ cy="5.2916832"
388
+ cx="33.072914"
389
+ id="ellipse223"
390
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.256;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
391
+ <title
392
+ id="title223">MOSFET_normally_on</title>
393
+ <text
394
+ xml:space="preserve"
395
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;fill:#000000;stroke-width:0.264583"
396
+ x="37.577374"
397
+ y="-0.7700001"
398
+ id="text14-0-6-2"><tspan
399
+ sodipodi:role="line"
400
+ id="tspan14-0-1-2"
401
+ style="font-size:1.05833px;text-align:start;text-anchor:start;stroke-width:0.264583"
402
+ x="37.577374"
403
+ y="-0.7700001">{REF}</tspan></text>
404
+ <text
405
+ xml:space="preserve"
406
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;fill:#000000;stroke-width:0.264583"
407
+ x="37.591228"
408
+ y="1.1110005"
409
+ id="text14-0-6-2-1"><tspan
410
+ sodipodi:role="line"
411
+ id="tspan14-0-1-2-0"
412
+ style="font-size:1.05833px;text-align:start;text-anchor:start;stroke-width:0.264583"
413
+ x="37.591228"
414
+ y="1.1110005">{VAL}</tspan></text>
415
+ <circle
416
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
417
+ id="refblock-7"
418
+ cx="33.077534"
419
+ cy="-4.1173019"
420
+ r="0.28158441" />
421
+ <circle
422
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
423
+ id="refblock-71"
424
+ cx="26.441811"
425
+ cy="3.979425"
426
+ r="0.28158441" />
427
+ <circle
428
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
429
+ id="refblock-79"
430
+ cx="33.073952"
431
+ cy="6.7481747"
432
+ r="0.28158441" />
433
+ </g>
434
+ <g
435
+ id="potentiometer2"
436
+ transform="rotate(90,-66.297106,-5.3795566)">
437
+ <title
438
+ id="title17">Potentiometer</title>
439
+ <path
440
+ inkscape:connector-curvature="0"
441
+ id="path18"
442
+ d="m 74.083332,-91.281231 v -2.645833"
443
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
444
+ <path
445
+ inkscape:connector-curvature="0"
446
+ id="path19"
447
+ d="m 74.083332,-99.218734 v -2.645836"
448
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
449
+ <path
450
+ inkscape:connector-curvature="0"
451
+ id="path20"
452
+ d="m 72.760415,-96.572913 v -2.64583 h 2.645834 v 5.29167 h -2.645834 v -2.64584"
453
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
454
+ <path
455
+ style="color:#000000;fill:#000000;fill-rule:evenodd;-inkscape-stroke:none"
456
+ d="m 76.897061,-99.386629 -0.273579,1.023109 -0.74953,-0.74953 z"
457
+ id="path23" />
458
+ <path
459
+ style="color:#000000;fill:#000000;fill-rule:evenodd;-inkscape-stroke:none"
460
+ d="m 76.996094,-99.486328 -1.257813,0.335937 0.921875,0.923829 z"
461
+ id="path24"
462
+ sodipodi:nodetypes="cccc" />
463
+ <path
464
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-opacity:1"
465
+ d="m 71.15348,-93.617724 5.249339,-5.284728"
466
+ id="path26" />
467
+ <title
468
+ id="title21">Potentiometer</title>
469
+ <circle
470
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
471
+ id="refblock-5-7-3"
472
+ cx="101.95055"
473
+ cy="74.094353"
474
+ r="0.28158441"
475
+ transform="rotate(-90)" />
476
+ <circle
477
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
478
+ id="refblock-5-7-3-8"
479
+ cx="91.256721"
480
+ cy="74.088226"
481
+ r="0.28158441"
482
+ transform="rotate(-90)" />
483
+ <text
484
+ xml:space="preserve"
485
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;fill:#000000;stroke-width:0.264583"
486
+ x="23.925009"
487
+ y="137.77809"
488
+ id="text14-3-0"
489
+ transform="rotate(-90,-66.297106,-5.3795562)"><tspan
490
+ sodipodi:role="line"
491
+ id="tspan14-1-4"
492
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;stroke-width:0.264583"
493
+ x="23.925009"
494
+ y="137.77809">{VAL}</tspan></text>
495
+ <text
496
+ xml:space="preserve"
497
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;fill:#000000;stroke-width:0.264583"
498
+ x="25.47739"
499
+ y="132.98296"
500
+ id="text14-3-0-5"
501
+ transform="rotate(-90,-66.297106,-5.3795562)"><tspan
502
+ sodipodi:role="line"
503
+ id="tspan14-1-4-0"
504
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;stroke-width:0.264583"
505
+ x="25.47739"
506
+ y="132.98296">{REF}</tspan></text>
507
+ </g>
508
+ <g
509
+ id="capacitor"
510
+ transform="rotate(90,-54.156737,60.478501)">
511
+ <title
512
+ id="title26">Capacitor</title>
513
+ <path
514
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
515
+ d="m 30.427082,-23.812483 v 4.497916"
516
+ id="path27"
517
+ inkscape:connector-curvature="0"
518
+ sodipodi:nodetypes="cc" />
519
+ <path
520
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
521
+ d="m 30.427082,-17.727067 v 4.497917"
522
+ id="path28"
523
+ inkscape:connector-curvature="0"
524
+ sodipodi:nodetypes="cc" />
525
+ <path
526
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
527
+ d="m 27.781249,-19.314567 h 5.291666"
528
+ id="path29"
529
+ inkscape:connector-curvature="0" />
530
+ <path
531
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
532
+ d="m 27.781249,-17.727067 h 5.291666"
533
+ id="path30"
534
+ inkscape:connector-curvature="0" />
535
+ <title
536
+ id="title30">Capacitor</title>
537
+ </g>
538
+ <g
539
+ id="capacitor_polarized"
540
+ transform="rotate(90,-52.022291,58.404752)">
541
+ <title
542
+ id="title31">Capacitor_polarized</title>
543
+ <text
544
+ xml:space="preserve"
545
+ style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
546
+ x="41.79694"
547
+ y="-19.906775"
548
+ id="text31"><tspan
549
+ sodipodi:role="line"
550
+ id="tspan31"
551
+ x="41.79694"
552
+ y="-19.906775"
553
+ style="font-size:3.175px;stroke-width:0.264583">+</tspan></text>
554
+ <path
555
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
556
+ d="m 44.979166,-23.812485 v 4.497918"
557
+ id="path31"
558
+ inkscape:connector-curvature="0"
559
+ sodipodi:nodetypes="cc" />
560
+ <path
561
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
562
+ d="m 44.979166,-17.727067 v 4.497915"
563
+ id="path32"
564
+ inkscape:connector-curvature="0"
565
+ sodipodi:nodetypes="cc" />
566
+ <path
567
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
568
+ d="m 42.333333,-19.314569 h 5.291666"
569
+ id="path33"
570
+ inkscape:connector-curvature="0" />
571
+ <path
572
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
573
+ d="m 42.333333,-17.727069 h 5.291666"
574
+ id="path34"
575
+ inkscape:connector-curvature="0" />
576
+ <title
577
+ id="title34">Capacitor_polarized</title>
578
+ </g>
579
+ <g
580
+ id="capacitor_adjustable"
581
+ transform="matrix(0,-1,-1,0,-60.522724,211.44394)">
582
+ <title
583
+ id="title35">Capacitor_adjustable</title>
584
+ <g
585
+ transform="translate(-34.395833,-129.78001)"
586
+ id="g35" />
587
+ <g
588
+ id="g39">
589
+ <path
590
+ inkscape:connector-curvature="0"
591
+ id="path35"
592
+ d="m 80.697916,39.031237 v 4.497908"
593
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
594
+ sodipodi:nodetypes="cc"
595
+ transform="translate(-34.395833,-129.78001)" />
596
+ <path
597
+ inkscape:connector-curvature="0"
598
+ id="path36"
599
+ d="M 80.697916,45.116645 V 49.61457"
600
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
601
+ sodipodi:nodetypes="cc"
602
+ transform="translate(-34.395833,-129.78001)" />
603
+ <path
604
+ inkscape:connector-curvature="0"
605
+ id="path37"
606
+ d="m 78.052083,43.529153 h 5.291666"
607
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
608
+ transform="translate(-34.395833,-129.78001)" />
609
+ <path
610
+ inkscape:connector-curvature="0"
611
+ id="path38"
612
+ d="m 78.052083,45.116653 h 5.291666"
613
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
614
+ transform="translate(-34.395833,-129.78001)" />
615
+ <path
616
+ style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#TriangleInM-1)"
617
+ d="m 48.947916,-88.102937 -5.291667,5.291667"
618
+ id="path39"
619
+ inkscape:connector-curvature="0"
620
+ sodipodi:nodetypes="cc" />
621
+ </g>
622
+ <title
623
+ id="title39">Capacitor_adjustable</title>
624
+ </g>
625
+ <g
626
+ id="diode"
627
+ transform="rotate(90,0.7339933,94.975664)">
628
+ <title
629
+ id="title40">Diode</title>
630
+ <path
631
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
632
+ d="m 80.697916,69.45832 1.322917,2.645833"
633
+ id="path40"
634
+ inkscape:connector-curvature="0" />
635
+ <path
636
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
637
+ d="M 79.374999,72.104153 80.697916,69.45832"
638
+ id="path41"
639
+ inkscape:connector-curvature="0" />
640
+ <path
641
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
642
+ d="M 82.020833,72.104153 H 79.374999"
643
+ id="path42"
644
+ inkscape:connector-curvature="0" />
645
+ <path
646
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
647
+ d="m 79.374999,69.45832 h 2.645834"
648
+ id="path43"
649
+ inkscape:connector-curvature="0" />
650
+ <path
651
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
652
+ d="M 80.697916,65.48957 V 76.072903"
653
+ id="path44"
654
+ inkscape:connector-curvature="0" />
655
+ <title
656
+ id="title44">Diode</title>
657
+ </g>
658
+ <g
659
+ id="led"
660
+ transform="rotate(90,-74.457875,74.949375)"
661
+ inkscape:label="led">
662
+ <title
663
+ id="title45">LED</title>
664
+ <path
665
+ inkscape:connector-curvature="0"
666
+ id="path45"
667
+ d="m 35.718744,-25.79168 1.322917,2.645833"
668
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
669
+ <path
670
+ inkscape:connector-curvature="0"
671
+ id="path46"
672
+ d="m 34.395827,-23.145847 1.322917,-2.645833"
673
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
674
+ <path
675
+ inkscape:connector-curvature="0"
676
+ id="path47"
677
+ d="M 37.041661,-23.145847 H 34.395827"
678
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
679
+ <path
680
+ inkscape:connector-curvature="0"
681
+ id="path48"
682
+ d="m 34.395827,-25.79168 h 2.645834"
683
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
684
+ <path
685
+ inkscape:connector-curvature="0"
686
+ id="path49"
687
+ d="m 35.718744,-29.76043 v 10.583333"
688
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
689
+ <path
690
+ style="color:#000000;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.265;stroke-dasharray:none;stroke-opacity:1"
691
+ d="m 32.827252,-22.875666 -0.168792,0.973423 0.927628,-0.343028 z"
692
+ id="path25"
693
+ sodipodi:nodetypes="cccc" />
694
+ <path
695
+ style="fill:none;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round"
696
+ d="m 34.0227,-23.63306 -0.08933,0.120235 -0.904558,1.217565 -0.0095,0.0063"
697
+ id="path78"
698
+ sodipodi:nodetypes="cccc" />
699
+ <path
700
+ style="color:#000000;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.265;stroke-dasharray:none;stroke-opacity:1"
701
+ d="m 32.615886,-24.650329 -0.168792,0.973423 0.927628,-0.343028 z"
702
+ id="path25-0"
703
+ sodipodi:nodetypes="cccc" />
704
+ <path
705
+ style="fill:none;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round"
706
+ d="m 33.811334,-25.407723 -0.08933,0.120235 -0.904558,1.217565 -0.0095,0.0063"
707
+ id="path78-6"
708
+ sodipodi:nodetypes="cccc" />
709
+ <title
710
+ id="title51">LED</title>
711
+ <circle
712
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
713
+ id="refblock-5-7-3-81"
714
+ cx="29.795198"
715
+ cy="35.730644"
716
+ r="0.28158441"
717
+ transform="rotate(-90)" />
718
+ <circle
719
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
720
+ id="refblock-5-7-3-81-3"
721
+ cx="19.071012"
722
+ cy="35.726109"
723
+ r="0.28158441"
724
+ transform="rotate(-90)" />
725
+ <text
726
+ xml:space="preserve"
727
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;fill:#000000;stroke-width:0.264583"
728
+ x="27.579512"
729
+ y="33.443123"
730
+ id="text14-3-0-5-0"
731
+ transform="rotate(-90)"><tspan
732
+ sodipodi:role="line"
733
+ id="tspan14-1-4-0-4"
734
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;stroke-width:0.264583"
735
+ x="27.579512"
736
+ y="33.443123">{REF}</tspan></text>
737
+ <text
738
+ xml:space="preserve"
739
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;fill:#000000;stroke-width:0.264583"
740
+ x="24.337488"
741
+ y="38.916466"
742
+ id="text14-3-0-5-0-2"
743
+ transform="rotate(-90)"><tspan
744
+ sodipodi:role="line"
745
+ id="tspan14-1-4-0-4-6"
746
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;stroke-width:0.264583"
747
+ x="24.337488"
748
+ y="38.916466">{VAL}</tspan></text>
749
+ </g>
750
+ <g
751
+ id="diode_zener"
752
+ transform="rotate(90,0.52248125,95.192174)">
753
+ <title
754
+ id="title52">Z-Diode</title>
755
+ <g
756
+ transform="translate(19.84375)"
757
+ id="g56">
758
+ <path
759
+ inkscape:connector-curvature="0"
760
+ id="path52"
761
+ d="m 80.697916,69.45832 1.322917,2.645833"
762
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
763
+ <path
764
+ inkscape:connector-curvature="0"
765
+ id="path53"
766
+ d="M 79.374999,72.104153 80.697916,69.45832"
767
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
768
+ <path
769
+ inkscape:connector-curvature="0"
770
+ id="path54"
771
+ d="M 82.020833,72.104153 H 79.374999"
772
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
773
+ <path
774
+ inkscape:connector-curvature="0"
775
+ id="path55"
776
+ d="m 79.374999,69.45832 h 2.645834"
777
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
778
+ <path
779
+ inkscape:connector-curvature="0"
780
+ id="path56"
781
+ d="M 80.697916,65.48957 V 76.072903"
782
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
783
+ </g>
784
+ <path
785
+ style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
786
+ d="m 101.86458,69.45832 v 0.79375"
787
+ id="path57"
788
+ inkscape:connector-curvature="0" />
789
+ <title
790
+ id="title57">Z-Diode</title>
791
+ </g>
792
+ <g
793
+ id="diode_schottky"
794
+ transform="rotate(90,-1.2503827,96.880721)">
795
+ <title
796
+ id="title58">Schottky</title>
797
+ <g
798
+ transform="translate(26.458333)"
799
+ id="g62">
800
+ <path
801
+ inkscape:connector-curvature="0"
802
+ id="path58"
803
+ d="m 80.697916,69.45832 1.322917,2.645833"
804
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
805
+ <path
806
+ inkscape:connector-curvature="0"
807
+ id="path59"
808
+ d="M 79.374999,72.104153 80.697916,69.45832"
809
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
810
+ <path
811
+ inkscape:connector-curvature="0"
812
+ id="path60"
813
+ d="M 82.020833,72.104153 H 79.374999"
814
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
815
+ <path
816
+ inkscape:connector-curvature="0"
817
+ id="path61"
818
+ d="m 79.374999,69.45832 h 2.645834"
819
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
820
+ <path
821
+ inkscape:connector-curvature="0"
822
+ id="path62"
823
+ d="M 80.697916,65.48957 V 76.072903"
824
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
825
+ </g>
826
+ <path
827
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
828
+ d="M 105.83333,69.45832 V 68.929153"
829
+ id="path63"
830
+ inkscape:connector-curvature="0" />
831
+ <path
832
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
833
+ d="m 106.3625,68.929153 h -0.52917"
834
+ id="path64"
835
+ inkscape:connector-curvature="0" />
836
+ <path
837
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
838
+ d="m 108.47917,69.45832 v 0.529166"
839
+ id="path65"
840
+ inkscape:connector-curvature="0" />
841
+ <path
842
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
843
+ d="m 107.95,69.987486 h 0.52917"
844
+ id="path66"
845
+ inkscape:connector-curvature="0" />
846
+ <title
847
+ id="title66">Schottky</title>
848
+ </g>
849
+ <g
850
+ id="diode_bipolar_zener"
851
+ transform="rotate(90,-2.8127806,98.522556)">
852
+ <title
853
+ id="title67">Bipolar_Z-Diode</title>
854
+ <path
855
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
856
+ d="m 113.77084,70.78124 1.32292,2.645833"
857
+ id="path67"
858
+ inkscape:connector-curvature="0" />
859
+ <path
860
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
861
+ d="m 112.44792,73.427073 1.32292,-2.645833"
862
+ id="path68"
863
+ inkscape:connector-curvature="0" />
864
+ <path
865
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
866
+ d="m 115.09376,73.427073 h -2.64584"
867
+ id="path69"
868
+ inkscape:connector-curvature="0" />
869
+ <path
870
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
871
+ d="m 112.44792,70.78124 h 2.64584"
872
+ id="path70"
873
+ inkscape:connector-curvature="0" />
874
+ <path
875
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
876
+ d="M 113.77083,65.489574 V 76.072907"
877
+ id="path71"
878
+ inkscape:connector-curvature="0" />
879
+ <path
880
+ style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
881
+ d="m 115.09376,70.781236 v 0.79375"
882
+ id="path72"
883
+ inkscape:connector-curvature="0" />
884
+ <path
885
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
886
+ d="m 112.44793,70.781236 v -0.79375"
887
+ id="path73"
888
+ inkscape:connector-curvature="0" />
889
+ <path
890
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
891
+ d="m 113.77084,70.781237 -1.32292,-2.64583"
892
+ id="path74"
893
+ inkscape:connector-curvature="0" />
894
+ <path
895
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
896
+ d="m 115.09376,68.135407 -1.32292,2.64583"
897
+ id="path75"
898
+ inkscape:connector-curvature="0" />
899
+ <path
900
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
901
+ d="m 112.44792,68.135407 h 2.64584"
902
+ id="path76"
903
+ inkscape:connector-curvature="0" />
904
+ <title
905
+ id="title76">Bipolar_Z-Diode</title>
906
+ </g>
907
+ <g
908
+ id="fuse"
909
+ transform="rotate(90,-45.517225,49.036163)">
910
+ <title
911
+ id="title2">Fuse</title>
912
+ <path
913
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;image-rendering:auto"
914
+ d="m 30.272296,-45.986839 v -10.58334"
915
+ id="path10"
916
+ inkscape:connector-curvature="0"
917
+ sodipodi:nodetypes="cc" />
918
+ <path
919
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;image-rendering:auto"
920
+ d="m 28.949379,-51.278529 v -2.64583 h 2.645834 v 5.29167 h -2.645834 v -2.64584"
921
+ id="path14"
922
+ inkscape:connector-curvature="0" />
923
+ <circle
924
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
925
+ id="refblock-5-7-2"
926
+ cx="56.615425"
927
+ cy="30.283871"
928
+ r="0.28158441"
929
+ transform="rotate(-90)" />
930
+ <title
931
+ id="title16">Fuse</title>
932
+ <circle
933
+ style="fill:#ff0000;stroke:none;stroke-width:0.264583;stroke-opacity:1"
934
+ id="refblock-5-7-7"
935
+ cx="45.924328"
936
+ cy="30.241827"
937
+ r="0.28158441"
938
+ transform="rotate(-90)" />
939
+ <text
940
+ xml:space="preserve"
941
+ style="font-size:1.05833px;fill:#000000;stroke-width:0.264583"
942
+ x="51.187237"
943
+ y="28.27726"
944
+ id="text14-39"
945
+ transform="rotate(-90)"><tspan
946
+ sodipodi:role="line"
947
+ id="tspan14-9"
948
+ style="font-size:1.05833px;text-align:center;text-anchor:middle;stroke-width:0.264583"
949
+ x="51.187237"
950
+ y="28.27726">{REF}</tspan></text>
951
+ <text
952
+ xml:space="preserve"
953
+ style="font-size:1.05833px;fill:#000000;stroke-width:0.264583"
954
+ x="49.553337"
955
+ y="32.995605"
956
+ id="text14-39-9"
957
+ transform="rotate(-90)"><tspan
958
+ sodipodi:role="line"
959
+ id="tspan14-9-8"
960
+ style="font-size:1.05833px;stroke-width:0.264583"
961
+ x="49.553337"
962
+ y="32.995605">{VAL}</tspan></text>
963
+ </g>
964
+ </g>
965
+ </svg>