gitextract_vxft_rju/ ├── .editorconfig ├── .github/ │ ├── release.yml │ └── workflows/ │ ├── main.yml │ ├── pull_request.yml │ └── pull_request_label.yml ├── .gitignore ├── .licenseignore ├── .spi.yml ├── .swift-format ├── CONTRIBUTORS.txt ├── LICENSE.txt ├── Package.swift ├── README.md ├── Sources/ │ ├── RawStructuredFieldValues/ │ │ ├── ASCII.swift │ │ ├── ComponentTypes.swift │ │ ├── Docs.docc/ │ │ │ └── index.md │ │ ├── Errors.swift │ │ ├── FieldParser.swift │ │ ├── FieldSerializer.swift │ │ ├── OrderedMap.swift │ │ └── PseudoDecimal.swift │ ├── StructuredFieldValues/ │ │ ├── Decoder/ │ │ │ ├── BareInnerListDecoder.swift │ │ │ ├── BareItemDecoder.swift │ │ │ ├── DictionaryKeyedContainer.swift │ │ │ ├── KeyedInnerListDecoder.swift │ │ │ ├── KeyedItemDecoder.swift │ │ │ ├── KeyedTopLevelListDecoder.swift │ │ │ ├── ParametersDecoder.swift │ │ │ ├── StructuredFieldValueDecoder.swift │ │ │ ├── StructuredHeaderCodingKey.swift │ │ │ └── TopLevelListDecoder.swift │ │ ├── DisplayString.swift │ │ ├── Docs.docc/ │ │ │ └── index.md │ │ ├── Encoder/ │ │ │ ├── StructuredFieldKeyedEncodingContainer.swift │ │ │ ├── StructuredFieldUnkeyedEncodingContainer.swift │ │ │ └── StructuredFieldValueEncoder.swift │ │ └── StructuredFieldValue.swift │ └── sh-parser/ │ └── main.swift ├── Tests/ │ ├── StructuredFieldValuesTests/ │ │ ├── Base32.swift │ │ ├── Fixtures.swift │ │ ├── StructuredFieldDecoderTests.swift │ │ ├── StructuredFieldEncoderTests.swift │ │ ├── StructuredFieldParserTests.swift │ │ └── StructuredFieldSerializerTests.swift │ └── TestFixtures/ │ ├── binary.json │ ├── boolean.json │ ├── date.json │ ├── dictionary.json │ ├── display-string.json │ ├── examples.json │ ├── item.json │ ├── key-generated.json │ ├── large-generated.json │ ├── list.json │ ├── listlist.json │ ├── number-generated.json │ ├── number.json │ ├── param-dict.json │ ├── param-list.json │ ├── param-listlist.json │ ├── serialisation-tests/ │ │ ├── key-generated.json │ │ ├── number.json │ │ ├── string-generated.json │ │ └── token-generated.json │ ├── string-generated.json │ ├── string.json │ ├── token-generated.json │ └── token.json └── dev/ └── git.commit.template