1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by Microsoft Visio, SVG Export RedfishDriverStack.svg Page-1 -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="14in" height="8.5in" viewBox="0 0 1008 612"
xml:space="preserve" color-interpolation-filters="sRGB" class="st63">
<title>EDKII Redfish Driver Stack Diagrams</title>
<v:documentProperties v:langID="1033" v:viewMarkup="false">
<v:userDefs>
<v:ud v:nameU="msvNoAutoConnect" v:val="VT0(1):26"/>
</v:userDefs>
</v:documentProperties>
<style type="text/css">
<![CDATA[
.st1 {fill:#ffffff;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
.st2 {stroke:#7f7f7f;stroke-linecap:round;stroke-linejoin:round;stroke-width:4.5}
.st3 {fill:#a5a5a5;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st4 {fill:#000000;font-family:Calibri;font-size:1.16666em;font-weight:bold}
.st5 {font-size:0.714294em}
.st6 {fill:#0070c0;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st7 {fill:#ffffff;font-family:Calibri;font-size:1.16666em;font-weight:bold}
.st8 {fill:#ffffff;font-family:Calibri;font-size:1.08334em;font-weight:bold}
.st9 {font-size:1em}
.st10 {font-size:0.769226em}
.st11 {fill:#339966;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st12 {fill:#ffffff;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st13 {fill:#ffffff;stroke:#0070c0;stroke-linecap:round;stroke-linejoin:round;stroke-width:3}
.st14 {fill:#000000;font-family:Calibri;font-size:0.833336em;font-weight:bold}
.st15 {marker-end:url(#mrkr4-79);stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.9}
.st16 {fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1;stroke-width:0.36964980544747}
.st17 {marker-end:url(#mrkr4-79);stroke:#000000;stroke-dasharray:5.7,5.7;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.9}
.st18 {marker-end:url(#mrkr2-98);marker-start:url(#mrkr2-96);stroke:#fbd3d0;stroke-linecap:round;stroke-linejoin:round;stroke-width:7.5}
.st19 {fill:#fbd3d0;fill-opacity:1;stroke:#fbd3d0;stroke-opacity:1;stroke-width:0.74850299401198}
.st20 {marker-end:url(#mrkr2-112);marker-start:url(#mrkr2-110);stroke:#fbd3d0;stroke-linecap:round;stroke-linejoin:round;stroke-width:7.5}
.st21 {fill:#fbd3d0;fill-opacity:1;stroke:#fbd3d0;stroke-opacity:1;stroke-width:0.80645161290323}
.st22 {marker-end:url(#mrkr4-118);stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.9}
.st23 {fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1;stroke-width:0.42986425339367}
.st24 {marker-end:url(#mrkr4-124);stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.9}
.st25 {fill:#ff1a1a;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st26 {fill:#ffffff;font-family:Calibri;font-size:1.00001em;font-weight:bold}
.st27 {fill:none;stroke:#000000;stroke-dasharray:4.5,4.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st28 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
.st29 {fill:#000000;font-family:Calibri;font-size:1.00001em;font-weight:bold}
.st30 {marker-end:url(#mrkr2-151);marker-start:url(#mrkr2-149);stroke:#fbd3d0;stroke-linecap:round;stroke-linejoin:round;stroke-width:8}
.st31 {fill:#fbd3d0;fill-opacity:1;stroke:#fbd3d0;stroke-opacity:1;stroke-width:0.76045627376426}
.st32 {fill:#000000;font-family:Arial;font-size:1.33333em;font-style:italic;font-weight:bold}
.st33 {fill:#ffffff;stroke:#7f7f7f;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.24}
.st34 {fill:#a5a5a5;font-family:Arial;font-size:0.916672em}
.st35 {fill:#f2dcda;stroke:#a5a5a5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st36 {fill:#a5a5a5;font-family:Calibri;font-size:1.00001em;font-weight:bold}
.st37 {fill:none;stroke:#a5a5a5;stroke-dasharray:4.5,4.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st38 {fill:#000000;font-family:Arial;font-size:0.666664em}
.st39 {font-family:Microsoft JhengHei;font-size:1em}
.st40 {fill:#dbeef3;stroke:#d8d8d8;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st41 {fill:#000000;font-family:Arial;font-size:1.66667em;font-weight:bold}
.st42 {fill:none;stroke:#000000;stroke-dasharray:2.25,2.25;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
.st43 {visibility:visible}
.st44 {fill:none;filter:url(#filter_3.3333334922791);stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.4}
.st45 {fill:none;stroke:#bfbfbf;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
.st46 {fill:none;stroke:#a5a5a5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st47 {fill:#ffffff;stroke:#a5a5a5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.st48 {marker-end:url(#mrkr4-118);stroke:#000000;stroke-dasharray:5.7,5.7;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.9}
.st49 {marker-end:url(#mrkr4-251);stroke:#a5a5a5;stroke-dasharray:5.7,5.7;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.9}
.st50 {fill:#a5a5a5;fill-opacity:1;stroke:#a5a5a5;stroke-opacity:1;stroke-width:0.42986425339367}
.st51 {marker-end:url(#mrkr4-257);stroke:#bfbfbf;stroke-dasharray:5.7,5.7;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.9}
.st52 {fill:#bfbfbf;fill-opacity:1;stroke:#bfbfbf;stroke-opacity:1;stroke-width:0.42986425339367}
.st53 {marker-end:url(#mrkr4-265);marker-start:url(#mrkr2-149);stroke:#fbd3d0;stroke-linecap:round;stroke-linejoin:round;stroke-width:8}
.st54 {marker-end:url(#mrkr2-295);marker-start:url(#mrkr2-293);stroke:#fbd3d0;stroke-linecap:round;stroke-linejoin:round;stroke-width:4.25}
.st55 {fill:#fbd3d0;fill-opacity:1;stroke:#fbd3d0;stroke-opacity:1;stroke-width:0.62776957163959}
.st56 {marker-end:url(#mrkr2-313);stroke:#d8d8d8;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.9}
.st57 {fill:#d8d8d8;fill-opacity:1;stroke:#d8d8d8;stroke-opacity:1;stroke-width:0.36964980544747}
.st58 {marker-end:url(#mrkr4-319);stroke:#d8d8d8;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
.st59 {fill:#d8d8d8;fill-opacity:1;stroke:#d8d8d8;stroke-opacity:1;stroke-width:0.22935779816514}
.st60 {stroke:#000000;stroke-dasharray:0,9;stroke-linecap:round;stroke-linejoin:round;stroke-width:3}
.st61 {fill:#000000;font-family:Calibri;font-size:0.833336em}
.st62 {fill:#000000;font-family:Arial;font-size:0.916672em;font-weight:bold}
.st63 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
]]>
</style>
<defs id="Markers">
<g id="lend4">
<path d="M 2 1 L 0 0 L 2 -1 L 2 1 " style="stroke:none"/>
</g>
<marker id="mrkr4-79" class="st16" v:arrowType="4" v:arrowSize="3" v:setback="5.22105" refX="-5.2210526315789"
orient="auto" markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend4" transform="scale(-2.7052631578947,-2.7052631578947) "/>
</marker>
<g id="lend2">
<path d="M 1 1 L 0 0 L 1 -1 L 1 1 " style="stroke:none"/>
</g>
<marker id="mrkr2-96" class="st19" v:arrowType="2" v:arrowSize="2" v:setback="1.288" refX="1.288" orient="auto"
markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend2" transform="scale(1.336) "/>
</marker>
<marker id="mrkr2-98" class="st19" v:arrowType="2" v:arrowSize="2" v:setback="1.288" refX="-1.288" orient="auto"
markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend2" transform="scale(-1.336,-1.336) "/>
</marker>
<marker id="mrkr2-110" class="st21" v:arrowType="2" v:arrowSize="1" v:setback="1.192" refX="1.192" orient="auto"
markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend2" transform="scale(1.24) "/>
</marker>
<marker id="mrkr2-112" class="st21" v:arrowType="2" v:arrowSize="1" v:setback="1.192" refX="-1.192" orient="auto"
markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend2" transform="scale(-1.24,-1.24) "/>
</marker>
<marker id="mrkr4-118" class="st23" v:arrowType="4" v:arrowSize="2" v:setback="4.46316" refX="-4.4631578947368"
orient="auto" markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend4" transform="scale(-2.3263157894737,-2.3263157894737) "/>
</marker>
<marker id="mrkr4-124" class="st23" v:arrowType="4" v:arrowSize="2" v:setback="4.65263" refX="-4.6526315789474"
orient="auto" markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend4" transform="scale(-2.3263157894737,-2.3263157894737) "/>
</marker>
<marker id="mrkr2-149" class="st31" v:arrowType="2" v:arrowSize="2" v:setback="1.27" refX="1.27" orient="auto"
markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend2" transform="scale(1.315) "/>
</marker>
<marker id="mrkr2-151" class="st31" v:arrowType="2" v:arrowSize="2" v:setback="1.27" refX="-1.27" orient="auto"
markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend2" transform="scale(-1.315,-1.315) "/>
</marker>
<marker id="mrkr4-251" class="st50" v:arrowType="4" v:arrowSize="2" v:setback="4.46316" refX="-4.4631578947368"
orient="auto" markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend4" transform="scale(-2.3263157894737,-2.3263157894737) "/>
</marker>
<marker id="mrkr4-257" class="st52" v:arrowType="4" v:arrowSize="2" v:setback="4.46316" refX="-4.4631578947368"
orient="auto" markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend4" transform="scale(-2.3263157894737,-2.3263157894737) "/>
</marker>
<marker id="mrkr4-265" class="st31" v:arrowType="4" v:arrowSize="2" v:setback="2.585" refX="-2.585" orient="auto"
markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend4" transform="scale(-1.315,-1.315) "/>
</marker>
<marker id="mrkr2-293" class="st55" v:arrowType="2" v:arrowSize="2" v:setback="1.50824" refX="1.5082352941176"
orient="auto" markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend2" transform="scale(1.5929411764706) "/>
</marker>
<marker id="mrkr2-295" class="st55" v:arrowType="2" v:arrowSize="2" v:setback="1.59294" refX="-1.5929411764706"
orient="auto" markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend2" transform="scale(-1.5929411764706,-1.5929411764706) "/>
</marker>
<marker id="mrkr2-313" class="st57" v:arrowType="2" v:arrowSize="3" v:setback="2.51579" refX="-2.5157894736842"
orient="auto" markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend2" transform="scale(-2.7052631578947,-2.7052631578947) "/>
</marker>
<marker id="mrkr4-319" class="st59" v:arrowType="4" v:arrowSize="2" v:setback="8.72" refX="-8.72" orient="auto"
markerUnits="strokeWidth" overflow="visible">
<use xlink:href="#lend4" transform="scale(-4.36,-4.36) "/>
</marker>
</defs>
<defs id="Filters">
<filter id="filter_3.3333334922791">
<feGaussianBlur stdDeviation="3.3333334922791"/>
</filter>
</defs>
<g v:mID="4" v:index="1" v:groupContext="backgroundPage">
<v:userDefs>
<v:ud v:nameU="msvVisioCreated" v:prompt="" v:val="VT0(0):26"/>
</v:userDefs>
<title>VBackground-1</title>
<v:pageProperties width="14" height="8.5" v:drawingScale="1" v:pageScale="1" v:drawingUnits="19" v:shadowOffsetX="9"
v:shadowOffsetY="-9"/>
<g id="shape1-1" v:mID="1" v:groupContext="shape">
<title>Solid</title>
<v:userDefs>
<v:ud v:nameU="Background" v:val="VT0(0):26"/>
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
<v:ud v:nameU="msvShapeCategories" v:prompt="" v:val="VT4(DoNotContain)"/>
<v:ud v:nameU="msvVisioCreated" v:prompt="" v:val="VT0(0):26"/>
</v:userDefs>
<rect x="0" y="0" width="1008" height="612" class="st1"/>
</g>
</g>
<g v:mID="0" v:index="2" v:groupContext="foregroundPage">
<title>Page-1</title>
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="19" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
<v:layer v:name="Connector" v:index="0"/>
<g id="shape1-3" v:mID="1" v:groupContext="shape" transform="translate(45,-342)">
<title>Sheet.1</title>
<path d="M0 612 L751.5 612" class="st2"/>
</g>
<g id="shape2-6" v:mID="2" v:groupContext="shape" transform="translate(211.5,-279)">
<title>Sheet.2</title>
<desc>RedfishLib (libredfish)</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="67.5" cy="594" width="135" height="36"/>
<rect x="0" y="576" width="135" height="36" class="st3"/>
<text x="37.36" y="591" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>RedfishLib<v:lf/><tspan
x="44.78" dy="1.5em" class="st5">(</tspan><tspan class="st5">libredfish</tspan><tspan class="st5">)</tspan></text> </g>
<g id="shape3-12" v:mID="3" v:groupContext="shape" transform="translate(616.5,-283.5)">
<title>Sheet.3</title>
<desc>JsonLib (jansson)</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76.5" cy="594" width="153" height="36"/>
<rect x="0" y="576" width="153" height="36" class="st3"/>
<text x="55.44" y="591" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>JsonLib<v:lf/><tspan
x="57.6" dy="1.5em" class="st5">(</tspan><tspan class="st5">jansson</tspan><tspan class="st5">)</tspan></text> </g>
<g id="shape4-18" v:mID="4" v:groupContext="shape" transform="translate(211.5,-216)">
<title>Sheet.4</title>
<desc>EFI Redfish Discover (UEFI Driver Model)</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="67.5" cy="594" width="135" height="36"/>
<rect x="0" y="576" width="135" height="36" class="st6"/>
<text x="9.2" y="591" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>EFI Redfish Discover<v:lf/><tspan
x="26.49" dy="1.5em" class="st5">(</tspan><tspan class="st5">UEFI Driver Model</tspan><tspan class="st5">)</tspan></text> </g>
<g id="shape5-24" v:mID="5" v:groupContext="shape" transform="translate(211.5,-153)">
<title>Sheet.5</title>
<desc>EFI REST EX (UEFI Driver Model)</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="67.5" cy="594" width="135" height="36"/>
<rect x="0" y="576" width="135" height="36" class="st6"/>
<text x="34.44" y="591" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>EFI REST EX<v:lf/><tspan
x="26.49" dy="1.5em" class="st5">(</tspan><tspan class="st5">UEFI Driver Model</tspan><tspan class="st5">)</tspan></text> </g>
<g id="shape6-30" v:mID="6" v:groupContext="shape" transform="translate(409.5,-279)">
<title>Sheet.6</title>
<desc>EFI REST JSON to C Structure (DXE Driver)</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76.5" cy="589.5" width="153" height="45"/>
<rect x="0" y="567" width="153" height="45" class="st6"/>
<text x="26.52" y="579.75" class="st8" v:langID="1033"><v:paragraph v:spLine="-1" v:horizAlign="1"/><v:tabList/>EFI REST JSON to C <v:newlineChar/><tspan
x="51.33" dy="1.058em" class="st9">Structure<v:lf/></tspan><tspan x="51.09" dy="1.25em" class="st10">(</tspan><tspan
class="st10">DXE Driver</tspan><tspan class="st10">)</tspan></text> </g>
<g id="shape7-37" v:mID="7" v:groupContext="shape" transform="translate(409.5,-225)">
<title>Sheet.7</title>
<desc>EDKII Redfish Credential (DXE Driver)</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76.5" cy="594" width="153" height="36"/>
<rect x="0" y="576" width="153" height="36" class="st6"/>
<text x="11.19" y="590.75" class="st8" v:langID="1033"><v:paragraph v:spLine="-1" v:horizAlign="1"/><v:tabList/>EDKII Redfish Credential<v:lf/><tspan
x="51.09" dy="1.3em" class="st10">(</tspan><tspan class="st10">DXE Driver</tspan><tspan class="st10">)</tspan></text> </g>
<g id="shape8-43" v:mID="8" v:groupContext="shape" transform="translate(409.5,-171)">
<title>Sheet.8</title>
<desc>EDKII Platform Content Coding Library</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76.5" cy="594" width="153" height="36"/>
<rect x="0" y="576" width="153" height="36" class="st11"/>
<text x="13.91" y="590.75" class="st8" v:langID="1033"><v:paragraph v:spLine="-1" v:horizAlign="1"/><v:tabList/>EDKII Platform Content <tspan
x="37.7" dy="1em" class="st9">Coding Library</tspan></text> </g>
<g id="shape9-47" v:mID="9" v:groupContext="shape" transform="translate(409.5,-117)">
<title>Sheet.9</title>
<desc>EDKII Network Stacks (UEFI Driver Model)</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76.5" cy="594" width="153" height="36"/>
<rect x="0" y="576" width="153" height="36" class="st6"/>
<text x="18.73" y="590.75" class="st8" v:langID="1033"><v:paragraph v:spLine="-1" v:horizAlign="1"/><v:tabList/>EDKII Network Stacks<v:lf/><tspan
x="35.49" dy="1.3em" class="st10">(</tspan><tspan class="st10">UEFI Driver Model</tspan><tspan class="st10">)</tspan></text> </g>
<g id="shape10-53" v:mID="10" v:groupContext="shape" transform="translate(409.5,-54)">
<title>Sheet.10</title>
<desc>EDKII Redfish Host Interface (DXE Driver)</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76.5" cy="589.5" width="153" height="45"/>
<rect x="0" y="567" width="153" height="45" class="st6"/>
<text x="26.68" y="579.75" class="st8" v:langID="1033"><v:paragraph v:spLine="-1" v:horizAlign="1"/><v:tabList/>EDKII Redfish Host <tspan
x="52.19" dy="1em" class="st9">Interface<v:lf/></tspan><tspan x="51.09" dy="1.3em" class="st10">(</tspan><tspan
class="st10">DXE Driver</tspan><tspan class="st10">)</tspan></text> </g>
<g id="shape11-60" v:mID="11" v:groupContext="shape" transform="translate(211.5,-94.5)">
<title>Sheet.11</title>
<desc>SMBIOS Type 42</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="67.5" cy="598.5" width="135" height="27"/>
<rect x="0" y="585" width="135" height="27" class="st12"/>
<text x="19.92" y="602.7" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>SMBIOS Type 42</text> </g>
<g id="shape12-63" v:mID="12" v:groupContext="shape" transform="translate(616.5,-72)">
<title>Sheet.12</title>
<desc>RedfishPlatformConfig.efi</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76.5" cy="598.5" width="153" height="27"/>
<rect x="0" y="585" width="153" height="27" class="st13"/>
<text x="22.93" y="601.5" class="st14" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>RedfishPlatformConfig.efi</text> </g>
<g id="shape13-66" v:mID="13" v:groupContext="shape" transform="translate(616.5,-225)">
<title>Sheet.13</title>
<desc>Platform Redfish Credential Library</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76.5" cy="594" width="153" height="36"/>
<rect x="0" y="576" width="153" height="36" class="st11"/>
<text x="31.21" y="590.75" class="st8" v:langID="1033"><v:paragraph v:spLine="-1" v:horizAlign="1"/><v:tabList/>Platform Redfish <tspan
x="28.36" dy="1em" class="st9">Credential Library</tspan></text> </g>
<g id="shape14-70" v:mID="14" v:groupContext="shape" transform="translate(618.25,-162)">
<title>Sheet.14</title>
<desc>Platform Redfish Host Interface Library</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76.5" cy="594" width="153" height="36"/>
<rect x="0" y="576" width="153" height="36" class="st11"/>
<text x="17.3" y="590.75" class="st8" v:langID="1033"><v:paragraph v:spLine="-1" v:horizAlign="1"/><v:tabList/>Platform Redfish Host <tspan
x="31.97" dy="1em" class="st9">Interface Library</tspan></text> </g>
<g id="shape20-74" v:mID="20" v:groupContext="shape" transform="translate(108.912,1066.03) rotate(-150.255)">
<title>Sheet.20</title>
<path d="M0 605.85 C5.2 601.6 11.37 602.58 17.02 603.9 C34.96 608.09 47.6 615.63 63.3 610.33 L63.63 610.17"
class="st15"/>
</g>
<g id="shape26-80" v:mID="26" v:groupContext="shape" transform="translate(798.806,378) rotate(90)">
<title>Sheet.26</title>
<path d="M0 587.31 C27.48 618.4 91.67 620.3 119.28 595.08 L119.51 594.81" class="st15"/>
</g>
<g id="shape27-85" v:mID="27" v:groupContext="shape" transform="translate(616.5,980.172) rotate(180)">
<title>Sheet.27</title>
<path d="M0 611.17 C8.24 606.04 18.13 605.86 27 607.8 C32.73 609.05 38.03 611.18 43.74 611.86 L44.1 611.83"
class="st17"/>
</g>
<g id="shape34-90" v:mID="34" v:groupContext="shape" transform="translate(958.5,315) rotate(90)">
<title>Sheet.34</title>
<path d="M4.28 603.34 L4.44 603.02 C6.15 598.55 7.91 593.52 10.26 589.58 C10.52 589.15 10.79 588.72 11.06 588.3 C24.98
566.86 47.13 561.26 67.61 562.5 C93.1 564.05 116.01 576.2 123.87 602.21 L123.94 602.56" class="st18"/>
</g>
<g id="shape35-99" v:mID="35" v:groupContext="shape" transform="translate(868.595,10.4444) rotate(59.7436)">
<title>Sheet.35</title>
<path d="M0 604.43 C17.43 596.28 35.82 595.77 52.17 599.33 C75.61 604.44 94.87 617.9 116.02 609.38 L116.34 609.21"
class="st15"/>
</g>
<g id="shape42-104" v:mID="42" v:groupContext="shape" transform="translate(511.956,-120.094) rotate(15.9454)">
<title>Sheet.42</title>
<path d="M8.92 601.65 L9.28 601.63 C11.78 602.35 14.16 603.61 16.51 604.78 C30.56 611.79 43.18 615.49 57.81 607.46 L58.11
607.26" class="st20"/>
</g>
<g id="shape43-113" v:mID="43" v:groupContext="shape" transform="translate(662.85,-296.1) rotate(9.46232)">
<title>Sheet.43</title>
<path d="M0 610.4 C16.69 599.74 30.24 612.49 46.06 612.08 L46.42 612.01" class="st22"/>
</g>
<g id="shape44-119" v:mID="44" v:groupContext="shape" transform="translate(891,396) rotate(90)">
<title>Sheet.44</title>
<path d="M0 612 L18.16 612" class="st24"/>
</g>
<g id="group45-125" transform="translate(846,-319.5)" v:mID="45" v:groupContext="group">
<v:userDefs>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
</v:userDefs>
<title>Can</title>
<desc>Redfish Service</desc>
<g id="shape46-126" v:mID="46" v:groupContext="shape">
<title>Sheet.46</title>
<v:userDefs>
<v:ud v:nameU="ControlHalfHeight" v:prompt="" v:val="VT0(0.125):1"/>
<v:ud v:nameU="FillForegnd" v:prompt="" v:val="VT0(1):26"/>
<v:ud v:nameU="ControlHalfHeight" v:prompt="" v:val="VT0(0.15625):1"/>
<v:ud v:nameU="FillForegnd" v:prompt="" v:val="VT5(#ff1a1a)"/>
</v:userDefs>
<path d="M0 600.75 A29.25 11.25 -180 1 0 58.5 600.75 L58.5 560.25 L0 560.25 L0 600.75 Z" class="st25"/>
</g>
<g id="shape45-128" v:mID="45" v:groupContext="groupContent">
<v:textBlock v:margins="rect(4,4,4,4)" v:verticalAlign="2"/>
<v:textRect cx="29.25" cy="580.5" width="58.5" height="63"/>
<ellipse cx="29.25" cy="560.25" rx="29.25" ry="11.25" class="st25"/>
<text x="10.65" y="590" class="st26" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Redfish <tspan
x="11.42" dy="1.2em" class="st9">Service</tspan></text> </g>
</g>
<g id="shape47-132" v:mID="47" v:groupContext="shape" transform="translate(837,-315)">
<title>Rounded Rectangle</title>
<v:userDefs>
<v:ud v:nameU="CTypeTopLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeTopRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CornerLockHoriz" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockVert" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockDiag" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.10625):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.10625):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.10625):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.10625):1"/>
</v:userDefs>
<path d="M7.65 612 L68.85 612 A7.64987 7.64987 -180 0 0 76.5 604.35 L76.5 511.65 A7.64987 7.64987 -180 0 0 68.85 504
L7.65 504 A7.64987 7.64987 -180 0 0 -0 511.65 L0 604.35 A7.64987 7.64987 -180 0 0 7.65 612 Z" class="st27"/>
</g>
<g id="shape48-134" v:mID="48" v:groupContext="shape" transform="translate(837,-315)">
<title>Rounded Rectangle.48</title>
<v:userDefs>
<v:ud v:nameU="CTypeTopLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeTopRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CornerLockHoriz" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockVert" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockDiag" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.175):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.175):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.175):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.175):1"/>
</v:userDefs>
<path d="M12.6 612 L113.4 612 A12.5998 12.5998 -180 0 0 126 599.4 L126 552.6 A12.5998 12.5998 -180 0 0 113.4 540 L12.6
540 A12.5998 12.5998 -180 0 0 -0 552.6 L0 599.4 A12.5998 12.5998 -180 0 0 12.6 612 Z" class="st27"/>
</g>
<g id="shape49-136" v:mID="49" v:groupContext="shape" transform="translate(846,-391.5)">
<title>Sheet.49</title>
<desc>On Network</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="29.25" cy="598.5" width="58.5" height="27"/>
<rect x="0" y="585" width="58.5" height="27" class="st28"/>
<text x="21.97" y="594.9" class="st29" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>On <tspan x="7.49"
dy="1.2em" class="st9">Network</tspan></text> </g>
<g id="shape51-140" v:mID="51" v:groupContext="shape" transform="translate(913.5,-333)">
<title>Sheet.51</title>
<desc>BMC</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="22.5" cy="598.5" width="45" height="27"/>
<rect x="0" y="585" width="45" height="27" class="st28"/>
<text x="10.72" y="602.1" class="st29" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>BMC</text> </g>
<g id="shape53-143" v:mID="53" v:groupContext="shape" transform="translate(300.223,21.2932) rotate(-29.9221)">
<title>Sheet.53</title>
<path d="M8.6 531.2 L8.91 531.39 C45.12 553.68 83.03 571.57 122.32 588.41 C144.61 597.96 167.35 607.17 190.07 610.52
C222.93 615.38 255.74 608 284.87 592.4 C310.1 578.89 332.55 559.23 354.13 533.89 L354.36 533.61"
class="st30"/>
</g>
<g id="shape54-152" v:mID="54" v:groupContext="shape" transform="translate(1142.22,727.062) rotate(119.385)">
<title>Sheet.54</title>
<path d="M0 601.33 C1.8 603.71 4.18 606.09 6.63 607.87 C38.72 631.29 82.4 552.5 108.8 592.25 L108.97 592.57"
class="st17"/>
</g>
<g id="shape55-157" v:mID="55" v:groupContext="shape" transform="translate(189,531) rotate(-90)">
<title>Sheet.55</title>
<path d="M0 580.5 C3.72 583.62 7.79 589.31 12.01 593.96 C44.21 629.47 84.97 604.53 101.41 588.39 L101.64 588.12"
class="st15"/>
</g>
<g id="shape56-162" v:mID="56" v:groupContext="shape" transform="translate(45,-305)">
<title>Sheet.56</title>
<desc>EDKII Redfish Foundation</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76" cy="602" width="152" height="20"/>
<rect x="0" y="592" width="152" height="20" class="st28"/>
<text x="4" y="597.2" class="st32" v:langID="1033"><v:paragraph/><v:tabList/>EDKII Redfish <tspan x="4" dy="1.2em"
class="st9">Foundation</tspan></text> </g>
<g id="shape57-166" v:mID="57" v:groupContext="shape" transform="translate(45,-351)">
<title>Sheet.57</title>
<desc>EDKII Redfish Client</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76" cy="602" width="152" height="20"/>
<rect x="0" y="592" width="152" height="20" class="st28"/>
<text x="4" y="597.2" class="st32" v:langID="1033"><v:paragraph/><v:tabList/>EDKII Redfish <tspan x="4" dy="1.2em"
class="st9">Client</tspan></text> </g>
<g id="shape58-170" v:mID="58" v:groupContext="shape" transform="translate(54,-198)">
<title>Rounded Rectangle.58</title>
<desc>SSDP over UDP</desc>
<v:userDefs>
<v:ud v:nameU="CTypeTopLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeTopRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CornerLockHoriz" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockVert" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockDiag" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.0625):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.0625):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.0625):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.0625):1"/>
</v:userDefs>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="54" cy="598.5" width="108" height="27"/>
<path d="M4.5 612 L103.5 612 A4.49993 4.49993 -180 0 0 108 607.5 L108 589.5 A4.49993 4.49993 -180 0 0 103.5 585 L4.5
585 A4.49993 4.49993 -180 0 0 0 589.5 L0 607.5 A4.49993 4.49993 -180 0 0 4.5 612 Z" class="st33"/>
<text x="13.65" y="601.81" class="st34" v:langID="1033"><v:paragraph v:horizAlign="1" v:bulletSize="0.166667"/><v:tabList/>SSDP over UDP</text> </g>
<g id="group60-173" transform="translate(76.5,-117)" v:mID="60" v:groupContext="group">
<v:userDefs>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
</v:userDefs>
<title>Can.60</title>
<desc>Redfish Service</desc>
<g id="shape61-174" v:mID="61" v:groupContext="shape">
<title>Sheet.61</title>
<v:userDefs>
<v:ud v:nameU="ControlHalfHeight" v:prompt="" v:val="VT0(0.125):1"/>
<v:ud v:nameU="FillForegnd" v:prompt="" v:val="VT0(1):26"/>
<v:ud v:nameU="ControlHalfHeight" v:prompt="" v:val="VT0(0.15625):1"/>
<v:ud v:nameU="FillForegnd" v:prompt="" v:val="VT5(#f2dcda)"/>
</v:userDefs>
<path d="M0 600.75 A29.25 11.25 -180 1 0 58.5 600.75 L58.5 560.25 L0 560.25 L0 600.75 Z" class="st35"/>
</g>
<g id="shape60-176" v:mID="60" v:groupContext="groupContent">
<v:textBlock v:margins="rect(4,4,4,4)" v:verticalAlign="2"/>
<v:textRect cx="29.25" cy="580.5" width="58.5" height="63"/>
<ellipse cx="29.25" cy="560.25" rx="29.25" ry="11.25" class="st35"/>
<text x="10.65" y="590" class="st36" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Redfish <tspan
x="11.42" dy="1.2em" class="st9">Service</tspan></text> </g>
</g>
<g id="shape62-180" v:mID="62" v:groupContext="shape" transform="translate(67.5,-90)">
<title>Rounded Rectangle.62</title>
<v:userDefs>
<v:ud v:nameU="CTypeTopLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeTopRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CornerLockHoriz" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockVert" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockDiag" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.10625):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.10625):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.10625):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.10625):1"/>
</v:userDefs>
<path d="M7.65 612 L68.85 612 A7.64987 7.64987 -180 0 0 76.5 604.35 L76.5 525.15 A7.64987 7.64987 -180 0 0 68.85 517.5
L7.65 517.5 A7.64987 7.64987 -180 0 0 -0 525.15 L0 604.35 A7.64987 7.64987 -180 0 0 7.65 612 Z"
class="st37"/>
</g>
<g id="shape63-182" v:mID="63" v:groupContext="shape" transform="translate(81,-90)">
<title>Sheet.63</title>
<desc>BMC</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="22.5" cy="598.5" width="45" height="27"/>
<rect x="0" y="585" width="45" height="27" class="st28"/>
<text x="10.72" y="602.1" class="st36" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>BMC</text> </g>
<g id="shape64-185" v:mID="64" v:groupContext="shape" transform="translate(614.75,-135)">
<title>Sheet.64</title>
<desc>Build up Redfish Host Interface</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76" cy="602" width="152" height="20"/>
<rect x="0" y="592" width="152" height="20" class="st28"/>
<text x="4" y="597.2" class="st38" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>Build up Redfish Host Interface<v:newlineChar/></text> </g>
<g id="shape66-188" v:mID="66" v:groupContext="shape" transform="translate(806,-85.5)">
<title>Sheet.66</title>
<desc>EFI Shell Application, which builds up Redfish Host interface...</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76" cy="589.5" width="152" height="45"/>
<rect x="0" y="567" width="152" height="45" class="st28"/>
<text x="4" y="577.1" class="st38" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>EFI Shell Application, which<v:newlineChar/><tspan
x="4" dy="1.2em" class="st9">builds up Redfish Host interface<v:newlineChar/><v:paragraph v:spLine="-1"
v:bulletSize="0.166667"/></tspan><tspan x="4" dy="1.05em" class="st9">for EDK</tspan>2 emulator platform<v:newlineChar/><tspan
x="4" dy="1.375em" class="st9">(</tspan>EmulatorPkg<tspan class="st39" v:langID="1028">)</tspan></text> </g>
<g id="shape69-195" v:mID="69" v:groupContext="shape" transform="translate(612,-202.5)">
<title>Sheet.69</title>
<desc>Get Authentication</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76" cy="602" width="152" height="20"/>
<rect x="0" y="592" width="152" height="20" class="st28"/>
<text x="4" y="597.2" class="st38" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>Get Authentication<v:newlineChar/></text> </g>
<g id="shape71-198" v:mID="71" v:groupContext="shape" transform="translate(396,-486)">
<title>Sheet.71</title>
<desc>RedfishBiosDxe</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="130.5" cy="594" width="261" height="36"/>
<rect x="0" y="576" width="261" height="36" class="st40"/>
<text x="88.66" y="597.25" class="st8" v:langID="1033"><v:paragraph v:spLine="-1" v:horizAlign="1"/><v:tabList/>RedfishBiosDxe</text> </g>
<g id="shape72-201" v:mID="72" v:groupContext="shape" transform="translate(396,-423)">
<title>Sheet.72</title>
<desc>RedfishBootInfoDxe</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="130.5" cy="594" width="261" height="36"/>
<rect x="0" y="576" width="261" height="36" class="st40"/>
<text x="76.33" y="597.25" class="st8" v:langID="1033"><v:paragraph v:spLine="-1" v:horizAlign="1"/><v:tabList/>RedfishBootInfoDxe</text> </g>
<g id="shape73-204" v:mID="73" v:groupContext="shape" transform="translate(396,-441)">
<title>Sheet.73</title>
<desc>EDKII Redfish Feature DXE Drivers</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="130.5" cy="580.5" width="261" height="63"/>
<rect x="0" y="549" width="261" height="63" class="st28"/>
<text x="25.48" y="574.5" class="st41" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>EDKII Redfish Feature <tspan
x="72.69" dy="1.2em" class="st9">DXE Drivers</tspan></text> </g>
<g id="shape75-208" v:mID="75" v:groupContext="shape" transform="translate(369,-405)">
<title>Rectangle</title>
<v:userDefs>
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
</v:userDefs>
<path d="M0 612 L315 612 L315 477 L0 477 L0 612 Z" class="st42"/>
</g>
<g id="shape76-210" v:mID="76" v:groupContext="shape" transform="translate(324,-387)">
<title>Rounded Rectangle.76</title>
<v:userDefs>
<v:ud v:nameU="CTypeTopLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeTopRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CornerLockHoriz" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockVert" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockDiag" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.23913043478261):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.23913043478261):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.23913043478261):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.23913043478261):1"/>
</v:userDefs>
<g id="shadow76-211" v:groupContext="shadow" v:shadowOffsetX="7.2E-008" v:shadowOffsetY="0" v:shadowType="1"
v:shadowScale="1.02" transform="matrix(1.02,0,0,1.02,-3.96,-10.53)" class="st43">
<path d="M17.22 612 L378.78 612 A17.2171 17.2171 -180 0 0 396 594.78 L396 458.22 A17.2171 17.2171 -180 0 0 378.78
441 L17.22 441 A17.2171 17.2171 -180 0 0 0 458.22 L0 594.78 A17.2171 17.2171 -180 0 0 17.22 612 Z"
class="st44"/>
</g>
<path d="M17.22 612 L378.78 612 A17.2171 17.2171 -180 0 0 396 594.78 L396 458.22 A17.2171 17.2171 -180 0 0 378.78 441
L17.22 441 A17.2171 17.2171 -180 0 0 0 458.22 L0 594.78 A17.2171 17.2171 -180 0 0 17.22 612 Z"
class="st45"/>
</g>
<g id="shape77-215" v:mID="77" v:groupContext="shape" transform="translate(166.5,-396)">
<title>Sheet.77</title>
<desc>EDKII RedfishConfigDriver (UEF Driver Model)</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="67.5" cy="589.5" width="135" height="45"/>
<rect x="0" y="567" width="135" height="45" class="st6"/>
<text x="52.11" y="580" class="st7" v:langID="1033"><v:paragraph v:spLine="-1" v:horizAlign="1"/><v:tabList/>EDKII <tspan
x="9.37" dy="1em" class="st9">RedfishConfigDriver<v:lf/></tspan><tspan x="27.82" dy="1.25em" class="st5">(</tspan><tspan
class="st5">UEF Driver Model</tspan><tspan class="st5">)</tspan></text> </g>
<g id="shape79-222" v:mID="79" v:groupContext="shape" transform="translate(807.666,295.676) rotate(97.9072)">
<title>Sheet.79</title>
<path d="M0 579.17 C20.49 576.51 31.18 592.91 46.37 602.26 C77.86 621.65 128.73 610.76 156.32 586.48 L156.58 586.22"
class="st15"/>
</g>
<g id="shape80-227" v:mID="80" v:groupContext="shape" transform="translate(198,-522)">
<title>Rounded Rectangle.80</title>
<v:userDefs>
<v:ud v:nameU="CTypeTopLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeTopRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CornerLockHoriz" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockVert" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockDiag" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
</v:userDefs>
<path d="M4.7 612 L103.3 612 A4.69558 4.69558 -180 0 0 108 607.3 L108 589.7 A4.69558 4.69558 -180 0 0 103.3 585 L4.7
585 A4.69558 4.69558 -180 0 0 0 589.7 L0 607.3 A4.69558 4.69558 -180 0 0 4.7 612 Z" class="st46"/>
</g>
<g id="shape81-229" v:mID="81" v:groupContext="shape" transform="translate(189,-513)">
<title>Rounded Rectangle.81</title>
<v:userDefs>
<v:ud v:nameU="CTypeTopLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeTopRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CornerLockHoriz" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockVert" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockDiag" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
</v:userDefs>
<path d="M4.7 612 L103.3 612 A4.69558 4.69558 -180 0 0 108 607.3 L108 589.7 A4.69558 4.69558 -180 0 0 103.3 585 L4.7
585 A4.69558 4.69558 -180 0 0 0 589.7 L0 607.3 A4.69558 4.69558 -180 0 0 4.7 612 Z" class="st47"/>
</g>
<g id="shape90-231" v:mID="90" v:groupContext="shape" transform="translate(-119.157,659.986) rotate(-144.162)">
<title>Sheet.90</title>
<path d="M0 603.18 C4.15 607.13 9.94 610.11 15.61 611.34 C29.37 614.32 42.44 606.94 53.45 596.49 C61.26 589.09 68.03
580.16 77.42 577.8 C88.41 575.03 102.97 581.29 102.88 593.34 L102.78 593.68" class="st15"/>
</g>
<g id="shape93-236" v:mID="93" v:groupContext="shape" transform="translate(221.899,727.905) rotate(-165.964)">
<title>Sheet.93</title>
<path d="M0 606.51 C15.17 612.77 29.52 612.61 44.18 611.2 C63.42 609.36 83.21 605.38 102.5 605.92 L102.86 605.95"
class="st48"/>
</g>
<g id="shape99-241" v:mID="99" v:groupContext="shape" transform="translate(139.354,700.857) rotate(-157.751)">
<title>Sheet.99</title>
<path d="M0 606.51 C14.58 612.77 28.36 612.61 42.45 611.2 C60.82 609.37 79.72 605.43 98.14 605.91 L98.5 605.94"
class="st48"/>
</g>
<g id="shape100-246" v:mID="100" v:groupContext="shape" transform="translate(5.09146,624.711) rotate(-143.13)">
<title>Sheet.100</title>
<path d="M0 606.51 C12.27 612.77 23.86 612.61 35.72 611.2 C50.71 609.43 66.12 605.66 81.18 605.88 L81.54 605.91"
class="st49"/>
</g>
<g id="shape108-252" v:mID="108" v:groupContext="shape" v:layerMember="0"
transform="translate(-63.7494,572.249) rotate(-135)">
<title>Wavy connector 2</title>
<v:userDefs>
<v:ud v:nameU="Scale" v:val="VT0(1):26"/>
<v:ud v:nameU="AntiScale" v:val="VT0(1):26"/>
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
</v:userDefs>
<path d="M0 612 L11.04 616.08 L21.88 618.76 L32.52 620.05 L51.73 619.09 L60.91 617.82 L70.5 616.14 L80.5 614.04 L80.85
613.96" class="st51"/>
</g>
<g id="shape128-258" v:mID="128" v:groupContext="shape" transform="translate(74.6891,-268.274) rotate(-20.6744)">
<title>Sheet.128</title>
<path d="M7.05 596.86 L7.3 596.6 C41.41 565.41 84.23 581.81 125.37 593.78 C147.72 600.28 169.57 605.47 191.7 609.19 C205.94
611.58 220.3 613.37 234.93 610.75 L235.27 610.64" class="st53"/>
</g>
<g id="shape129-266" v:mID="129" v:groupContext="shape" transform="translate(913.572,626.328) rotate(137.291)">
<title>Sheet.129</title>
<path d="M0 570.67 C12.35 560.49 25.47 555.25 38.41 555.6 C60.3 556.19 81.63 572.81 103.52 591.21 C116.04 601.73 128.75
612.82 140.98 612 C156.61 610.95 171.47 590.42 165.19 577.2 L164.94 576.93" class="st22"/>
</g>
<g id="shape130-271" v:mID="130" v:groupContext="shape" transform="translate(961.972,521.508) rotate(125.838)">
<title>Sheet.130</title>
<path d="M0 537.17 C5.61 533.31 11.98 533.39 17.86 534.13 C66.05 540.21 81.59 590.84 108.93 606.62 C129.47 618.49 156.66
610.69 176.83 592.27 C191.47 578.9 202.41 559.94 201.92 545.76 L201.83 545.41" class="st22"/>
</g>
<g id="shape141-276" v:mID="141" v:groupContext="shape" transform="translate(524.018,816.193) rotate(-153.905)">
<title>Sheet.141</title>
<path d="M0 558.08 C-1.1 562.68 -4.17 567.34 -5.65 572.12 C-8.55 581.49 -5.37 591.37 -0.33 598.33 C22.05 629.26 81.08
602.84 124.62 577.22 C154.8 559.45 177.54 542.06 207.45 539.15 C220.74 537.86 235.46 539.43 242.28 549.86
L242.41 550.2" class="st22"/>
</g>
<g id="shape142-281" v:mID="142" v:groupContext="shape" transform="translate(24.75,-556.75)">
<title>Sheet.142</title>
<rect x="0" y="604.5" width="22.5" height="7.5" class="st6"/>
</g>
<g id="shape143-283" v:mID="143" v:groupContext="shape" transform="translate(24.75,-539.5)">
<title>Sheet.143</title>
<rect x="0" y="604.5" width="22.5" height="7.5" class="st3"/>
</g>
<g id="shape144-285" v:mID="144" v:groupContext="shape" transform="translate(24.75,-521.5)">
<title>Sheet.144</title>
<rect x="0" y="604.5" width="22.5" height="7.5" class="st11"/>
</g>
<g id="shape145-287" v:mID="145" v:groupContext="shape" transform="translate(22.5,-506.5)">
<title>Sheet.145</title>
<path d="M6.41 612 L6.77 612 L20.23 612" class="st54"/>
</g>
<g id="shape147-296" v:mID="147" v:groupContext="shape" transform="translate(52.25,-551.5)">
<title>Sheet.147</title>
<desc>EDKII Open Source</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76" cy="602" width="152" height="20"/>
<rect x="0" y="592" width="152" height="20" class="st28"/>
<text x="4" y="605.6" class="st38" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>EDKII Open Source</text> </g>
<g id="shape148-299" v:mID="148" v:groupContext="shape" transform="translate(51.75,-533.5)">
<title>Sheet.148</title>
<desc>Other Open Source</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76" cy="602" width="152" height="20"/>
<rect x="0" y="592" width="152" height="20" class="st28"/>
<text x="4" y="605.6" class="st38" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>Other Open Source</text> </g>
<g id="shape149-302" v:mID="149" v:groupContext="shape" transform="translate(51.75,-515.5)">
<title>Sheet.149</title>
<desc>OEM EDKII Library</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76" cy="602" width="152" height="20"/>
<rect x="0" y="592" width="152" height="20" class="st28"/>
<text x="4" y="605.6" class="st38" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>OEM EDKII Library</text> </g>
<g id="shape150-305" v:mID="150" v:groupContext="shape" transform="translate(51.75,-496.5)">
<title>Sheet.150</title>
<desc>Redfish Payload Flow</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="76" cy="602" width="152" height="20"/>
<rect x="0" y="592" width="152" height="20" class="st28"/>
<text x="4" y="605.6" class="st38" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>Redfish Payload Flow</text> </g>
<g id="shape151-308" v:mID="151" v:groupContext="shape" transform="translate(461.424,927.834) rotate(155.556)">
<title>Sheet.151</title>
<path d="M0 603.97 C7.28 610.16 18.09 613.87 26.44 611.05 C35.57 607.96 41.76 597.08 50.21 600.96 L50.5 601.17"
class="st56"/>
</g>
<g id="shape153-314" v:mID="153" v:groupContext="shape" transform="translate(711.673,514.612) rotate(99.4623)">
<title>Sheet.153</title>
<path d="M0 612 L7.15 612" class="st58"/>
</g>
<g id="shape154-320" v:mID="154" v:groupContext="shape" transform="translate(-161.042,-388.162) rotate(-39.2894)">
<title>Sheet.154</title>
<path d="M0 612 L21.32 612" class="st60"/>
</g>
<g id="shape155-323" v:mID="155" v:groupContext="shape" transform="translate(162,-499.5)">
<title>Rounded Rectangle.82</title>
<v:userDefs>
<v:ud v:nameU="CTypeTopLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeTopRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CornerLockHoriz" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockVert" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockDiag" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
</v:userDefs>
<path d="M4.7 612 L103.3 612 A4.69558 4.69558 -180 0 0 108 607.3 L108 589.7 A4.69558 4.69558 -180 0 0 103.3 585 L4.7
585 A4.69558 4.69558 -180 0 0 0 589.7 L0 607.3 A4.69558 4.69558 -180 0 0 4.7 612 Z" class="st12"/>
</g>
<g id="shape156-325" v:mID="156" v:groupContext="shape" transform="translate(153,-486)">
<title>Rounded Rectangle.83</title>
<desc>EDKII Redfish Config Handler Protocol</desc>
<v:userDefs>
<v:ud v:nameU="CTypeTopLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeTopRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotLeftSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CTypeBotRightSnip" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="CornerLockHoriz" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockVert" v:prompt="" v:val="VT0(1):5"/>
<v:ud v:nameU="CornerLockDiag" v:prompt="" v:val="VT0(0):5"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.15):1"/>
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
<v:ud v:nameU="TopLeftOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="TopRightOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="BotLeftOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
<v:ud v:nameU="BotRightOffset" v:prompt="" v:val="VT0(0.065217391304348):1"/>
</v:userDefs>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="54" cy="598.5" width="108" height="27"/>
<path d="M4.7 612 L103.3 612 A4.69558 4.69558 -180 0 0 108 607.3 L108 589.7 A4.69558 4.69558 -180 0 0 103.3 585 L4.7
585 A4.69558 4.69558 -180 0 0 0 589.7 L0 607.3 A4.69558 4.69558 -180 0 0 4.7 612 Z" class="st12"/>
<text x="13.06" y="595.5" class="st61" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>EDKII Redfish Config <tspan
x="19.55" dy="1.2em" class="st9">Handler Protocol</tspan></text> </g>
<g id="shape157-329" v:mID="157" v:groupContext="shape" transform="translate(24.75,-315)">
<title>Sheet.157</title>
<desc>[1]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="11.25" cy="602" width="22.5" height="20"/>
<rect x="0" y="592" width="22.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[1]</text> </g>
<g id="shape158-332" v:mID="158" v:groupContext="shape" transform="translate(24.75,-360)">
<title>Sheet.158</title>
<desc>[2]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="11.25" cy="602" width="22.5" height="20"/>
<rect x="0" y="592" width="22.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[2]</text> </g>
<g id="shape159-335" v:mID="159" v:groupContext="shape" transform="translate(207,-250)">
<title>Sheet.159</title>
<desc>[3]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="11.25" cy="602" width="22.5" height="20"/>
<rect x="0" y="592" width="22.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[3]</text> </g>
<g id="shape160-338" v:mID="160" v:groupContext="shape" transform="translate(207,-188)">
<title>Sheet.160</title>
<desc>[4]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="11.25" cy="602" width="22.5" height="20"/>
<rect x="0" y="592" width="22.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[4]</text> </g>
<g id="shape161-341" v:mID="161" v:groupContext="shape" transform="translate(562.5,-250)">
<title>Sheet.161</title>
<desc>[5]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="11.25" cy="602" width="22.5" height="20"/>
<rect x="0" y="592" width="22.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[5]</text> </g>
<g id="shape162-344" v:mID="162" v:groupContext="shape" transform="translate(562.5,-54)">
<title>Sheet.162</title>
<desc>[6]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="11.25" cy="602" width="22.5" height="20"/>
<rect x="0" y="592" width="22.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[6]</text> </g>
<g id="shape163-347" v:mID="163" v:groupContext="shape" transform="translate(207,-75.5)">
<title>Sheet.163</title>
<desc>[7]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="11.25" cy="602" width="22.5" height="20"/>
<rect x="0" y="592" width="22.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[7]</text> </g>
<g id="shape164-350" v:mID="164" v:groupContext="shape" transform="translate(562.5,-142)">
<title>Sheet.164</title>
<desc>[8]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="11.25" cy="602" width="22.5" height="20"/>
<rect x="0" y="592" width="22.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[8]</text> </g>
<g id="shape165-353" v:mID="165" v:groupContext="shape" transform="translate(562.5,-306)">
<title>Sheet.165</title>
<desc>[9]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="11.25" cy="602" width="22.5" height="20"/>
<rect x="0" y="592" width="22.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[9]</text> </g>
<g id="shape166-356" v:mID="166" v:groupContext="shape" transform="translate(612,-259)">
<title>Sheet.166</title>
<desc>[10]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[10]</text> </g>
<g id="shape167-359" v:mID="167" v:groupContext="shape" transform="translate(612,-196)">
<title>Sheet.167</title>
<desc>[11]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[11]</text> </g>
<g id="shape168-362" v:mID="168" v:groupContext="shape" transform="translate(560.25,-189)">
<title>Sheet.168</title>
<desc>[12]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[12]</text> </g>
<g id="shape169-365" v:mID="169" v:groupContext="shape" transform="translate(207,-313)">
<title>Sheet.169</title>
<desc>[13]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[13]</text> </g>
<g id="shape170-368" v:mID="170" v:groupContext="shape" transform="translate(612,-318.5)">
<title>Sheet.170</title>
<desc>[14]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[14]</text> </g>
<g id="shape171-371" v:mID="171" v:groupContext="shape" transform="translate(139.5,-422)">
<title>Sheet.171</title>
<desc>[15]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[15]</text> </g>
<g id="shape172-374" v:mID="172" v:groupContext="shape" transform="translate(135,-511)">
<title>Sheet.172</title>
<desc>[16]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[16]</text> </g>
<g id="shape173-377" v:mID="173" v:groupContext="shape" transform="translate(326.25,-557)">
<title>Sheet.173</title>
<desc>[17]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[17]</text> </g>
<g id="shape174-380" v:mID="174" v:groupContext="shape" transform="translate(54,-225)">
<title>Sheet.174</title>
<desc>[18]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[18]</text> </g>
<g id="shape175-383" v:mID="175" v:groupContext="shape" transform="translate(895.5,-295)">
<title>Sheet.175</title>
<desc>[19]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[19]</text> </g>
<g id="shape176-386" v:mID="176" v:groupContext="shape" transform="translate(612,-99)">
<title>Sheet.176</title>
<desc>[20]</desc>
<v:textBlock v:margins="rect(4,4,4,4)"/>
<v:textRect cx="15.75" cy="602" width="31.5" height="20"/>
<rect x="0" y="592" width="31.5" height="20" class="st28"/>
<text x="4" y="605.39" class="st62" v:langID="1033"><v:paragraph v:bulletSize="0.166667"/><v:tabList/>[20]</text> </g>
</g>
</svg>
|