├── .gitattributes ├── .github └── workflows │ └── gradle-build.yaml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icons └── patchwork.png ├── karma.config.d └── config.js ├── publish-snapshot.sh └── src ├── commonMain └── kotlin │ └── com │ └── jeffpdavidson │ └── kotwords │ ├── KotwordsInternal.kt │ ├── formats │ ├── AcrossLite.kt │ ├── AcrossLiteSanitizer.kt │ ├── Apz.kt │ ├── BostonGlobe.kt │ ├── Cnn.kt │ ├── Constants.kt │ ├── Crosshare.kt │ ├── Crosswordr.kt │ ├── DailyPrincetonian.kt │ ├── Encodings.kt │ ├── Guardian.kt │ ├── Ipuz.kt │ ├── Jpz.kt │ ├── LzString.kt │ ├── NewYorkTimes.kt │ ├── NewYorkTimesAcrostic.kt │ ├── ParsedImage.kt │ ├── Pdf.kt │ ├── PdfDocument.kt │ ├── PdfFonts.kt │ ├── PuzzleMe.kt │ ├── Puzzleable.kt │ ├── Pzzl.kt │ ├── Rgz.kt │ ├── UclickJpz.kt │ ├── UclickJson.kt │ ├── UclickXml.kt │ ├── WallStreetJournal.kt │ ├── WallStreetJournalAcrostic.kt │ ├── WashingtonPost.kt │ ├── WorldOfCrosswords.kt │ ├── XWordInfo.kt │ ├── XWordInfoAcrostic.kt │ ├── Xd.kt │ ├── Xml.kt │ ├── Zip.kt │ ├── json │ │ ├── CnnJson.kt │ │ ├── CrosshareJson.kt │ │ ├── CrosswordrJson.kt │ │ ├── DailyPrincetonianJson.kt │ │ ├── GuardianJson.kt │ │ ├── JsonSerializer.kt │ │ ├── PuzzleMeJson.kt │ │ ├── UclickJson.kt │ │ ├── WallStreetJournalJson.kt │ │ ├── WashingtonPostJson.kt │ │ ├── WorldOfCrosswordsJson.kt │ │ ├── nyt │ │ │ ├── NewYorkTimesAcrosticJson.kt │ │ │ ├── NewYorkTimesApiJson.kt │ │ │ ├── NewYorkTimesJson.kt │ │ │ └── NewYorkTimesPluribusJson.kt │ │ └── xwordinfo │ │ │ ├── XWordInfoAcrosticJson.kt │ │ │ └── XWordInfoJson.kt │ └── unidecode │ │ ├── Unidecode.kt │ │ ├── generate.pl │ │ ├── x01.kt │ │ ├── x02.kt │ │ ├── x03.kt │ │ ├── x04.kt │ │ ├── x05.kt │ │ ├── x06.kt │ │ ├── x07.kt │ │ ├── x08.kt │ │ ├── x09.kt │ │ ├── x0a.kt │ │ ├── x0b.kt │ │ ├── x0c.kt │ │ ├── x0d.kt │ │ ├── x0e.kt │ │ ├── x0f.kt │ │ ├── x10.kt │ │ ├── x11.kt │ │ ├── x12.kt │ │ ├── x13.kt │ │ ├── x14.kt │ │ ├── x15.kt │ │ ├── x16.kt │ │ ├── x17.kt │ │ ├── x18.kt │ │ ├── x19.kt │ │ ├── x1a.kt │ │ ├── x1b.kt │ │ ├── x1c.kt │ │ ├── x1d.kt │ │ ├── x1e.kt │ │ ├── x1f.kt │ │ ├── x20.kt │ │ ├── x21.kt │ │ ├── x22.kt │ │ ├── x23.kt │ │ ├── x24.kt │ │ ├── x25.kt │ │ ├── x26.kt │ │ ├── x27.kt │ │ ├── x28.kt │ │ ├── x29.kt │ │ ├── x2a.kt │ │ ├── x2b.kt │ │ ├── x2c.kt │ │ ├── x2d.kt │ │ ├── x2e.kt │ │ ├── x2f.kt │ │ ├── x30.kt │ │ ├── x31.kt │ │ ├── x32.kt │ │ ├── x33.kt │ │ ├── x34.kt │ │ ├── x35.kt │ │ ├── x36.kt │ │ ├── x37.kt │ │ ├── x38.kt │ │ ├── x39.kt │ │ ├── x3a.kt │ │ ├── x3b.kt │ │ ├── x3c.kt │ │ ├── x3d.kt │ │ ├── x3e.kt │ │ ├── x3f.kt │ │ ├── x40.kt │ │ ├── x41.kt │ │ ├── x42.kt │ │ ├── x43.kt │ │ ├── x44.kt │ │ ├── x45.kt │ │ ├── x46.kt │ │ ├── x47.kt │ │ ├── x48.kt │ │ ├── x49.kt │ │ ├── x4a.kt │ │ ├── x4b.kt │ │ ├── x4c.kt │ │ ├── x4d.kt │ │ ├── x4e.kt │ │ ├── x4f.kt │ │ ├── x50.kt │ │ ├── x51.kt │ │ ├── x52.kt │ │ ├── x53.kt │ │ ├── x54.kt │ │ ├── x55.kt │ │ ├── x56.kt │ │ ├── x57.kt │ │ ├── x58.kt │ │ ├── x59.kt │ │ ├── x5a.kt │ │ ├── x5b.kt │ │ ├── x5c.kt │ │ ├── x5d.kt │ │ ├── x5e.kt │ │ ├── x5f.kt │ │ ├── x60.kt │ │ ├── x61.kt │ │ ├── x62.kt │ │ ├── x63.kt │ │ ├── x64.kt │ │ ├── x65.kt │ │ ├── x66.kt │ │ ├── x67.kt │ │ ├── x68.kt │ │ ├── x69.kt │ │ ├── x6a.kt │ │ ├── x6b.kt │ │ ├── x6c.kt │ │ ├── x6d.kt │ │ ├── x6e.kt │ │ ├── x6f.kt │ │ ├── x70.kt │ │ ├── x71.kt │ │ ├── x72.kt │ │ ├── x73.kt │ │ ├── x74.kt │ │ ├── x75.kt │ │ ├── x76.kt │ │ ├── x77.kt │ │ ├── x78.kt │ │ ├── x79.kt │ │ ├── x7a.kt │ │ ├── x7b.kt │ │ ├── x7c.kt │ │ ├── x7d.kt │ │ ├── x7e.kt │ │ ├── x7f.kt │ │ ├── x80.kt │ │ ├── x81.kt │ │ ├── x82.kt │ │ ├── x83.kt │ │ ├── x84.kt │ │ ├── x85.kt │ │ ├── x86.kt │ │ ├── x87.kt │ │ ├── x88.kt │ │ ├── x89.kt │ │ ├── x8a.kt │ │ ├── x8b.kt │ │ ├── x8c.kt │ │ ├── x8d.kt │ │ ├── x8e.kt │ │ ├── x8f.kt │ │ ├── x90.kt │ │ ├── x91.kt │ │ ├── x92.kt │ │ ├── x93.kt │ │ ├── x94.kt │ │ ├── x95.kt │ │ ├── x96.kt │ │ ├── x97.kt │ │ ├── x98.kt │ │ ├── x99.kt │ │ ├── x9a.kt │ │ ├── x9b.kt │ │ ├── x9c.kt │ │ ├── x9d.kt │ │ ├── x9e.kt │ │ ├── x9f.kt │ │ ├── xa0.kt │ │ ├── xa1.kt │ │ ├── xa2.kt │ │ ├── xa3.kt │ │ ├── xa4.kt │ │ ├── xa5.kt │ │ ├── xa6.kt │ │ ├── xa7.kt │ │ ├── xa8.kt │ │ ├── xa9.kt │ │ ├── xaa.kt │ │ ├── xab.kt │ │ ├── xac.kt │ │ ├── xad.kt │ │ ├── xae.kt │ │ ├── xaf.kt │ │ ├── xb0.kt │ │ ├── xb1.kt │ │ ├── xb2.kt │ │ ├── xb3.kt │ │ ├── xb4.kt │ │ ├── xb5.kt │ │ ├── xb6.kt │ │ ├── xb7.kt │ │ ├── xb8.kt │ │ ├── xb9.kt │ │ ├── xba.kt │ │ ├── xbb.kt │ │ ├── xbc.kt │ │ ├── xbd.kt │ │ ├── xbe.kt │ │ ├── xbf.kt │ │ ├── xc0.kt │ │ ├── xc1.kt │ │ ├── xc2.kt │ │ ├── xc3.kt │ │ ├── xc4.kt │ │ ├── xc5.kt │ │ ├── xc6.kt │ │ ├── xc7.kt │ │ ├── xc8.kt │ │ ├── xc9.kt │ │ ├── xca.kt │ │ ├── xcb.kt │ │ ├── xcc.kt │ │ ├── xcd.kt │ │ ├── xce.kt │ │ ├── xcf.kt │ │ ├── xd0.kt │ │ ├── xd1.kt │ │ ├── xd2.kt │ │ ├── xd3.kt │ │ ├── xd4.kt │ │ ├── xd5.kt │ │ ├── xd6.kt │ │ ├── xd7.kt │ │ ├── xd8.kt │ │ ├── xd9.kt │ │ ├── xda.kt │ │ ├── xdb.kt │ │ ├── xdc.kt │ │ ├── xdd.kt │ │ ├── xde.kt │ │ ├── xdf.kt │ │ ├── xe0.kt │ │ ├── xe1.kt │ │ ├── xe2.kt │ │ ├── xe3.kt │ │ ├── xe4.kt │ │ ├── xe5.kt │ │ ├── xe6.kt │ │ ├── xe7.kt │ │ ├── xe8.kt │ │ ├── xe9.kt │ │ ├── xea.kt │ │ ├── xeb.kt │ │ ├── xec.kt │ │ ├── xed.kt │ │ ├── xee.kt │ │ ├── xef.kt │ │ ├── xf0.kt │ │ ├── xf1.kt │ │ ├── xf2.kt │ │ ├── xf3.kt │ │ ├── xf4.kt │ │ ├── xf5.kt │ │ ├── xf6.kt │ │ ├── xf7.kt │ │ ├── xf8.kt │ │ ├── xf9.kt │ │ ├── xfa.kt │ │ ├── xfb.kt │ │ ├── xfc.kt │ │ ├── xfd.kt │ │ ├── xfe.kt │ │ └── xff.kt │ ├── model │ ├── Acrostic.kt │ ├── AroundTheBend.kt │ ├── Coded.kt │ ├── Crossword.kt │ ├── Crosswordle.kt │ ├── DownsOnly.kt │ ├── EightTracks.kt │ ├── HeartsAndArrows.kt │ ├── HelterSkelter.kt │ ├── JellyRoll.kt │ ├── Labyrinth.kt │ ├── MarchingBands.kt │ ├── Patchwork.kt │ ├── Puzzle.kt │ ├── RowsGarden.kt │ ├── SnakeCharmer.kt │ ├── SpellWeaving.kt │ ├── Spiral.kt │ ├── SpiralGrid.kt │ ├── TwistsAndTurns.kt │ └── TwoTone.kt │ └── util │ └── Strings.kt ├── commonTest ├── kotlin │ └── com │ │ └── jeffpdavidson │ │ └── kotwords │ │ ├── TestRunner.kt │ │ ├── formats │ │ ├── AcrossLiteSanitizerTest.kt │ │ ├── AcrossLiteTest.kt │ │ ├── ApzTest.kt │ │ ├── BostonGlobeTest.kt │ │ ├── CnnTest.kt │ │ ├── CrosshareTest.kt │ │ ├── CrosswordrTest.kt │ │ ├── DailyPrincetonianTest.kt │ │ ├── EncodingsTest.kt │ │ ├── GuardianTest.kt │ │ ├── ImageComparator.kt │ │ ├── IpuzTest.kt │ │ ├── JpzTest.kt │ │ ├── NewYorkTimesAcrosticTest.kt │ │ ├── NewYorkTimesTest.kt │ │ ├── PdfTest.kt │ │ ├── PdfTestFonts.kt │ │ ├── PuzzleMeTest.kt │ │ ├── PzzlTest.kt │ │ ├── RgzTest.kt │ │ ├── RowsGardenTest.kt │ │ ├── UclickJpzTest.kt │ │ ├── UclickJsonTest.kt │ │ ├── UclickXmlTest.kt │ │ ├── WallStreetJournalAcrosticTest.kt │ │ ├── WallStreetJournalTest.kt │ │ ├── WashingtonPostTest.kt │ │ ├── WorldOfCrosswordsTest.kt │ │ ├── XWordInfoAcrosticTest.kt │ │ ├── XWordInfoTest.kt │ │ └── XdTest.kt │ │ └── model │ │ ├── AcrosticTest.kt │ │ ├── AroundTheBendTest.kt │ │ ├── CodedTest.kt │ │ ├── CrosswordTest.kt │ │ ├── CrosswordleTest.kt │ │ ├── DownsOnlyTest.kt │ │ ├── EightTracksTest.kt │ │ ├── HeartsAndArrowsTest.kt │ │ ├── HelterSkelterTest.kt │ │ ├── JellyRollTest.kt │ │ ├── LabyrinthTest.kt │ │ ├── MarchingBandsTest.kt │ │ ├── PatchworkTest.kt │ │ ├── PuzzleAssertions.kt │ │ ├── SnakeCharmerTest.kt │ │ ├── SpellWeavingTest.kt │ │ ├── SpiralTest.kt │ │ ├── TwistsAndTurnsTest.kt │ │ └── TwoToneTest.kt └── resources │ ├── acrostic │ ├── acrostic-attribution.jpz │ ├── acrostic-explicit-width.jpz │ ├── acrostic.apz │ └── acrostic.jpz │ ├── around-the-bend │ ├── around-the-bend.ipuz │ └── around-the-bend.jpz │ ├── bg │ └── test-simple.html │ ├── cnn │ └── test.json │ ├── coded │ ├── coded.ipuz │ └── coded.jpz │ ├── crosshare │ ├── test-barred.json │ ├── test-html.json │ └── test.json │ ├── crosswordle.jpz │ ├── crosswordr │ └── test.json │ ├── eight-tracks │ ├── annotations.ipuz │ ├── annotations.jpz │ ├── inner-track-starts.jpz │ └── no-annotations.jpz │ ├── guardian │ └── test-simple.json │ ├── hearts-and-arrows │ ├── hearts-and-arrows-unlabeled.ipuz │ ├── hearts-and-arrows.ipuz │ └── hearts-and-arrows.jpz │ ├── helter-skelter │ ├── helter-skelter-extend-to-edges.jpz │ └── helter-skelter.jpz │ ├── ipuz │ ├── gaps.ipuz │ ├── test-bgimage.ipuz │ ├── test-diagonal.ipuz │ ├── test-diagramless.ipuz │ ├── test-no-solution.ipuz │ ├── test-solved.ipuz │ ├── test-zero-indexed.ipuz │ └── test.ipuz │ ├── jelly-roll │ ├── jelly-roll-combined.jpz │ ├── jelly-roll-nonsquare.jpz │ ├── jelly-roll.ipuz │ └── jelly-roll.jpz │ ├── jpz │ ├── gaps.jpz │ ├── test-applet-metadata.jpz │ ├── test-barred.jpz │ ├── test-bgimage.jpz │ ├── test-cell-ranges.jpz │ ├── test-diagonal.jpz │ ├── test-formats.jpz │ ├── test-html.jpz │ ├── test-inline-cells.jpz │ ├── test-invalid-namespace.jpz │ ├── test-no-namespaces.jpz │ ├── test-no-solution.jpz │ ├── test-prefilled.jpz │ ├── test-shaded.jpz │ ├── test-solved.jpz │ └── test.jpz │ ├── labyrinth │ ├── labyrinth.ipuz │ └── labyrinth.jpz │ ├── marching-bands │ ├── marching-bands-without-rows.jpz │ ├── marching-bands.ipuz │ └── marching-bands.jpz │ ├── nyt │ ├── bgimage.png │ ├── test-acrostic.html │ ├── test-acrostic.json │ ├── test-api.json │ ├── test-bgimage-api.json │ ├── test-bgimage-nofetcher.jpz │ ├── test-bgimage.jpz │ ├── test-bgimage.json │ ├── test.html │ ├── test.jpz │ └── test.json │ ├── patchwork │ ├── patchwork-unlabeled-pieces.ipuz │ ├── patchwork.ipuz │ └── patchwork.jpz │ ├── pdf │ └── fonts │ │ ├── NotoSerif-Bold.ttf │ │ ├── NotoSerif-BoldItalic.ttf │ │ ├── NotoSerif-Italic.ttf │ │ ├── NotoSerif-Regular.ttf │ │ └── README │ ├── princetonian │ ├── test-authors.json │ ├── test-clues.json │ └── test-crossword.json │ ├── puz │ ├── gaps.puz │ ├── test-diagramless.puz │ ├── test-iso-8859-1.puz │ ├── test-no-solution.puz │ ├── test-simple.puz │ ├── test-solved.puz │ └── test.puz │ ├── puzzleme │ ├── test-bgimage.json │ ├── test-hiddenSquares.json │ ├── test-isCircled.json │ ├── test-italics.json │ ├── test-italics.puz │ ├── test-marchingBands.json │ ├── test-new-rawc.html │ ├── test-rowsGarden.json │ ├── test-shadedCells.json │ ├── test-void.json │ ├── test-wordlens.json │ ├── test.html │ └── test.json │ ├── pzzl │ └── test.txt │ ├── rows-garden │ ├── rows-garden-mini.jpz │ ├── rows-garden.ipuz │ ├── rows-garden.jpz │ ├── test-mini.rg │ ├── test.rg │ └── test.rgz │ ├── snake-charmer │ ├── snake-charmer.ipuz │ └── snake-charmer.jpz │ ├── spell-weaving │ ├── spell-weaving.ipuz │ └── spell-weaving.jpz │ ├── spiral │ ├── spiral-chunked.jpz │ ├── spiral-nonsquare.jpz │ ├── spiral-rectangular.jpz │ ├── spiral.ipuz │ └── spiral.jpz │ ├── twists-and-turns │ ├── twists-and-turns.ipuz │ └── twists-and-turns.jpz │ ├── two-tone │ ├── two-tone-nonsquare.jpz │ ├── two-tone.ipuz │ └── two-tone.jpz │ ├── uclick │ ├── test-simple.json │ ├── test-simple.xml │ ├── test-urldecode.json │ └── test.jpz │ ├── wapo │ └── test.json │ ├── worldofcrosswords │ └── test-simple.json │ ├── wsj │ ├── test-acrostic.json │ ├── test-no-solution.json │ └── test.json │ ├── xd │ ├── test-barred.xd │ ├── test-formatting.xd │ ├── test-prefilled.xd │ ├── test-shaded.xd │ └── test.xd │ └── xwordinfo │ ├── test-acrostic.json │ └── test.json ├── jsMain ├── kotlin │ └── com │ │ └── jeffpdavidson │ │ └── kotwords │ │ ├── formats │ │ ├── Encodings.kt │ │ ├── ParsedImage.kt │ │ ├── PdfDocument.kt │ │ ├── PdfFonts.kt │ │ ├── Xml.kt │ │ └── Zip.kt │ │ ├── js │ │ ├── Fontkit.kt │ │ ├── Http.kt │ │ ├── Interop.kt │ │ ├── JsZip.kt │ │ ├── PdfLib.kt │ │ └── PdfLibExtras.kt │ │ └── web │ │ ├── AcrosticForm.kt │ │ ├── AroundTheBendForm.kt │ │ ├── CodedForm.kt │ │ ├── CrosswordForm.kt │ │ ├── CrosswordleForm.kt │ │ ├── EightTracksForm.kt │ │ ├── HeartsAndArrowsForm.kt │ │ ├── HelterSkelterForm.kt │ │ ├── Index.kt │ │ ├── JellyRollForm.kt │ │ ├── LabyrinthForm.kt │ │ ├── MarchingBandsForm.kt │ │ ├── PatchworkForm.kt │ │ ├── PuzzleFileForm.kt │ │ ├── RowsGardenForm.kt │ │ ├── SnakeCharmerForm.kt │ │ ├── SpellWeavingForm.kt │ │ ├── SpiralForm.kt │ │ ├── TwistsAndTurnsForm.kt │ │ ├── TwoToneForm.kt │ │ └── html │ │ ├── FormFields.kt │ │ ├── Html.kt │ │ └── Tabs.kt └── resources │ ├── across-lite.html │ ├── acrostic.html │ ├── around-the-bend.html │ ├── coded.html │ ├── crossword.html │ ├── crosswordle.html │ ├── eight-tracks.html │ ├── fonts │ ├── NotoSerif-Bold.ttf │ ├── NotoSerif-BoldItalic.ttf │ ├── NotoSerif-Italic.ttf │ ├── NotoSerif-Regular.ttf │ └── README │ ├── hearts-and-arrows.html │ ├── helter-skelter.html │ ├── icons │ ├── acrostic.png │ ├── around-the-bend.png │ ├── coded.png │ ├── crossword.png │ ├── crosswordle.png │ ├── eight-tracks.png │ ├── hearts-and-arrows.png │ ├── helter-skelter.png │ ├── jelly-roll.png │ ├── labyrinth.png │ ├── marching-bands.png │ ├── patchwork.png │ ├── rows-garden.png │ ├── snake-charmer.png │ ├── spell-weaving.png │ ├── spiral.png │ ├── twists-and-turns.png │ └── two-tone.png │ ├── index.html │ ├── jelly-roll.html │ ├── labyrinth.html │ ├── marching-bands.html │ ├── patchwork.html │ ├── rows-garden.html │ ├── snake-charmer.html │ ├── spell-weaving.html │ ├── spiral.html │ ├── twists-and-turns.html │ └── two-tone.html ├── jsTest ├── kotlin │ └── com │ │ └── jeffpdavidson │ │ └── kotwords │ │ ├── JsTestRunner.kt │ │ ├── formats │ │ └── ImageComparator.kt │ │ ├── js │ │ ├── PdfJs.kt │ │ └── PdfJsExtras.kt │ │ └── web │ │ └── PuzzleFileFormTest.kt └── resources │ ├── marching-bands │ └── marching-bands.pdf │ ├── pdf │ ├── test-bgimage.pdf │ ├── test-customFonts.pdf │ ├── test-html.pdf │ └── test.pdf │ ├── save-data.json │ └── twists-and-turns │ ├── sorted-twists.pdf │ └── unsorted-twists.pdf ├── jvmMain └── kotlin │ └── com │ └── jeffpdavidson │ └── kotwords │ └── formats │ ├── Encodings.kt │ ├── ParsedImage.kt │ ├── PdfDocument.kt │ ├── Xml.kt │ └── Zip.kt ├── jvmTest ├── kotlin │ └── com │ │ └── jeffpdavidson │ │ └── kotwords │ │ ├── JvmTestRunner.kt │ │ └── formats │ │ └── ImageComparator.kt └── resources │ ├── marching-bands │ └── marching-bands.pdf │ ├── pdf │ ├── test-bgimage.pdf │ ├── test-customFonts.pdf │ ├── test-html.pdf │ └── test.pdf │ └── twists-and-turns │ ├── sorted-twists.pdf │ └── unsorted-twists.pdf ├── nativeMain └── kotlin │ └── com │ └── jeffpdavidson │ └── kotwords │ ├── cli │ └── Main.kt │ └── formats │ ├── Encodings.kt │ ├── ParsedImage.kt │ ├── PdfDocument.kt │ ├── Xml.kt │ └── Zip.kt └── nativeTest └── kotlin └── com └── jeffpdavidson └── kotwords ├── TestRunner.kt └── formats └── ImageComparator.kt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pdf binary 2 | *.jpz eol=lf 3 | -------------------------------------------------------------------------------- /.github/workflows/gradle-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/.github/workflows/gradle-build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g 2 | kotlin.native.ignoreDisabledTargets=true -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/gradlew.bat -------------------------------------------------------------------------------- /icons/patchwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/icons/patchwork.png -------------------------------------------------------------------------------- /karma.config.d/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/karma.config.d/config.js -------------------------------------------------------------------------------- /publish-snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/publish-snapshot.sh -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/KotwordsInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/KotwordsInternal.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/AcrossLite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/AcrossLite.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/AcrossLiteSanitizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/AcrossLiteSanitizer.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Apz.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Apz.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/BostonGlobe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/BostonGlobe.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Cnn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Cnn.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Constants.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Crosshare.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Crosshare.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Crosswordr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Crosswordr.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/DailyPrincetonian.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/DailyPrincetonian.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Encodings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Encodings.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Guardian.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Guardian.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Ipuz.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Ipuz.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Jpz.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Jpz.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/LzString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/LzString.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/NewYorkTimes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/NewYorkTimes.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/NewYorkTimesAcrostic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/NewYorkTimesAcrostic.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/ParsedImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/ParsedImage.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Pdf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Pdf.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfDocument.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfDocument.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfFonts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfFonts.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/PuzzleMe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/PuzzleMe.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Puzzleable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Puzzleable.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Pzzl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Pzzl.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Rgz.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Rgz.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/UclickJpz.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/UclickJpz.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/UclickJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/UclickJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/UclickXml.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/UclickXml.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/WallStreetJournal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/WallStreetJournal.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/WallStreetJournalAcrostic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/WallStreetJournalAcrostic.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/WashingtonPost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/WashingtonPost.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/WorldOfCrosswords.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/WorldOfCrosswords.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/XWordInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/XWordInfo.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/XWordInfoAcrostic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/XWordInfoAcrostic.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Xd.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Xd.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Xml.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Xml.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Zip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/Zip.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/CnnJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/CnnJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/CrosshareJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/CrosshareJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/CrosswordrJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/CrosswordrJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/DailyPrincetonianJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/DailyPrincetonianJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/GuardianJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/GuardianJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/JsonSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/JsonSerializer.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/PuzzleMeJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/PuzzleMeJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/UclickJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/UclickJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/WallStreetJournalJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/WallStreetJournalJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/WashingtonPostJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/WashingtonPostJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/WorldOfCrosswordsJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/WorldOfCrosswordsJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/nyt/NewYorkTimesAcrosticJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/nyt/NewYorkTimesAcrosticJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/nyt/NewYorkTimesApiJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/nyt/NewYorkTimesApiJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/nyt/NewYorkTimesJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/nyt/NewYorkTimesJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/nyt/NewYorkTimesPluribusJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/nyt/NewYorkTimesPluribusJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/xwordinfo/XWordInfoAcrosticJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/xwordinfo/XWordInfoAcrosticJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/xwordinfo/XWordInfoJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/json/xwordinfo/XWordInfoJson.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/Unidecode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/Unidecode.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/generate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/generate.pl -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x01.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x01.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x02.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x02.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x03.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x03.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x04.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x04.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x05.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x05.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x06.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x06.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x07.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x07.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x08.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x08.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x09.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x09.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0a.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0b.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0c.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0d.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0e.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0e.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x0f.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x10.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x10.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x11.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x12.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x12.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x13.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x13.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x14.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x14.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x15.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x15.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x16.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x16.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x17.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x17.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x18.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x18.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x19.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x19.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1a.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1b.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1c.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1d.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1e.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1e.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x1f.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x20.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x20.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x21.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x21.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x22.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x22.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x23.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x23.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x24.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x24.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x25.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x25.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x26.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x26.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x27.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x27.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x28.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x28.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x29.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x29.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2a.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2b.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2c.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2d.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2e.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2e.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x2f.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x30.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x30.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x31.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x31.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x32.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x32.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x33.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x33.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x34.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x34.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x35.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x35.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x36.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x36.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x37.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x37.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x38.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x38.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x39.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x39.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3a.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3b.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3c.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3d.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3e.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3e.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x3f.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x40.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x40.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x41.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x41.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x42.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x42.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x43.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x43.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x44.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x44.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x45.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x45.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x46.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x46.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x47.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x47.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x48.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x48.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x49.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x49.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4a.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4b.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4c.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4d.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4e.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4e.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x4f.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x50.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x50.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x51.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x51.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x52.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x52.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x53.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x53.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x54.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x54.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x55.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x55.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x56.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x56.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x57.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x57.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x58.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x58.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x59.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x59.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5a.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5b.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5c.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5d.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5e.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5e.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x5f.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x60.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x60.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x61.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x61.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x62.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x62.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x63.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x63.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x64.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x64.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x65.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x65.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x66.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x66.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x67.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x67.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x68.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x68.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x69.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x69.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6a.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6b.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6c.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6d.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6e.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6e.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x6f.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x70.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x70.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x71.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x71.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x72.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x72.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x73.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x73.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x74.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x74.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x75.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x75.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x76.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x76.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x77.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x77.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x78.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x78.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x79.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x79.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7a.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7b.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7c.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7d.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7e.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7e.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x7f.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x80.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x80.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x81.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x81.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x82.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x82.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x83.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x83.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x84.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x84.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x85.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x85.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x86.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x86.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x87.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x87.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x88.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x88.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x89.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x89.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8a.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8b.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8c.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8d.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8e.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8e.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x8f.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x90.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x90.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x91.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x91.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x92.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x92.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x93.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x93.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x94.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x94.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x95.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x95.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x96.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x96.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x97.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x97.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x98.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x98.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x99.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x99.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9a.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9b.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9c.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9d.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9e.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9e.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/x9f.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa0.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa1.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa2.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa3.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa4.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa5.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa6.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa7.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa8.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xa9.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xaa.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xaa.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xab.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xab.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xac.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xac.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xad.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xad.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xae.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xae.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xaf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xaf.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb0.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb1.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb2.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb3.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb4.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb5.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb6.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb7.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb8.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xb9.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xba.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xba.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xbb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xbb.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xbc.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xbd.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xbd.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xbe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xbe.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xbf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xbf.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc0.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc1.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc2.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc3.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc4.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc5.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc6.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc7.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc8.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xc9.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xca.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xca.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xcb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xcb.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xcc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xcc.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xcd.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xcd.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xce.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xce.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xcf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xcf.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd0.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd1.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd2.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd3.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd4.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd5.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd6.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd7.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd8.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xd9.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xda.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xda.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xdb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xdb.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xdc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xdc.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xdd.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xdd.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xde.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xde.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xdf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xdf.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe0.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe1.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe2.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe3.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe4.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe5.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe6.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe7.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe8.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xe9.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xea.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xea.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xeb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xeb.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xec.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xed.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xee.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xee.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xef.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf0.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf1.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf2.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf3.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf4.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf5.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf6.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf7.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf8.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xf9.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xfa.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xfa.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xfb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xfb.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xfc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xfc.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xfd.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xfd.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xfe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xfe.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/unidecode/xff.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Acrostic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Acrostic.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/AroundTheBend.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/AroundTheBend.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Coded.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Coded.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Crossword.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Crossword.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Crosswordle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Crosswordle.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/DownsOnly.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/DownsOnly.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/EightTracks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/EightTracks.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/HeartsAndArrows.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/HeartsAndArrows.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/HelterSkelter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/HelterSkelter.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/JellyRoll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/JellyRoll.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Labyrinth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Labyrinth.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/MarchingBands.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/MarchingBands.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Patchwork.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Patchwork.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Puzzle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Puzzle.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/RowsGarden.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/RowsGarden.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/SnakeCharmer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/SnakeCharmer.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/SpellWeaving.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/SpellWeaving.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Spiral.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/Spiral.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/SpiralGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/SpiralGrid.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/TwistsAndTurns.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/TwistsAndTurns.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/TwoTone.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/TwoTone.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/jeffpdavidson/kotwords/util/Strings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonMain/kotlin/com/jeffpdavidson/kotwords/util/Strings.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/TestRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/TestRunner.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/AcrossLiteSanitizerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/AcrossLiteSanitizerTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/AcrossLiteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/AcrossLiteTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/ApzTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/ApzTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/BostonGlobeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/BostonGlobeTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/CnnTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/CnnTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/CrosshareTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/CrosshareTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/CrosswordrTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/CrosswordrTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/DailyPrincetonianTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/DailyPrincetonianTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/EncodingsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/EncodingsTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/GuardianTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/GuardianTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/ImageComparator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/ImageComparator.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/IpuzTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/IpuzTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/JpzTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/JpzTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/NewYorkTimesAcrosticTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/NewYorkTimesAcrosticTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/NewYorkTimesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/NewYorkTimesTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/PdfTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/PdfTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/PdfTestFonts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/PdfTestFonts.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/PuzzleMeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/PuzzleMeTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/PzzlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/PzzlTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/RgzTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/RgzTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/RowsGardenTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/RowsGardenTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/UclickJpzTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/UclickJpzTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/UclickJsonTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/UclickJsonTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/UclickXmlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/UclickXmlTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/WallStreetJournalAcrosticTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/WallStreetJournalAcrosticTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/WallStreetJournalTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/WallStreetJournalTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/WashingtonPostTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/WashingtonPostTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/WorldOfCrosswordsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/WorldOfCrosswordsTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/XWordInfoAcrosticTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/XWordInfoAcrosticTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/XWordInfoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/XWordInfoTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/XdTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/formats/XdTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/AcrosticTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/AcrosticTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/AroundTheBendTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/AroundTheBendTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/CodedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/CodedTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/CrosswordTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/CrosswordTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/CrosswordleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/CrosswordleTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/DownsOnlyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/DownsOnlyTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/EightTracksTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/EightTracksTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/HeartsAndArrowsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/HeartsAndArrowsTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/HelterSkelterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/HelterSkelterTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/JellyRollTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/JellyRollTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/LabyrinthTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/LabyrinthTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/MarchingBandsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/MarchingBandsTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/PatchworkTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/PatchworkTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/PuzzleAssertions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/PuzzleAssertions.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/SnakeCharmerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/SnakeCharmerTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/SpellWeavingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/SpellWeavingTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/SpiralTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/SpiralTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/TwistsAndTurnsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/TwistsAndTurnsTest.kt -------------------------------------------------------------------------------- /src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/TwoToneTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/kotlin/com/jeffpdavidson/kotwords/model/TwoToneTest.kt -------------------------------------------------------------------------------- /src/commonTest/resources/acrostic/acrostic-attribution.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/acrostic/acrostic-attribution.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/acrostic/acrostic-explicit-width.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/acrostic/acrostic-explicit-width.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/acrostic/acrostic.apz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/acrostic/acrostic.apz -------------------------------------------------------------------------------- /src/commonTest/resources/acrostic/acrostic.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/acrostic/acrostic.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/around-the-bend/around-the-bend.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/around-the-bend/around-the-bend.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/around-the-bend/around-the-bend.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/around-the-bend/around-the-bend.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/bg/test-simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/bg/test-simple.html -------------------------------------------------------------------------------- /src/commonTest/resources/cnn/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/cnn/test.json -------------------------------------------------------------------------------- /src/commonTest/resources/coded/coded.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/coded/coded.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/coded/coded.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/coded/coded.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/crosshare/test-barred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/crosshare/test-barred.json -------------------------------------------------------------------------------- /src/commonTest/resources/crosshare/test-html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/crosshare/test-html.json -------------------------------------------------------------------------------- /src/commonTest/resources/crosshare/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/crosshare/test.json -------------------------------------------------------------------------------- /src/commonTest/resources/crosswordle.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/crosswordle.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/crosswordr/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/crosswordr/test.json -------------------------------------------------------------------------------- /src/commonTest/resources/eight-tracks/annotations.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/eight-tracks/annotations.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/eight-tracks/annotations.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/eight-tracks/annotations.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/eight-tracks/inner-track-starts.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/eight-tracks/inner-track-starts.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/eight-tracks/no-annotations.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/eight-tracks/no-annotations.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/guardian/test-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/guardian/test-simple.json -------------------------------------------------------------------------------- /src/commonTest/resources/hearts-and-arrows/hearts-and-arrows-unlabeled.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/hearts-and-arrows/hearts-and-arrows-unlabeled.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/hearts-and-arrows/hearts-and-arrows.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/hearts-and-arrows/hearts-and-arrows.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/hearts-and-arrows/hearts-and-arrows.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/hearts-and-arrows/hearts-and-arrows.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/helter-skelter/helter-skelter-extend-to-edges.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/helter-skelter/helter-skelter-extend-to-edges.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/helter-skelter/helter-skelter.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/helter-skelter/helter-skelter.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/ipuz/gaps.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/ipuz/gaps.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/ipuz/test-bgimage.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/ipuz/test-bgimage.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/ipuz/test-diagonal.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/ipuz/test-diagonal.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/ipuz/test-diagramless.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/ipuz/test-diagramless.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/ipuz/test-no-solution.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/ipuz/test-no-solution.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/ipuz/test-solved.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/ipuz/test-solved.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/ipuz/test-zero-indexed.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/ipuz/test-zero-indexed.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/ipuz/test.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/ipuz/test.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/jelly-roll/jelly-roll-combined.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jelly-roll/jelly-roll-combined.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jelly-roll/jelly-roll-nonsquare.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jelly-roll/jelly-roll-nonsquare.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jelly-roll/jelly-roll.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jelly-roll/jelly-roll.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/jelly-roll/jelly-roll.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jelly-roll/jelly-roll.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/gaps.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/gaps.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-applet-metadata.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-applet-metadata.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-barred.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-barred.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-bgimage.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-bgimage.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-cell-ranges.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-cell-ranges.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-diagonal.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-diagonal.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-formats.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-formats.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-html.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-html.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-inline-cells.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-inline-cells.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-invalid-namespace.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-invalid-namespace.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-no-namespaces.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-no-namespaces.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-no-solution.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-no-solution.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-prefilled.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-prefilled.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-shaded.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-shaded.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test-solved.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test-solved.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/jpz/test.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/jpz/test.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/labyrinth/labyrinth.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/labyrinth/labyrinth.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/labyrinth/labyrinth.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/labyrinth/labyrinth.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/marching-bands/marching-bands-without-rows.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/marching-bands/marching-bands-without-rows.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/marching-bands/marching-bands.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/marching-bands/marching-bands.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/marching-bands/marching-bands.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/marching-bands/marching-bands.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/bgimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/bgimage.png -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/test-acrostic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/test-acrostic.html -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/test-acrostic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/test-acrostic.json -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/test-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/test-api.json -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/test-bgimage-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/test-bgimage-api.json -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/test-bgimage-nofetcher.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/test-bgimage-nofetcher.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/test-bgimage.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/test-bgimage.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/test-bgimage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/test-bgimage.json -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/test.html -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/test.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/test.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/nyt/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/nyt/test.json -------------------------------------------------------------------------------- /src/commonTest/resources/patchwork/patchwork-unlabeled-pieces.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/patchwork/patchwork-unlabeled-pieces.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/patchwork/patchwork.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/patchwork/patchwork.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/patchwork/patchwork.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/patchwork/patchwork.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/pdf/fonts/NotoSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/pdf/fonts/NotoSerif-Bold.ttf -------------------------------------------------------------------------------- /src/commonTest/resources/pdf/fonts/NotoSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/pdf/fonts/NotoSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /src/commonTest/resources/pdf/fonts/NotoSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/pdf/fonts/NotoSerif-Italic.ttf -------------------------------------------------------------------------------- /src/commonTest/resources/pdf/fonts/NotoSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/pdf/fonts/NotoSerif-Regular.ttf -------------------------------------------------------------------------------- /src/commonTest/resources/pdf/fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/pdf/fonts/README -------------------------------------------------------------------------------- /src/commonTest/resources/princetonian/test-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/princetonian/test-authors.json -------------------------------------------------------------------------------- /src/commonTest/resources/princetonian/test-clues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/princetonian/test-clues.json -------------------------------------------------------------------------------- /src/commonTest/resources/princetonian/test-crossword.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Example Puzzle for Kotwords" 3 | } -------------------------------------------------------------------------------- /src/commonTest/resources/puz/gaps.puz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puz/gaps.puz -------------------------------------------------------------------------------- /src/commonTest/resources/puz/test-diagramless.puz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puz/test-diagramless.puz -------------------------------------------------------------------------------- /src/commonTest/resources/puz/test-iso-8859-1.puz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puz/test-iso-8859-1.puz -------------------------------------------------------------------------------- /src/commonTest/resources/puz/test-no-solution.puz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puz/test-no-solution.puz -------------------------------------------------------------------------------- /src/commonTest/resources/puz/test-simple.puz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puz/test-simple.puz -------------------------------------------------------------------------------- /src/commonTest/resources/puz/test-solved.puz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puz/test-solved.puz -------------------------------------------------------------------------------- /src/commonTest/resources/puz/test.puz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puz/test.puz -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-bgimage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-bgimage.json -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-hiddenSquares.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-hiddenSquares.json -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-isCircled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-isCircled.json -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-italics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-italics.json -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-italics.puz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-italics.puz -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-marchingBands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-marchingBands.json -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-new-rawc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-new-rawc.html -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-rowsGarden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-rowsGarden.json -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-shadedCells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-shadedCells.json -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-void.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-void.json -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test-wordlens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test-wordlens.json -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test.html -------------------------------------------------------------------------------- /src/commonTest/resources/puzzleme/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/puzzleme/test.json -------------------------------------------------------------------------------- /src/commonTest/resources/pzzl/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/pzzl/test.txt -------------------------------------------------------------------------------- /src/commonTest/resources/rows-garden/rows-garden-mini.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/rows-garden/rows-garden-mini.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/rows-garden/rows-garden.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/rows-garden/rows-garden.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/rows-garden/rows-garden.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/rows-garden/rows-garden.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/rows-garden/test-mini.rg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/rows-garden/test-mini.rg -------------------------------------------------------------------------------- /src/commonTest/resources/rows-garden/test.rg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/rows-garden/test.rg -------------------------------------------------------------------------------- /src/commonTest/resources/rows-garden/test.rgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/rows-garden/test.rgz -------------------------------------------------------------------------------- /src/commonTest/resources/snake-charmer/snake-charmer.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/snake-charmer/snake-charmer.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/snake-charmer/snake-charmer.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/snake-charmer/snake-charmer.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/spell-weaving/spell-weaving.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/spell-weaving/spell-weaving.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/spell-weaving/spell-weaving.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/spell-weaving/spell-weaving.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/spiral/spiral-chunked.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/spiral/spiral-chunked.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/spiral/spiral-nonsquare.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/spiral/spiral-nonsquare.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/spiral/spiral-rectangular.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/spiral/spiral-rectangular.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/spiral/spiral.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/spiral/spiral.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/spiral/spiral.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/spiral/spiral.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/twists-and-turns/twists-and-turns.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/twists-and-turns/twists-and-turns.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/twists-and-turns/twists-and-turns.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/twists-and-turns/twists-and-turns.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/two-tone/two-tone-nonsquare.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/two-tone/two-tone-nonsquare.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/two-tone/two-tone.ipuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/two-tone/two-tone.ipuz -------------------------------------------------------------------------------- /src/commonTest/resources/two-tone/two-tone.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/two-tone/two-tone.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/uclick/test-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/uclick/test-simple.json -------------------------------------------------------------------------------- /src/commonTest/resources/uclick/test-simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/uclick/test-simple.xml -------------------------------------------------------------------------------- /src/commonTest/resources/uclick/test-urldecode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/uclick/test-urldecode.json -------------------------------------------------------------------------------- /src/commonTest/resources/uclick/test.jpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/uclick/test.jpz -------------------------------------------------------------------------------- /src/commonTest/resources/wapo/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/wapo/test.json -------------------------------------------------------------------------------- /src/commonTest/resources/worldofcrosswords/test-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/worldofcrosswords/test-simple.json -------------------------------------------------------------------------------- /src/commonTest/resources/wsj/test-acrostic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/wsj/test-acrostic.json -------------------------------------------------------------------------------- /src/commonTest/resources/wsj/test-no-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/wsj/test-no-solution.json -------------------------------------------------------------------------------- /src/commonTest/resources/wsj/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/wsj/test.json -------------------------------------------------------------------------------- /src/commonTest/resources/xd/test-barred.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/xd/test-barred.xd -------------------------------------------------------------------------------- /src/commonTest/resources/xd/test-formatting.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/xd/test-formatting.xd -------------------------------------------------------------------------------- /src/commonTest/resources/xd/test-prefilled.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/xd/test-prefilled.xd -------------------------------------------------------------------------------- /src/commonTest/resources/xd/test-shaded.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/xd/test-shaded.xd -------------------------------------------------------------------------------- /src/commonTest/resources/xd/test.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/xd/test.xd -------------------------------------------------------------------------------- /src/commonTest/resources/xwordinfo/test-acrostic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/xwordinfo/test-acrostic.json -------------------------------------------------------------------------------- /src/commonTest/resources/xwordinfo/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/commonTest/resources/xwordinfo/test.json -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/Encodings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/Encodings.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/ParsedImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/ParsedImage.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfDocument.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfDocument.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfFonts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfFonts.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/Xml.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/Xml.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/Zip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/formats/Zip.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/Fontkit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/Fontkit.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/Http.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/Http.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/Interop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/Interop.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/JsZip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/JsZip.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/PdfLib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/PdfLib.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/PdfLibExtras.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/js/PdfLibExtras.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/AcrosticForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/AcrosticForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/AroundTheBendForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/AroundTheBendForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/CodedForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/CodedForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/CrosswordForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/CrosswordForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/CrosswordleForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/CrosswordleForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/EightTracksForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/EightTracksForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/HeartsAndArrowsForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/HeartsAndArrowsForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/HelterSkelterForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/HelterSkelterForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/Index.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/Index.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/JellyRollForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/JellyRollForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/LabyrinthForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/LabyrinthForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/MarchingBandsForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/MarchingBandsForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/PatchworkForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/PatchworkForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/PuzzleFileForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/PuzzleFileForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/RowsGardenForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/RowsGardenForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/SnakeCharmerForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/SnakeCharmerForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/SpellWeavingForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/SpellWeavingForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/SpiralForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/SpiralForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/TwistsAndTurnsForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/TwistsAndTurnsForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/TwoToneForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/TwoToneForm.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/html/FormFields.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/html/FormFields.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/html/Html.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/html/Html.kt -------------------------------------------------------------------------------- /src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/html/Tabs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/kotlin/com/jeffpdavidson/kotwords/web/html/Tabs.kt -------------------------------------------------------------------------------- /src/jsMain/resources/across-lite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/across-lite.html -------------------------------------------------------------------------------- /src/jsMain/resources/acrostic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/acrostic.html -------------------------------------------------------------------------------- /src/jsMain/resources/around-the-bend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/around-the-bend.html -------------------------------------------------------------------------------- /src/jsMain/resources/coded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/coded.html -------------------------------------------------------------------------------- /src/jsMain/resources/crossword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/crossword.html -------------------------------------------------------------------------------- /src/jsMain/resources/crosswordle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/crosswordle.html -------------------------------------------------------------------------------- /src/jsMain/resources/eight-tracks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/eight-tracks.html -------------------------------------------------------------------------------- /src/jsMain/resources/fonts/NotoSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/fonts/NotoSerif-Bold.ttf -------------------------------------------------------------------------------- /src/jsMain/resources/fonts/NotoSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/fonts/NotoSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /src/jsMain/resources/fonts/NotoSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/fonts/NotoSerif-Italic.ttf -------------------------------------------------------------------------------- /src/jsMain/resources/fonts/NotoSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/fonts/NotoSerif-Regular.ttf -------------------------------------------------------------------------------- /src/jsMain/resources/fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/fonts/README -------------------------------------------------------------------------------- /src/jsMain/resources/hearts-and-arrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/hearts-and-arrows.html -------------------------------------------------------------------------------- /src/jsMain/resources/helter-skelter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/helter-skelter.html -------------------------------------------------------------------------------- /src/jsMain/resources/icons/acrostic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/acrostic.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/around-the-bend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/around-the-bend.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/coded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/coded.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/crossword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/crossword.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/crosswordle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/crosswordle.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/eight-tracks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/eight-tracks.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/hearts-and-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/hearts-and-arrows.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/helter-skelter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/helter-skelter.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/jelly-roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/jelly-roll.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/labyrinth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/labyrinth.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/marching-bands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/marching-bands.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/patchwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/patchwork.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/rows-garden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/rows-garden.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/snake-charmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/snake-charmer.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/spell-weaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/spell-weaving.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/spiral.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/twists-and-turns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/twists-and-turns.png -------------------------------------------------------------------------------- /src/jsMain/resources/icons/two-tone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/icons/two-tone.png -------------------------------------------------------------------------------- /src/jsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/index.html -------------------------------------------------------------------------------- /src/jsMain/resources/jelly-roll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/jelly-roll.html -------------------------------------------------------------------------------- /src/jsMain/resources/labyrinth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/labyrinth.html -------------------------------------------------------------------------------- /src/jsMain/resources/marching-bands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/marching-bands.html -------------------------------------------------------------------------------- /src/jsMain/resources/patchwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/patchwork.html -------------------------------------------------------------------------------- /src/jsMain/resources/rows-garden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/rows-garden.html -------------------------------------------------------------------------------- /src/jsMain/resources/snake-charmer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/snake-charmer.html -------------------------------------------------------------------------------- /src/jsMain/resources/spell-weaving.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/spell-weaving.html -------------------------------------------------------------------------------- /src/jsMain/resources/spiral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/spiral.html -------------------------------------------------------------------------------- /src/jsMain/resources/twists-and-turns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/twists-and-turns.html -------------------------------------------------------------------------------- /src/jsMain/resources/two-tone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsMain/resources/two-tone.html -------------------------------------------------------------------------------- /src/jsTest/kotlin/com/jeffpdavidson/kotwords/JsTestRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/kotlin/com/jeffpdavidson/kotwords/JsTestRunner.kt -------------------------------------------------------------------------------- /src/jsTest/kotlin/com/jeffpdavidson/kotwords/formats/ImageComparator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/kotlin/com/jeffpdavidson/kotwords/formats/ImageComparator.kt -------------------------------------------------------------------------------- /src/jsTest/kotlin/com/jeffpdavidson/kotwords/js/PdfJs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/kotlin/com/jeffpdavidson/kotwords/js/PdfJs.kt -------------------------------------------------------------------------------- /src/jsTest/kotlin/com/jeffpdavidson/kotwords/js/PdfJsExtras.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/kotlin/com/jeffpdavidson/kotwords/js/PdfJsExtras.kt -------------------------------------------------------------------------------- /src/jsTest/kotlin/com/jeffpdavidson/kotwords/web/PuzzleFileFormTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/kotlin/com/jeffpdavidson/kotwords/web/PuzzleFileFormTest.kt -------------------------------------------------------------------------------- /src/jsTest/resources/marching-bands/marching-bands.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/resources/marching-bands/marching-bands.pdf -------------------------------------------------------------------------------- /src/jsTest/resources/pdf/test-bgimage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/resources/pdf/test-bgimage.pdf -------------------------------------------------------------------------------- /src/jsTest/resources/pdf/test-customFonts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/resources/pdf/test-customFonts.pdf -------------------------------------------------------------------------------- /src/jsTest/resources/pdf/test-html.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/resources/pdf/test-html.pdf -------------------------------------------------------------------------------- /src/jsTest/resources/pdf/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/resources/pdf/test.pdf -------------------------------------------------------------------------------- /src/jsTest/resources/save-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/resources/save-data.json -------------------------------------------------------------------------------- /src/jsTest/resources/twists-and-turns/sorted-twists.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/resources/twists-and-turns/sorted-twists.pdf -------------------------------------------------------------------------------- /src/jsTest/resources/twists-and-turns/unsorted-twists.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jsTest/resources/twists-and-turns/unsorted-twists.pdf -------------------------------------------------------------------------------- /src/jvmMain/kotlin/com/jeffpdavidson/kotwords/formats/Encodings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmMain/kotlin/com/jeffpdavidson/kotwords/formats/Encodings.kt -------------------------------------------------------------------------------- /src/jvmMain/kotlin/com/jeffpdavidson/kotwords/formats/ParsedImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmMain/kotlin/com/jeffpdavidson/kotwords/formats/ParsedImage.kt -------------------------------------------------------------------------------- /src/jvmMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfDocument.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfDocument.kt -------------------------------------------------------------------------------- /src/jvmMain/kotlin/com/jeffpdavidson/kotwords/formats/Xml.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmMain/kotlin/com/jeffpdavidson/kotwords/formats/Xml.kt -------------------------------------------------------------------------------- /src/jvmMain/kotlin/com/jeffpdavidson/kotwords/formats/Zip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmMain/kotlin/com/jeffpdavidson/kotwords/formats/Zip.kt -------------------------------------------------------------------------------- /src/jvmTest/kotlin/com/jeffpdavidson/kotwords/JvmTestRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmTest/kotlin/com/jeffpdavidson/kotwords/JvmTestRunner.kt -------------------------------------------------------------------------------- /src/jvmTest/kotlin/com/jeffpdavidson/kotwords/formats/ImageComparator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmTest/kotlin/com/jeffpdavidson/kotwords/formats/ImageComparator.kt -------------------------------------------------------------------------------- /src/jvmTest/resources/marching-bands/marching-bands.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmTest/resources/marching-bands/marching-bands.pdf -------------------------------------------------------------------------------- /src/jvmTest/resources/pdf/test-bgimage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmTest/resources/pdf/test-bgimage.pdf -------------------------------------------------------------------------------- /src/jvmTest/resources/pdf/test-customFonts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmTest/resources/pdf/test-customFonts.pdf -------------------------------------------------------------------------------- /src/jvmTest/resources/pdf/test-html.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmTest/resources/pdf/test-html.pdf -------------------------------------------------------------------------------- /src/jvmTest/resources/pdf/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmTest/resources/pdf/test.pdf -------------------------------------------------------------------------------- /src/jvmTest/resources/twists-and-turns/sorted-twists.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmTest/resources/twists-and-turns/sorted-twists.pdf -------------------------------------------------------------------------------- /src/jvmTest/resources/twists-and-turns/unsorted-twists.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/jvmTest/resources/twists-and-turns/unsorted-twists.pdf -------------------------------------------------------------------------------- /src/nativeMain/kotlin/com/jeffpdavidson/kotwords/cli/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/nativeMain/kotlin/com/jeffpdavidson/kotwords/cli/Main.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/com/jeffpdavidson/kotwords/formats/Encodings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/nativeMain/kotlin/com/jeffpdavidson/kotwords/formats/Encodings.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/com/jeffpdavidson/kotwords/formats/ParsedImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/nativeMain/kotlin/com/jeffpdavidson/kotwords/formats/ParsedImage.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfDocument.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/nativeMain/kotlin/com/jeffpdavidson/kotwords/formats/PdfDocument.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/com/jeffpdavidson/kotwords/formats/Xml.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/nativeMain/kotlin/com/jeffpdavidson/kotwords/formats/Xml.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/com/jeffpdavidson/kotwords/formats/Zip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/nativeMain/kotlin/com/jeffpdavidson/kotwords/formats/Zip.kt -------------------------------------------------------------------------------- /src/nativeTest/kotlin/com/jeffpdavidson/kotwords/TestRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/nativeTest/kotlin/com/jeffpdavidson/kotwords/TestRunner.kt -------------------------------------------------------------------------------- /src/nativeTest/kotlin/com/jeffpdavidson/kotwords/formats/ImageComparator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpd236/kotwords/HEAD/src/nativeTest/kotlin/com/jeffpdavidson/kotwords/formats/ImageComparator.kt --------------------------------------------------------------------------------