-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxw实体模块(软件)部署.drawio
More file actions
1940 lines (1940 loc) · 216 KB
/
xw实体模块(软件)部署.drawio
File metadata and controls
1940 lines (1940 loc) · 216 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" version="25.0.1" pages="24">
<diagram id="3S1Ai9-wjpg00jcp9o5-" name="数据接收与分发软件">
<mxGraphModel dx="1502" dy="556" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="yEhbQgY-T_ewudgxMeIW-248" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;dashed=1;" parent="1" vertex="1">
<mxGeometry x="164.75" y="1360" width="770" height="230" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-89" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;dashed=1;" parent="1" vertex="1">
<mxGeometry x="220" y="90" width="770" height="210" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-3" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="300" y="110" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-4" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="324" y="119" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-8" value="app: drcd-drcsd-sdr" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="329.5" y="130" width="109" height="20" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-10" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-sdr01</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="293.75" y="211" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-15" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="336" y="165" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-29" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="250.25" y="469" width="340" height="160" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-30" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="262.75" y="488" width="97" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-31" value="app: drcd-drcsd" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="269.75" y="498" width="87" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-32" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-1to10</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="298.25" y="588" width="230" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-33" value="Pod-0<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="278.5" y="527" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-48" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="220" y="380" width="770" height="51" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-49" value="Service(服务)<br>drcd-drcsd" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="543.5" y="390.5" width="115" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-50" value="app: drcd-drcsd" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="851" y="396" width="100" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-79" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="517" y="110" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-80" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="541" y="119" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-81" value="app: drcd-drcsd-sdr" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="546.5" y="130" width="109" height="20" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-82" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-sdr02</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="510.75" y="211" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-83" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="553" y="165" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-84" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="726.25" y="110" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-85" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="750.25" y="119" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-86" value="app: drcd-drcsd-sdr" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="755.75" y="130" width="109" height="20" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-87" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-sdr03</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="720" y="211" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-88" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="762.25" y="165" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-90" value="天基回传工作负载" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="573" y="263" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-92" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="369.75" y="488" width="97" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-93" value="app: drcd-drcsd" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="376.75" y="498" width="87" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-94" value="Pod-1<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="385.5" y="527" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-95" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="484" y="488" width="97" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-96" value="app: drcd-drcsd" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="491" y="498" width="87" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-97" value="Pod-2<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="499.75" y="527" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-98" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="619.75" y="469" width="340" height="160" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-99" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="632.25" y="488" width="97" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-100" value="app: drcd-drcsd" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="639.25" y="498" width="87" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-101" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-11to20</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="667.75" y="588" width="230" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-102" value="Pod-0<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="648" y="527" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-103" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="739.25" y="488" width="97" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-104" value="app: drcd-drcsd" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="746.25" y="498" width="87" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-105" value="Pod-1<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="755" y="527" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-106" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="853.5" y="488" width="97" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-107" value="app: drcd-drcsd" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="860.5" y="498" width="87" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-108" value="Pod-2<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="869.25" y="527" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-113" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;dashed=1;" parent="1" vertex="1">
<mxGeometry x="1040" y="90" width="670" height="210" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-114" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="1070" y="110" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-115" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="1094" y="119" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-116" value="app:drcd-drcsd-sbdd" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="1099.5" y="130" width="109" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-117" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-sbdd01</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1063.75" y="211" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-118" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1106" y="165" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-119" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="1287" y="110" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-120" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="1311" y="119" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-122" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-sbdd02</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1280.75" y="211" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-123" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1323" y="165" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-124" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="1496.25" y="110" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-125" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="1520.25" y="119" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-127" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-sbdd03</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1490" y="211" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-128" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1532.25" y="165" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-129" value="天基下泄工作负载" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1343" y="263" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-130" value="app:drcd-drcsd-sbdd" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="1316.5" y="130" width="109" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-131" value="app:drcd-drcsd-sbdd" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="1525.75" y="130" width="109" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-132" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="1070" y="479.5" width="340" height="160" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-133" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="1080.5" y="494.5" width="97" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-134" value="app:drcd-drcsd-obs" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="1085.5" y="502.5" width="87" height="32" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-135" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-obs</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1116" y="594.5" width="230" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-136" value="Pod<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1096.25" y="533.5" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-143" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;dashed=1;" parent="1" vertex="1">
<mxGeometry x="220" y="449" width="770" height="231" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-144" value="天基数据分组<br>工作负载" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="561.5" y="640" width="79" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-145" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="1195.5" y="494.5" width="97" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-146" value="app:drcd-drcsd-obs" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="1200.5" y="501.5" width="87" height="32" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-147" value="Pod<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1211.25" y="533.5" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-148" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="1307" y="494.5" width="97" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-149" value="app:drcd-drcsd-obs" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="1312" y="500.5" width="87" height="32" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-150" value="Pod<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1322.75" y="533.5" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-151" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;dashed=1;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" parent="1" vertex="1">
<mxGeometry x="1040" y="449" width="410" height="231" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-153" value="a.out应用程序<br>工作负载" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1200.5" y="646" width="79" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-154" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;dashed=1;" parent="1" vertex="1">
<mxGeometry x="170.5" y="880" width="770" height="210" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-155" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="250.5" y="900" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-156" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="274.5" y="909" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-157" value="app:drcd-drcsd-rtt" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="280" y="920" width="109" height="20" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-158" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-rtt01</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="244.25" y="1001" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-159" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="286.5" y="955" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-160" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="467.5" y="900" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-161" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="491.5" y="909" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-162" value="app:drcd-drcsd-rtt" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="497" y="920" width="109" height="20" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-163" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-rtt02</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="461.25" y="1001" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-164" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="503.5" y="955" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-165" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="676.75" y="900" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-166" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="700.75" y="909" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-167" value="app:drcd-drcsd-rtt" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="706.25" y="920" width="109" height="20" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-168" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-rtt03</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="670.5" y="1001" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-169" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="712.75" y="955" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-170" value="遥测实时<br>工作负载" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="523.5" y="1053" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-171" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;dashed=1;" parent="1" vertex="1">
<mxGeometry x="166.5" y="1125" width="770" height="210" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-172" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="246.5" y="1145" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-173" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="270.5" y="1154" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-174" value="app:drcd-drcsd-td" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="276" y="1165" width="109" height="20" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-175" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-td01</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="240.25" y="1246" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-176" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="282.5" y="1200" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-177" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="463.5" y="1145" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-178" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="487.5" y="1154" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-179" value="app:drcd-drcsd-td" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="493" y="1165" width="109" height="20" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-180" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-td02</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="457.25" y="1246" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-181" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="499.5" y="1200" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-182" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="672.75" y="1145" width="170" height="140" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-183" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="696.75" y="1154" width="120" height="85" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-184" value="app:drcd-drcsd-td" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="702.25" y="1165" width="109" height="20" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-185" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-td03</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="666.5" y="1246" width="180.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-186" value="Pod(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="708.75" y="1200" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-187" value="遥测时延<br>工作负载" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="519.5" y="1298" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-212" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="197.25" y="1379" width="319.75" height="160" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-213" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="235.75" y="1405" width="107.25" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-214" value="app:drcd-drcsd-fw" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="239.75" y="1415" width="100.25" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-215" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-fw-1to10</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="239" y="1499" width="230" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-216" value="Pod-0<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="257.13" y="1444" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-235" value="File Writer数据分组<br>工作负载" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="475.25" y="1550" width="118.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-236" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="362.5" y="1405" width="107.25" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-237" value="app:drcd-drcsd-fw" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="366.5" y="1415" width="100.25" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-238" value="Pod-1<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="383.88" y="1444" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-239" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="561.25" y="1379" width="319.75" height="160" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-240" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="599.75" y="1405" width="107.25" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-241" value="app:drcd-drcsd-fw" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="603.75" y="1415" width="100.25" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-242" value="<div>工作负载</div><div><span style="font-size:12.0pt;mso-bidi-font-size:<br/>10.0pt;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;<br/>mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">drcd-drcsd-fw-11to20</span></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="603" y="1499" width="230" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-243" value="Pod-0<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="621.13" y="1444" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-244" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="726.5" y="1405" width="107.25" height="81" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-245" value="app:drcd-drcsd-fw" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="730.5" y="1415" width="100.25" height="18" as="geometry" />
</mxCell>
<mxCell id="yEhbQgY-T_ewudgxMeIW-246" value="Pod-1<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="747.88" y="1444" width="65.5" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="数据发送软件" id="1pDpwJhHvxJRaniciHu5">
<mxGraphModel dx="1434" dy="738" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="BQRov2wbgLoB2eI2ybDL-0" />
<mxCell id="BQRov2wbgLoB2eI2ybDL-1" parent="BQRov2wbgLoB2eI2ybDL-0" />
<mxCell id="BQRov2wbgLoB2eI2ybDL-2" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="BQRov2wbgLoB2eI2ybDL-1">
<mxGeometry x="228.75" y="230" width="340" height="320" as="geometry" />
</mxCell>
<mxCell id="BQRov2wbgLoB2eI2ybDL-3" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="BQRov2wbgLoB2eI2ybDL-1">
<mxGeometry x="290" y="277" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="BQRov2wbgLoB2eI2ybDL-4" value="工作负载名称(DSd-DRcSd)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="BQRov2wbgLoB2eI2ybDL-1">
<mxGeometry x="310" y="387" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="BQRov2wbgLoB2eI2ybDL-5" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=9;" vertex="1" parent="BQRov2wbgLoB2eI2ybDL-1">
<mxGeometry x="368.02" y="298" width="61.46" height="59" as="geometry" />
</mxCell>
<mxCell id="BQRov2wbgLoB2eI2ybDL-6" value="<span style="font-size: 10.5pt; line-height: 125%; font-family: 宋体;"><span style="font-size: 10.5pt; line-height: 125%;">数据发送软件</span><br>(软件配置项)</span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" vertex="1" parent="BQRov2wbgLoB2eI2ybDL-1">
<mxGeometry x="324.75" y="510" width="148" height="30" as="geometry" />
</mxCell>
<mxCell id="BQRov2wbgLoB2eI2ybDL-7" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="BQRov2wbgLoB2eI2ybDL-1">
<mxGeometry x="268.75" y="260" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="BQRov2wbgLoB2eI2ybDL-8" value="数据接收与转发软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="BQRov2wbgLoB2eI2ybDL-1">
<mxGeometry x="338.75" y="437" width="120" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="近极轨基于星地星间的卫星精密轨道与钟差确定软件" id="--0RVzm7nZ2oGXB08Fx9">
<mxGraphModel dx="1687" dy="868" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="Z6uRRBzNyPhB0YjEECRh-0" />
<mxCell id="Z6uRRBzNyPhB0YjEECRh-1" parent="Z6uRRBzNyPhB0YjEECRh-0" />
<mxCell id="Z6uRRBzNyPhB0YjEECRh-2" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="110" y="140" width="987.46" height="590" as="geometry" />
</mxCell>
<mxCell id="jCJ7dbCkGFMqhsOpQjCL-7" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="455.25" y="173" width="554.75" height="207" as="geometry" />
</mxCell>
<mxCell id="Z6uRRBzNyPhB0YjEECRh-7" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="164" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-5" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="455.25" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="Z6uRRBzNyPhB0YjEECRh-3" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="185.25" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="Z6uRRBzNyPhB0YjEECRh-4" value="工作负载名称<br>NPOISGPOC-LOTD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="197.75" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="Z6uRRBzNyPhB0YjEECRh-5" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="205.25" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="Z6uRRBzNyPhB0YjEECRh-6" value="<span style="font-size: 10.5pt; line-height: 125%; font-family: 宋体;">近极轨基于星地星间的卫星精密轨道与钟差确定软件<br>(软件配置项)</span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="394.06" y="680" width="379.87" height="40" as="geometry" />
</mxCell>
<mxCell id="Z6uRRBzNyPhB0YjEECRh-8" value="低轨卫星独立定轨定时处理软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="234" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-0" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="267.96" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-1" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="335.25" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-2" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="476.5" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-3" value="工作负载名称<br>NPOISGPOC-ISLTS" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="489" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-4" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="496.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-6" value="实时星间双向时间同步软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="525.25" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-7" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="559.21" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-8" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="626.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-9" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="745.25" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-10" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="766.5" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-11" value="工作负载名称<br>NPOISGPOC-CSS" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="779" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-12" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="786.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-13" value="LEO卫星钟小步调频软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="815.25" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-14" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="849.21" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-15" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="916.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-16" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="164" y="173" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-17" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="185.25" y="181.5" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-18" value="工作负载名称<br>NPOISGPOC-LSPOD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="197.75" y="291.5" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-19" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="205.25" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-20" value="低轨卫星单星动力学/运动学定轨及星历参数生成软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="216.63" y="343" width="154.75" height="30" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-21" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="267.96000000000004" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="lkSvQUNPede0XeDhwE9I-22" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="335.25" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="jCJ7dbCkGFMqhsOpQjCL-8" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="489" y="194.5" width="190" height="150" as="geometry" />
</mxCell>
<mxCell id="jCJ7dbCkGFMqhsOpQjCL-9" value="工作负载名称<br>NPOISGPOC-LSPOD-Master" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="493.38" y="304.5" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="jCJ7dbCkGFMqhsOpQjCL-10" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="563.59" y="215.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="jCJ7dbCkGFMqhsOpQjCL-11" value="星地双向时间同步软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="645.25" y="350" width="154.75" height="30" as="geometry" />
</mxCell>
<mxCell id="jCJ7dbCkGFMqhsOpQjCL-22" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="776.81" y="194.5" width="190" height="150" as="geometry" />
</mxCell>
<mxCell id="jCJ7dbCkGFMqhsOpQjCL-23" value="工作负载名称<br>NPOISGPOC-LSPOD-Slave" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="781.19" y="304.5" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="jCJ7dbCkGFMqhsOpQjCL-24" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="851.4000000000001" y="215.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="jCJ7dbCkGFMqhsOpQjCL-25" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0.001;entryY=0.563;entryDx=0;entryDy=0;entryPerimeter=0;dashed=1;" edge="1" parent="Z6uRRBzNyPhB0YjEECRh-1" target="jCJ7dbCkGFMqhsOpQjCL-22">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="680" y="280" as="sourcePoint" />
<mxPoint x="770" y="370" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Al8w0X3DRsAPJaxMgBXq-0" value="主备切换机制" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="Z6uRRBzNyPhB0YjEECRh-1">
<mxGeometry x="702.63" y="290" width="60" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="近极轨基于星载GNSS的卫星精密轨道与钟差确定软件" id="6yxDPHgW-SkGCe7wE9KQ">
<mxGraphModel dx="1434" dy="738" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="D0u8mJZeue2FwGdXkEh8-0" />
<mxCell id="D0u8mJZeue2FwGdXkEh8-1" parent="D0u8mJZeue2FwGdXkEh8-0" />
<mxCell id="D0u8mJZeue2FwGdXkEh8-2" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="110" y="140" width="987.46" height="590" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-3" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="455.25" y="174" width="264.75" height="207" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-4" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="164" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-5" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="455.25" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-6" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="185.25" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-7" value="工作负载名称<br>NPOGPOC-LOTD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="197.75" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-8" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="205.25" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-9" value="<span style="font-size: 10.5pt; line-height: 125%; font-family: 宋体;">近极轨基于星载GNSS的卫星精密轨道与钟差确定软件<br>(软件配置项)</span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="394.06" y="680" width="379.87" height="40" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-10" value="低轨卫星独立定轨定时处理软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="234" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-11" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="267.96" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-12" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="335.25" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-13" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="476.5" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-14" value="工作负载名称<br>NPOGPOC-IPOD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="489" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-15" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="496.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-16" value="高低轨卫星联合定轨软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="525.25" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-17" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="559.21" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-18" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="626.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-19" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="745.25" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-20" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="766.5" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-21" value="工作负载名称<br>NPOGPOC-CSS" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="779" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-22" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="786.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-23" value="LEO卫星钟小步调频软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="815.25" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-24" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="849.21" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-25" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="916.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-26" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="164" y="173" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-27" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="185.25" y="181.5" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-28" value="工作负载名称<br>NPOGPOC-LSPOD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="197.75" y="291.5" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-29" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="205.25" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-30" value="低轨卫星单星动力学/运动学定轨及星历参数生成软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="216.63" y="343" width="154.75" height="30" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-31" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="267.96000000000004" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-32" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="335.25" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-33" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="489" y="194.5" width="190" height="150" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-34" value="工作负载名称<br>NPOGPOC-SPODT" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="493.38" y="304.5" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-35" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="563.59" y="215.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="D0u8mJZeue2FwGdXkEh8-36" value="北斗/GNSS实时低轨单星钟差解算及预报软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="D0u8mJZeue2FwGdXkEh8-1">
<mxGeometry x="506.62" y="350" width="154.75" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="倾斜轨基于星地星间的卫星精密轨道与钟差确定软件" id="OYY412V6w20IytDITBDT">
<mxGraphModel dx="1434" dy="738" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-0" />
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-1" parent="0-x4bGdiU32KQZ6Gqq-I-0" />
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-2" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="110" y="140" width="987.46" height="590" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-3" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="455.25" y="173" width="554.75" height="207" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-4" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="164" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-5" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="455.25" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-6" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="185.25" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-7" value="工作负载名称<br><span style="font-size:10.5pt;line-height:<br/>125%;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;mso-ansi-language:<br/>EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">INOISGPOC</span>-LOTD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="197.75" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-8" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="205.25" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-9" value="<span style="font-size: 10.5pt; line-height: 125%; font-family: 宋体;">倾斜轨基于星地星间的卫星精密轨道与钟差确定软件<br>(软件配置项)</span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="394.06" y="680" width="379.87" height="40" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-10" value="低轨卫星独立定轨定时处理软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="234" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-11" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="267.96" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-12" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="335.25" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-13" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="476.5" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-14" value="工作负载名称<br><span style="font-size:10.5pt;line-height:<br/>125%;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;mso-ansi-language:<br/>EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">INOISGPOC</span>-ISLTS" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="489" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-15" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="496.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-16" value="实时星间双向时间同步软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="525.25" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-17" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="559.21" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-18" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="626.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-19" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="745.25" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-20" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="766.5" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-21" value="工作负载名称<br><span style="font-size:10.5pt;line-height:<br/>125%;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;mso-ansi-language:<br/>EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">INOISGPOC</span>-CSS" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="779" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-22" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="786.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-23" value="LEO卫星钟小步调频软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="815.25" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-24" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="849.21" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-25" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="916.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-26" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="164" y="173" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-27" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="185.25" y="181.5" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-28" value="工作负载名称<br><span style="font-size:10.5pt;line-height:<br/>125%;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;mso-ansi-language:<br/>EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">INOISGPOC</span>-LSPOD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="197.75" y="291.5" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-29" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="205.25" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-30" value="低轨卫星单星动力学/运动学定轨及星历参数生成软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="216.63" y="343" width="154.75" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-31" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="267.96000000000004" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-32" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="335.25" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-33" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="489" y="194.5" width="190" height="150" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-34" value="工作负载名称<br><span style="font-size:10.5pt;line-height:<br/>125%;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;mso-ansi-language:<br/>EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">INOISGPOC</span>-LSPOD-Master" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="493.38" y="304.5" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-35" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="563.59" y="215.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-36" value="星地双向时间同步软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="645.25" y="350" width="154.75" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-37" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="776.81" y="194.5" width="190" height="150" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-38" value="工作负载名称<br><span style="font-size:10.5pt;line-height:<br/>125%;font-family:&quot;Times New Roman&quot;,serif;mso-fareast-font-family:宋体;mso-ansi-language:<br/>EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA" lang="EN-US">INOISGPOC</span>-LSPOD-Slave" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="781.19" y="304.5" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-39" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="851.4000000000001" y="215.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-40" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0.001;entryY=0.563;entryDx=0;entryDy=0;entryPerimeter=0;dashed=1;" edge="1" parent="0-x4bGdiU32KQZ6Gqq-I-1" target="0-x4bGdiU32KQZ6Gqq-I-37">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="680" y="280" as="sourcePoint" />
<mxPoint x="770" y="370" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="0-x4bGdiU32KQZ6Gqq-I-41" value="主备切换机制" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="0-x4bGdiU32KQZ6Gqq-I-1">
<mxGeometry x="702.63" y="290" width="60" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="倾斜轨基于星载GNSS的卫星精密轨道与钟差确定软件" id="lK4OPVb0EkRPymqi82WV">
<mxGraphModel dx="1434" dy="738" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="93c-luz1XD3W_xgn8etn-0" />
<mxCell id="93c-luz1XD3W_xgn8etn-1" parent="93c-luz1XD3W_xgn8etn-0" />
<mxCell id="93c-luz1XD3W_xgn8etn-2" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="110" y="140" width="987.46" height="590" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-3" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="455.25" y="174" width="264.75" height="207" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-4" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="164" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-5" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="455.25" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-6" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="185.25" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-7" value="工作负载名称<br>INOGPOC-LOTD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="197.75" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-8" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="205.25" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-9" value="<span style="font-size: 10.5pt; line-height: 125%; font-family: 宋体;">倾斜轨基于星载GNSS的卫星精密轨道与钟差确定软件<br>(软件配置项)</span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="394.06" y="680" width="379.87" height="40" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-10" value="低轨卫星独立定轨定时处理软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="234" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-11" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="267.96" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-12" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="335.25" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-13" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="476.5" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-14" value="工作负载名称<br>INOGPOC-IPOD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="489" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-15" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="496.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-16" value="高低轨卫星联合定轨软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="525.25" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-17" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="559.21" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-18" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="626.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-19" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="745.25" y="418.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-20" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="766.5" y="427" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-21" value="工作负载名称<br>INOGPOC-CSS" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="779" y="537" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-22" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="786.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-23" value="LEO卫星钟小步调频软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="815.25" y="592.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-24" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="849.21" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-25" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="916.5" y="448" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-26" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="164" y="173" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-27" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="185.25" y="181.5" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-28" value="工作负载名称<br>INOGPOC-LSPOD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="197.75" y="291.5" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-29" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="205.25" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-30" value="低轨卫星单星动力学/运动学定轨及星历参数生成软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="216.63" y="343" width="154.75" height="30" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-31" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="267.96000000000004" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-32" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="335.25" y="202.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-33" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="489" y="194.5" width="190" height="150" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-34" value="工作负载名称<br>INOGPOC-SPODT" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="493.38" y="304.5" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-35" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="563.59" y="215.5" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="93c-luz1XD3W_xgn8etn-36" value="北斗/GNSS实时低轨单星钟差解算及预报软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="93c-luz1XD3W_xgn8etn-1">
<mxGeometry x="506.62" y="350" width="154.75" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="轨道钟差精度评估公共服务软件" id="GmKQ6uBi-uctMi3aCKqY">
<mxGraphModel dx="1434" dy="1565" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="FNDBj0J3UgpBH8LcenYu-0" />
<mxCell id="FNDBj0J3UgpBH8LcenYu-1" parent="FNDBj0J3UgpBH8LcenYu-0" />
<mxCell id="FNDBj0J3UgpBH8LcenYu-2" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="250" y="-180" width="670" height="370" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-3" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="610" y="-121.5" width="264.75" height="207" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-4" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=none;strokeColor=#6c8ebf;dashed=1;dashPattern=8 8;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="304" y="-121.5" width="260" height="207" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-6" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="325.25" y="-113" width="217.5" height="150" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-7" value="工作负载名称<br>EvaPOC-EVAC" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="337.75" y="-3" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-8" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="345.25" y="-92" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-9" value="<span style="line-height: 125%;"><font face="宋体"><span style="font-size: 14px;">轨道钟差精度评估公共服务软件</span></font><br><font face="宋体"><span style="font-size: 10.5pt;">(软件配置项)</span></font></span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="390.55" y="140" width="379.87" height="40" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-10" value="卫星钟差参数精度评估软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="374" y="52.5" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-11" value="容器副本-2" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="407.96" y="-92" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-12" value="容器副本-3" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="475.25" y="-92" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-33" value="" style="rounded=1;whiteSpace=wrap;html=1;glass=0;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;dashed=1;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="643.75" y="-101" width="190" height="150" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-34" value="工作负载名称<br>EvaPOC-EPOD" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="648.13" y="9" width="192.5" height="30" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-35" value="容器副本-1" style="aspect=fixed;sketch=0;html=1;dashed=0;whitespace=wrap;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#2875E2;strokeColor=#ffffff;points=[[0.005,0.63,0],[0.1,0.2,0],[0.9,0.2,0],[0.5,0,0],[0.995,0.63,0],[0.72,0.99,0],[0.5,1,0],[0.28,0.99,0]];shape=mxgraph.kubernetes.icon2;prIcon=pod;fontSize=10;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="718.34" y="-80" width="52.08" height="50" as="geometry" />
</mxCell>
<mxCell id="FNDBj0J3UgpBH8LcenYu-36" value="北斗/GNSS/低轨轨道产品精度评估软件" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="FNDBj0J3UgpBH8LcenYu-1">
<mxGeometry x="661.37" y="54.5" width="154.75" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="近极轨基于GNSS位置信息的卫星轨道解算软件" id="AdTsi6-15dNIF6TT7wPv">
<mxGraphModel dx="724" dy="360" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="8LwPWDTcZF41rMESMu0d-0" />
<mxCell id="8LwPWDTcZF41rMESMu0d-1" parent="8LwPWDTcZF41rMESMu0d-0" />
<mxCell id="97EzR9foL_oBt4AgplOW-0" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="240" y="380" width="480" height="160" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-1" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="252.75" y="398" width="137.25" height="92" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-2" value="app:npogmoc-ckcgp" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="259.75" y="408" width="120.25" height="22" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-3" value="<div>工作负载</div><div>npogmoc-ckcgp</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="365" y="500" width="230" height="30" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-4" value="Pod<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="288.62" y="450" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-17" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="410" y="398" width="137.25" height="92" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-18" value="app:npogmoc-ckcgp" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="417" y="408" width="120.25" height="22" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-19" value="Pod<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="445.87" y="450" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-20" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="570" y="398" width="137.25" height="92" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-21" value="app:npogmoc-ckcgp" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="577" y="408" width="120.25" height="22" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-22" value="Pod<br>(容器组)" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="605.87" y="450" width="65.5" height="30" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-23" value="" style="rounded=1;whiteSpace=wrap;html=1;dashed=1;fillColor=#eeeeee;strokeColor=#36393d;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="237.12" y="590" width="480" height="160" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-24" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="249.87" y="608" width="137.25" height="92" as="geometry" />
</mxCell>
<mxCell id="97EzR9foL_oBt4AgplOW-25" value="app:npogmoc-ckcwp" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="8LwPWDTcZF41rMESMu0d-1">
<mxGeometry x="256.87" y="618" width="120.25" height="22" as="geometry" />