prosereflect 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/rake.yml +15 -0
  3. data/.github/workflows/release.yml +25 -0
  4. data/.gitignore +12 -0
  5. data/.rubocop.yml +1 -0
  6. data/.rubocop_todo.yml +228 -0
  7. data/CODE_OF_CONDUCT.md +132 -0
  8. data/Gemfile +10 -0
  9. data/README.adoc +268 -0
  10. data/Rakefile +12 -0
  11. data/debug_loading.rb +34 -0
  12. data/lib/prosereflect/document.rb +63 -0
  13. data/lib/prosereflect/hard_break.rb +22 -0
  14. data/lib/prosereflect/node.rb +77 -0
  15. data/lib/prosereflect/paragraph.rb +50 -0
  16. data/lib/prosereflect/parser.rb +56 -0
  17. data/lib/prosereflect/table.rb +64 -0
  18. data/lib/prosereflect/table_cell.rb +37 -0
  19. data/lib/prosereflect/table_row.rb +32 -0
  20. data/lib/prosereflect/text.rb +37 -0
  21. data/lib/prosereflect/version.rb +5 -0
  22. data/lib/prosereflect.rb +17 -0
  23. data/prosereflect.gemspec +33 -0
  24. data/sig/prosemirror.rbs +4 -0
  25. data/spec/fixtures/ituob-1000/ituob-1000-DP.json +366 -0
  26. data/spec/fixtures/ituob-1000/ituob-1000-DP.yaml +182 -0
  27. data/spec/fixtures/ituob-1000/ituob-1000-E118_IIN.json +381 -0
  28. data/spec/fixtures/ituob-1000/ituob-1000-E118_IIN.yaml +182 -0
  29. data/spec/fixtures/ituob-1000/ituob-1000-E164_ACN.json +203 -0
  30. data/spec/fixtures/ituob-1000/ituob-1000-E164_ACN.yaml +98 -0
  31. data/spec/fixtures/ituob-1000/ituob-1000-E212_MNC.json +202 -0
  32. data/spec/fixtures/ituob-1000/ituob-1000-E212_MNC.yaml +101 -0
  33. data/spec/fixtures/ituob-1000/ituob-1000-F32_TDI.json +6948 -0
  34. data/spec/fixtures/ituob-1000/ituob-1000-F32_TDI.yaml +3519 -0
  35. data/spec/fixtures/ituob-1000/ituob-1000-M1400_ICC.json +529 -0
  36. data/spec/fixtures/ituob-1000/ituob-1000-M1400_ICC.yaml +263 -0
  37. data/spec/fixtures/ituob-1000/ituob-1000-NNP.json +288 -0
  38. data/spec/fixtures/ituob-1000/ituob-1000-NNP.yaml +152 -0
  39. data/spec/fixtures/ituob-1000/ituob-1000-Q708_ISPC.json +1534 -0
  40. data/spec/fixtures/ituob-1000/ituob-1000-Q708_ISPC.yaml +789 -0
  41. data/spec/fixtures/ituob-1000/ituob-1000-Q708_SANC.json +252 -0
  42. data/spec/fixtures/ituob-1000/ituob-1000-Q708_SANC.yaml +123 -0
  43. data/spec/fixtures/ituob-1000/ituob-1000-R_SP_LM.V.json +428 -0
  44. data/spec/fixtures/ituob-1000/ituob-1000-R_SP_LM.V.yaml +208 -0
  45. data/spec/fixtures/ituob-1000/ituob-1000-T35_NA.json +621 -0
  46. data/spec/fixtures/ituob-1000/ituob-1000-T35_NA.yaml +317 -0
  47. data/spec/fixtures/ituob-1001/ituob-1001-DP.json +532 -0
  48. data/spec/fixtures/ituob-1001/ituob-1001-DP.yaml +266 -0
  49. data/spec/fixtures/ituob-1001/ituob-1001-E118_IIN.json +1093 -0
  50. data/spec/fixtures/ituob-1001/ituob-1001-E118_IIN.yaml +519 -0
  51. data/spec/fixtures/ituob-1001/ituob-1001-E164_ACN.json +449 -0
  52. data/spec/fixtures/ituob-1001/ituob-1001-E164_ACN.yaml +214 -0
  53. data/spec/fixtures/ituob-1001/ituob-1001-E164_CC.json +271 -0
  54. data/spec/fixtures/ituob-1001/ituob-1001-E164_CC.yaml +136 -0
  55. data/spec/fixtures/ituob-1001/ituob-1001-E212_MNC.json +199 -0
  56. data/spec/fixtures/ituob-1001/ituob-1001-E212_MNC.yaml +99 -0
  57. data/spec/fixtures/ituob-1001/ituob-1001-NNP.json +288 -0
  58. data/spec/fixtures/ituob-1001/ituob-1001-NNP.yaml +152 -0
  59. data/spec/fixtures/ituob-1001/ituob-1001-Q708_ISPC.json +960 -0
  60. data/spec/fixtures/ituob-1001/ituob-1001-Q708_ISPC.yaml +487 -0
  61. data/spec/prosereflect/document_spec.rb +149 -0
  62. data/spec/prosereflect/hard_break_spec.rb +51 -0
  63. data/spec/prosereflect/node_spec.rb +256 -0
  64. data/spec/prosereflect/paragraph_spec.rb +152 -0
  65. data/spec/prosereflect/parser_spec.rb +129 -0
  66. data/spec/prosereflect/table_cell_spec.rb +114 -0
  67. data/spec/prosereflect/table_row_spec.rb +77 -0
  68. data/spec/prosereflect/table_spec.rb +144 -0
  69. data/spec/prosereflect/text_spec.rb +116 -0
  70. data/spec/prosereflect/version_spec.rb +11 -0
  71. data/spec/prosereflect_spec.rb +57 -0
  72. data/spec/spec_helper.rb +21 -0
  73. data/spec/support/matchers.rb +131 -0
  74. data/spec/support/shared_examples.rb +220 -0
  75. metadata +133 -0
@@ -0,0 +1,789 @@
1
+ ---
2
+ type: doc
3
+ content:
4
+ - type: table
5
+ content:
6
+ - type: table_row
7
+ content:
8
+ - type: table_cell
9
+ attrs:
10
+ colspan: 2
11
+ rowspan: 1
12
+ colwidth:
13
+ content:
14
+ - type: paragraph
15
+ content:
16
+ - type: text
17
+ text: Country/ Geographical Area
18
+ - type: table_cell
19
+ attrs:
20
+ colspan: 1
21
+ rowspan: 2
22
+ colwidth:
23
+ content:
24
+ - type: paragraph
25
+ content:
26
+ - type: text
27
+ text: Unique name of the signalling point
28
+ - type: table_cell
29
+ attrs:
30
+ colspan: 1
31
+ rowspan: 2
32
+ colwidth:
33
+ content:
34
+ - type: paragraph
35
+ content:
36
+ - type: text
37
+ text: Name of the signalling point operator
38
+ - type: table_row
39
+ content:
40
+ - type: table_cell
41
+ attrs:
42
+ colspan: 1
43
+ rowspan: 1
44
+ colwidth:
45
+ content:
46
+ - type: paragraph
47
+ content:
48
+ - type: text
49
+ text: ISPC
50
+ - type: table_cell
51
+ attrs:
52
+ colspan: 1
53
+ rowspan: 1
54
+ colwidth:
55
+ content:
56
+ - type: paragraph
57
+ content:
58
+ - type: text
59
+ text: DEC
60
+ - type: table_row
61
+ content:
62
+ - type: table_cell
63
+ attrs:
64
+ colspan: 4
65
+ rowspan: 1
66
+ colwidth:
67
+ content:
68
+ - type: paragraph
69
+ content:
70
+ - type: text
71
+ marks:
72
+ - type: strong
73
+ text: P  34   France    ADD
74
+ - type: table_row
75
+ content:
76
+ - type: table_cell
77
+ attrs:
78
+ colspan: 1
79
+ rowspan: 1
80
+ colwidth:
81
+ content:
82
+ - type: paragraph
83
+ content:
84
+ - type: text
85
+ text: 3-232-0
86
+ - type: table_cell
87
+ attrs:
88
+ colspan: 1
89
+ rowspan: 1
90
+ colwidth:
91
+ content:
92
+ - type: paragraph
93
+ content:
94
+ - type: text
95
+ text: '8000'
96
+ - type: table_cell
97
+ attrs:
98
+ colspan: 1
99
+ rowspan: 1
100
+ colwidth:
101
+ content:
102
+ - type: paragraph
103
+ content:
104
+ - type: text
105
+ text: Omer Telecom Limited - Aubervilliers
106
+ - type: table_cell
107
+ attrs:
108
+ colspan: 1
109
+ rowspan: 1
110
+ colwidth:
111
+ content:
112
+ - type: paragraph
113
+ content:
114
+ - type: text
115
+ text: Omer Telecom Limited
116
+ - type: table_row
117
+ content:
118
+ - type: table_cell
119
+ attrs:
120
+ colspan: 1
121
+ rowspan: 1
122
+ colwidth:
123
+ content:
124
+ - type: paragraph
125
+ content:
126
+ - type: text
127
+ text: 3-232-1
128
+ - type: table_cell
129
+ attrs:
130
+ colspan: 1
131
+ rowspan: 1
132
+ colwidth:
133
+ content:
134
+ - type: paragraph
135
+ content:
136
+ - type: text
137
+ text: '8001'
138
+ - type: table_cell
139
+ attrs:
140
+ colspan: 1
141
+ rowspan: 1
142
+ colwidth:
143
+ content:
144
+ - type: paragraph
145
+ content:
146
+ - type: text
147
+ text: Omer Telecom Limited - Courbevoie
148
+ - type: table_cell
149
+ attrs:
150
+ colspan: 1
151
+ rowspan: 1
152
+ colwidth:
153
+ content:
154
+ - type: paragraph
155
+ content:
156
+ - type: text
157
+ text: Omer Telecom Limited
158
+ - type: table_row
159
+ content:
160
+ - type: table_cell
161
+ attrs:
162
+ colspan: 1
163
+ rowspan: 1
164
+ colwidth:
165
+ content:
166
+ - type: paragraph
167
+ content:
168
+ - type: text
169
+ text: 3-232-2
170
+ - type: table_cell
171
+ attrs:
172
+ colspan: 1
173
+ rowspan: 1
174
+ colwidth:
175
+ content:
176
+ - type: paragraph
177
+ content:
178
+ - type: text
179
+ text: '8002'
180
+ - type: table_cell
181
+ attrs:
182
+ colspan: 1
183
+ rowspan: 1
184
+ colwidth:
185
+ content:
186
+ - type: paragraph
187
+ content:
188
+ - type: text
189
+ text: NRJ Mobile - Aubervilliers 1
190
+ - type: table_cell
191
+ attrs:
192
+ colspan: 1
193
+ rowspan: 1
194
+ colwidth:
195
+ content:
196
+ - type: paragraph
197
+ content:
198
+ - type: text
199
+ text: NRJ Mobile
200
+ - type: table_row
201
+ content:
202
+ - type: table_cell
203
+ attrs:
204
+ colspan: 1
205
+ rowspan: 1
206
+ colwidth:
207
+ content:
208
+ - type: paragraph
209
+ content:
210
+ - type: text
211
+ text: 3-232-3
212
+ - type: table_cell
213
+ attrs:
214
+ colspan: 1
215
+ rowspan: 1
216
+ colwidth:
217
+ content:
218
+ - type: paragraph
219
+ content:
220
+ - type: text
221
+ text: '8003'
222
+ - type: table_cell
223
+ attrs:
224
+ colspan: 1
225
+ rowspan: 1
226
+ colwidth:
227
+ content:
228
+ - type: paragraph
229
+ content:
230
+ - type: text
231
+ text: NRJ Mobile  - Aubervilliers 2
232
+ - type: table_cell
233
+ attrs:
234
+ colspan: 1
235
+ rowspan: 1
236
+ colwidth:
237
+ content:
238
+ - type: paragraph
239
+ content:
240
+ - type: text
241
+ text: NRJ Mobile
242
+ - type: table_row
243
+ content:
244
+ - type: table_cell
245
+ attrs:
246
+ colspan: 1
247
+ rowspan: 1
248
+ colwidth:
249
+ content:
250
+ - type: paragraph
251
+ content:
252
+ - type: text
253
+ text: 6-233-5
254
+ - type: table_cell
255
+ attrs:
256
+ colspan: 1
257
+ rowspan: 1
258
+ colwidth:
259
+ content:
260
+ - type: paragraph
261
+ content:
262
+ - type: text
263
+ text: '14157'
264
+ - type: table_cell
265
+ attrs:
266
+ colspan: 1
267
+ rowspan: 1
268
+ colwidth:
269
+ content:
270
+ - type: paragraph
271
+ content:
272
+ - type: text
273
+ text: Mobiqui Things - Vitry 1
274
+ - type: table_cell
275
+ attrs:
276
+ colspan: 1
277
+ rowspan: 1
278
+ colwidth:
279
+ content:
280
+ - type: paragraph
281
+ content:
282
+ - type: text
283
+ text: Mobiqui Things
284
+ - type: table_row
285
+ content:
286
+ - type: table_cell
287
+ attrs:
288
+ colspan: 1
289
+ rowspan: 1
290
+ colwidth:
291
+ content:
292
+ - type: paragraph
293
+ content:
294
+ - type: text
295
+ text: 6-233-6
296
+ - type: table_cell
297
+ attrs:
298
+ colspan: 1
299
+ rowspan: 1
300
+ colwidth:
301
+ content:
302
+ - type: paragraph
303
+ content:
304
+ - type: text
305
+ text: '14158'
306
+ - type: table_cell
307
+ attrs:
308
+ colspan: 1
309
+ rowspan: 1
310
+ colwidth:
311
+ content:
312
+ - type: paragraph
313
+ content:
314
+ - type: text
315
+ text: Alpha Com - Clichy
316
+ - type: table_cell
317
+ attrs:
318
+ colspan: 1
319
+ rowspan: 1
320
+ colwidth:
321
+ content:
322
+ - type: paragraph
323
+ content:
324
+ - type: text
325
+ text: Alpha Com
326
+ - type: table_row
327
+ content:
328
+ - type: table_cell
329
+ attrs:
330
+ colspan: 1
331
+ rowspan: 1
332
+ colwidth:
333
+ content:
334
+ - type: paragraph
335
+ content:
336
+ - type: text
337
+ text: 6-233-7
338
+ - type: table_cell
339
+ attrs:
340
+ colspan: 1
341
+ rowspan: 1
342
+ colwidth:
343
+ content:
344
+ - type: paragraph
345
+ content:
346
+ - type: text
347
+ text: '14159'
348
+ - type: table_cell
349
+ attrs:
350
+ colspan: 1
351
+ rowspan: 1
352
+ colwidth:
353
+ content:
354
+ - type: paragraph
355
+ content:
356
+ - type: text
357
+ text: Mobiqui Things - Vitry 2
358
+ - type: table_cell
359
+ attrs:
360
+ colspan: 1
361
+ rowspan: 1
362
+ colwidth:
363
+ content:
364
+ - type: paragraph
365
+ content:
366
+ - type: text
367
+ text: Mobiqui Things
368
+ - type: table_row
369
+ content:
370
+ - type: table_cell
371
+ attrs:
372
+ colspan: 4
373
+ rowspan: 1
374
+ colwidth:
375
+ content:
376
+ - type: paragraph
377
+ content:
378
+ - type: text
379
+ marks:
380
+ - type: strong
381
+ text: P  102   Sweden    ADD
382
+ - type: table_row
383
+ content:
384
+ - type: table_cell
385
+ attrs:
386
+ colspan: 1
387
+ rowspan: 1
388
+ colwidth:
389
+ content:
390
+ - type: paragraph
391
+ content:
392
+ - type: text
393
+ text: 6-229-0
394
+ - type: table_cell
395
+ attrs:
396
+ colspan: 1
397
+ rowspan: 1
398
+ colwidth:
399
+ content:
400
+ - type: paragraph
401
+ content:
402
+ - type: text
403
+ text: '14120'
404
+ - type: table_cell
405
+ attrs:
406
+ colspan: 1
407
+ rowspan: 1
408
+ colwidth:
409
+ content:
410
+ - type: paragraph
411
+ content:
412
+ - type: text
413
+ text: MISTH-3
414
+ - type: table_cell
415
+ attrs:
416
+ colspan: 1
417
+ rowspan: 1
418
+ colwidth:
419
+ content:
420
+ - type: paragraph
421
+ content:
422
+ - type: text
423
+ text: Mercury International Carrier Services
424
+ - type: table_row
425
+ content:
426
+ - type: table_cell
427
+ attrs:
428
+ colspan: 1
429
+ rowspan: 1
430
+ colwidth:
431
+ content:
432
+ - type: paragraph
433
+ content:
434
+ - type: text
435
+ text: 6-229-1
436
+ - type: table_cell
437
+ attrs:
438
+ colspan: 1
439
+ rowspan: 1
440
+ colwidth:
441
+ content:
442
+ - type: paragraph
443
+ content:
444
+ - type: text
445
+ text: '14121'
446
+ - type: table_cell
447
+ attrs:
448
+ colspan: 1
449
+ rowspan: 1
450
+ colwidth:
451
+ content:
452
+ - type: paragraph
453
+ content:
454
+ - type: text
455
+ text: MISTH-4
456
+ - type: table_cell
457
+ attrs:
458
+ colspan: 1
459
+ rowspan: 1
460
+ colwidth:
461
+ content:
462
+ - type: paragraph
463
+ content:
464
+ - type: text
465
+ text: Mercury International Carrier Services
466
+ - type: table_row
467
+ content:
468
+ - type: table_cell
469
+ attrs:
470
+ colspan: 4
471
+ rowspan: 1
472
+ colwidth:
473
+ content:
474
+ - type: paragraph
475
+ content:
476
+ - type: text
477
+ marks:
478
+ - type: strong
479
+ text: P  102   Sweden    LIR
480
+ - type: table_row
481
+ content:
482
+ - type: table_cell
483
+ attrs:
484
+ colspan: 1
485
+ rowspan: 1
486
+ colwidth:
487
+ content:
488
+ - type: paragraph
489
+ content:
490
+ - type: text
491
+ text: 6-238-0
492
+ - type: table_cell
493
+ attrs:
494
+ colspan: 1
495
+ rowspan: 1
496
+ colwidth:
497
+ content:
498
+ - type: paragraph
499
+ content:
500
+ - type: text
501
+ text: '14192'
502
+ - type: table_cell
503
+ attrs:
504
+ colspan: 1
505
+ rowspan: 1
506
+ colwidth:
507
+ content:
508
+ - type: paragraph
509
+ content:
510
+ - type: text
511
+ text: CT-STP1 (Frankfurt)
512
+ - type: table_cell
513
+ attrs:
514
+ colspan: 1
515
+ rowspan: 1
516
+ colwidth:
517
+ content:
518
+ - type: paragraph
519
+ content:
520
+ - type: text
521
+ text: Compatel Ltd
522
+ - type: table_row
523
+ content:
524
+ - type: table_cell
525
+ attrs:
526
+ colspan: 1
527
+ rowspan: 1
528
+ colwidth:
529
+ content:
530
+ - type: paragraph
531
+ content:
532
+ - type: text
533
+ text: 6-238-1
534
+ - type: table_cell
535
+ attrs:
536
+ colspan: 1
537
+ rowspan: 1
538
+ colwidth:
539
+ content:
540
+ - type: paragraph
541
+ content:
542
+ - type: text
543
+ text: '14193'
544
+ - type: table_cell
545
+ attrs:
546
+ colspan: 1
547
+ rowspan: 1
548
+ colwidth:
549
+ content:
550
+ - type: paragraph
551
+ content:
552
+ - type: text
553
+ text: CT-STP2 (Frankfurt)
554
+ - type: table_cell
555
+ attrs:
556
+ colspan: 1
557
+ rowspan: 1
558
+ colwidth:
559
+ content:
560
+ - type: paragraph
561
+ content:
562
+ - type: text
563
+ text: Compatel Ltd
564
+ - type: table_row
565
+ content:
566
+ - type: table_cell
567
+ attrs:
568
+ colspan: 1
569
+ rowspan: 1
570
+ colwidth:
571
+ content:
572
+ - type: paragraph
573
+ content:
574
+ - type: text
575
+ text: 6-238-3
576
+ - type: table_cell
577
+ attrs:
578
+ colspan: 1
579
+ rowspan: 1
580
+ colwidth:
581
+ content:
582
+ - type: paragraph
583
+ content:
584
+ - type: text
585
+ text: '14195'
586
+ - type: table_cell
587
+ attrs:
588
+ colspan: 1
589
+ rowspan: 1
590
+ colwidth:
591
+ content:
592
+ - type: paragraph
593
+ content:
594
+ - type: text
595
+ text: Digitel Mobile Srl (Pescara)
596
+ - type: table_cell
597
+ attrs:
598
+ colspan: 1
599
+ rowspan: 1
600
+ colwidth:
601
+ content:
602
+ - type: paragraph
603
+ content:
604
+ - type: text
605
+ text: Digitel Mobile Srl
606
+ - type: table_row
607
+ content:
608
+ - type: table_cell
609
+ attrs:
610
+ colspan: 1
611
+ rowspan: 1
612
+ colwidth:
613
+ content:
614
+ - type: paragraph
615
+ content:
616
+ - type: text
617
+ text: 6-238-4
618
+ - type: table_cell
619
+ attrs:
620
+ colspan: 1
621
+ rowspan: 1
622
+ colwidth:
623
+ content:
624
+ - type: paragraph
625
+ content:
626
+ - type: text
627
+ text: '14196'
628
+ - type: table_cell
629
+ attrs:
630
+ colspan: 1
631
+ rowspan: 1
632
+ colwidth:
633
+ content:
634
+ - type: paragraph
635
+ content:
636
+ - type: text
637
+ text: INFOBIP GE (SMSC1) (Frankfurt)
638
+ - type: table_cell
639
+ attrs:
640
+ colspan: 1
641
+ rowspan: 1
642
+ colwidth:
643
+ content:
644
+ - type: paragraph
645
+ content:
646
+ - type: text
647
+ text: Infobip Ltd
648
+ - type: table_row
649
+ content:
650
+ - type: table_cell
651
+ attrs:
652
+ colspan: 1
653
+ rowspan: 1
654
+ colwidth:
655
+ content:
656
+ - type: paragraph
657
+ content:
658
+ - type: text
659
+ text: 6-238-5
660
+ - type: table_cell
661
+ attrs:
662
+ colspan: 1
663
+ rowspan: 1
664
+ colwidth:
665
+ content:
666
+ - type: paragraph
667
+ content:
668
+ - type: text
669
+ text: '14197'
670
+ - type: table_cell
671
+ attrs:
672
+ colspan: 1
673
+ rowspan: 1
674
+ colwidth:
675
+ content:
676
+ - type: paragraph
677
+ content:
678
+ - type: text
679
+ text: INFOBIP GE (SMSC2) (Frankfurt)
680
+ - type: table_cell
681
+ attrs:
682
+ colspan: 1
683
+ rowspan: 1
684
+ colwidth:
685
+ content:
686
+ - type: paragraph
687
+ content:
688
+ - type: text
689
+ text: Infobip Ltd
690
+ - type: table_row
691
+ content:
692
+ - type: table_cell
693
+ attrs:
694
+ colspan: 1
695
+ rowspan: 1
696
+ colwidth:
697
+ content:
698
+ - type: paragraph
699
+ content:
700
+ - type: text
701
+ text: 6-238-6
702
+ - type: table_cell
703
+ attrs:
704
+ colspan: 1
705
+ rowspan: 1
706
+ colwidth:
707
+ content:
708
+ - type: paragraph
709
+ content:
710
+ - type: text
711
+ text: '14198'
712
+ - type: table_cell
713
+ attrs:
714
+ colspan: 1
715
+ rowspan: 1
716
+ colwidth:
717
+ content:
718
+ - type: paragraph
719
+ content:
720
+ - type: text
721
+ text: INFOBIP GE (SMSC3) (Frankfurt)
722
+ - type: table_cell
723
+ attrs:
724
+ colspan: 1
725
+ rowspan: 1
726
+ colwidth:
727
+ content:
728
+ - type: paragraph
729
+ content:
730
+ - type: text
731
+ text: Infobip Ltd
732
+ - type: table_row
733
+ content:
734
+ - type: table_cell
735
+ attrs:
736
+ colspan: 1
737
+ rowspan: 1
738
+ colwidth:
739
+ content:
740
+ - type: paragraph
741
+ content:
742
+ - type: text
743
+ text: 6-238-7
744
+ - type: table_cell
745
+ attrs:
746
+ colspan: 1
747
+ rowspan: 1
748
+ colwidth:
749
+ content:
750
+ - type: paragraph
751
+ content:
752
+ - type: text
753
+ text: '14199'
754
+ - type: table_cell
755
+ attrs:
756
+ colspan: 1
757
+ rowspan: 1
758
+ colwidth:
759
+ content:
760
+ - type: paragraph
761
+ content:
762
+ - type: text
763
+ text: INFOBIP GE (SMSC4) (Frankfurt)
764
+ - type: table_cell
765
+ attrs:
766
+ colspan: 1
767
+ rowspan: 1
768
+ colwidth:
769
+ content:
770
+ - type: paragraph
771
+ content:
772
+ - type: text
773
+ text: Infobip Ltd
774
+ - type: paragraph
775
+ content:
776
+ - type: text
777
+ text: " "
778
+ - type: paragraph
779
+ content:
780
+ - type: text
781
+ text: ISPC:      International Signalling Point Codes.
782
+ - type: paragraph
783
+ content:
784
+ - type: text
785
+ text: "              Codes de points sémaphores internationaux (CPSI)."
786
+ - type: paragraph
787
+ content:
788
+ - type: text
789
+ text: "              Códigos de puntos de señalización internacional (CPSI)."