├── .github └── FUNDING.yml ├── 1.4.52-copy20-tachidesk ├── AndroidManifest.xml ├── apktool.yml ├── build │ ├── apk │ │ ├── AndroidManifest.xml │ │ ├── classes.dex │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.arsc │ └── resources.zip ├── original │ ├── AndroidManifest.xml │ └── META-INF │ │ ├── CERT.RSA │ │ ├── CERT.SF │ │ └── MANIFEST.MF ├── res │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ └── values │ │ └── public.xml ├── smali │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── extension │ │ ├── BuildConfig.smali │ │ ├── R$mipmap.smali │ │ ├── R.smali │ │ └── zh │ │ └── copymanga │ │ ├── CategoryFilter.smali │ │ ├── ChapterCommentDto$$serializer.smali │ │ ├── ChapterCommentDto$Companion.smali │ │ ├── ChapterCommentDto.smali │ │ ├── ChapterDto$$serializer.smali │ │ ├── ChapterDto$Companion$dateFormat$2.smali │ │ ├── ChapterDto$Companion.smali │ │ ├── ChapterDto.smali │ │ ├── ChapterPage.smali │ │ ├── ChapterPageListDto$$serializer.smali │ │ ├── ChapterPageListDto$Companion.smali │ │ ├── ChapterPageListDto.smali │ │ ├── ChapterPageListWrapperDto$$serializer.smali │ │ ├── ChapterPageListWrapperDto$Companion.smali │ │ ├── ChapterPageListWrapperDto.smali │ │ ├── ConstantsKt$resolutionRegex$2.smali │ │ ├── ConstantsKt.smali │ │ ├── CopyManga$$ExternalSyntheticLambda0.smali │ │ ├── CopyManga$client$1.smali │ │ ├── CopyManga$special$$inlined$get$1.smali │ │ ├── CopyManga.smali │ │ ├── DtoKt.smali │ │ ├── FiltersKt$fetchGenres$1.smali │ │ ├── FiltersKt.smali │ │ ├── GenreFilter.smali │ │ ├── HeadersInterceptor.smali │ │ ├── JsonKt$special$$inlined$injectLazy$1$1.smali │ │ ├── JsonKt$special$$inlined$injectLazy$1.smali │ │ ├── JsonKt.smali │ │ ├── KeywordDto$$serializer.smali │ │ ├── KeywordDto$Companion.smali │ │ ├── KeywordDto.smali │ │ ├── ListDto$$serializer.smali │ │ ├── ListDto$Companion.smali │ │ ├── ListDto.smali │ │ ├── MangaDto$$serializer.smali │ │ ├── MangaDto$Companion.smali │ │ ├── MangaDto$toSManga$1$1.smali │ │ ├── MangaDto.smali │ │ ├── MangaWrapperDto$$serializer.smali │ │ ├── MangaWrapperDto$Companion.smali │ │ ├── MangaWrapperDto.smali │ │ ├── Param.smali │ │ ├── PreferencesKt$$ExternalSyntheticLambda0.smali │ │ ├── PreferencesKt$$ExternalSyntheticLambda1.smali │ │ ├── PreferencesKt.smali │ │ ├── QueryFilter.smali │ │ ├── RankFilter.smali │ │ ├── ResultDto$$serializer.smali │ │ ├── ResultDto$Companion.smali │ │ ├── ResultDto.smali │ │ ├── ResultMessageDto$$serializer.smali │ │ ├── ResultMessageDto$Companion.smali │ │ ├── ResultMessageDto.smali │ │ ├── SearchFilter.smali │ │ ├── SelectFilter.smali │ │ ├── SortFilter.smali │ │ ├── TopFilter.smali │ │ ├── UrlDto$$serializer.smali │ │ ├── UrlDto$Companion.smali │ │ ├── UrlDto.smali │ │ ├── UtilsKt.smali │ │ ├── ValueDto$$serializer.smali │ │ ├── ValueDto$Companion.smali │ │ ├── ValueDto.smali │ │ ├── VersionDto$$serializer.smali │ │ ├── VersionDto$Companion.smali │ │ ├── VersionDto.smali │ │ └── VersionUpdaterKt.smali └── unknown │ ├── META-INF │ └── com │ │ └── android │ │ └── build │ │ └── gradle │ │ └── app-metadata.properties │ └── kotlin-tooling-metadata.json ├── 1.4.55-copy20 ├── AndroidManifest.xml ├── apktool.yml ├── build │ ├── apk │ │ ├── AndroidManifest.xml │ │ ├── classes.dex │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.arsc │ └── resources.zip ├── original │ ├── AndroidManifest.xml │ └── META-INF │ │ ├── CERT.RSA │ │ ├── CERT.SF │ │ └── MANIFEST.MF ├── res │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ └── values │ │ └── public.xml ├── smali │ ├── com │ │ └── luhuiguo │ │ │ └── chinese │ │ │ ├── ChineseUtils.smali │ │ │ ├── Converter.smali │ │ │ ├── Trie.smali │ │ │ ├── TrieNode.smali │ │ │ └── pinyin │ │ │ ├── CaseType.smali │ │ │ ├── Pinyin.smali │ │ │ ├── PinyinFormat.smali │ │ │ ├── PinyinFormatter$1.smali │ │ │ ├── PinyinFormatter.smali │ │ │ ├── ToneType.smali │ │ │ └── YuCharType.smali │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── extension │ │ ├── BuildConfig.smali │ │ ├── R$mipmap.smali │ │ ├── R.smali │ │ └── zh │ │ └── copymanga │ │ ├── CategoryFilter.smali │ │ ├── ChapterCommentDto$$serializer.smali │ │ ├── ChapterCommentDto$Companion.smali │ │ ├── ChapterCommentDto.smali │ │ ├── ChapterDto$$serializer.smali │ │ ├── ChapterDto$Companion$dateFormat$2.smali │ │ ├── ChapterDto$Companion.smali │ │ ├── ChapterDto.smali │ │ ├── ChapterPage.smali │ │ ├── ChapterPageListDto$$serializer.smali │ │ ├── ChapterPageListDto$Companion.smali │ │ ├── ChapterPageListDto.smali │ │ ├── ChapterPageListWrapperDto$$serializer.smali │ │ ├── ChapterPageListWrapperDto$Companion.smali │ │ ├── ChapterPageListWrapperDto.smali │ │ ├── CommentsInterceptor$Tag.smali │ │ ├── CommentsInterceptor.smali │ │ ├── ConstantsKt$resolutionRegex$2.smali │ │ ├── ConstantsKt.smali │ │ ├── CopyManga$$ExternalSyntheticLambda0.smali │ │ ├── CopyManga$$ExternalSyntheticLambda1.smali │ │ ├── CopyManga$_client$1$1.smali │ │ ├── CopyManga$client$1.smali │ │ ├── CopyManga$fetchSearchManga$1$$ExternalSyntheticLambda0.smali │ │ ├── CopyManga$fetchSearchManga$1$invoke$lambda$1$$inlined$get$1.smali │ │ ├── CopyManga$fetchSearchManga$1.smali │ │ ├── CopyManga$special$$inlined$get$1.smali │ │ ├── CopyManga.smali │ │ ├── DtoKt.smali │ │ ├── FiltersKt$fetchGenres$1.smali │ │ ├── FiltersKt.smali │ │ ├── GenreFilter.smali │ │ ├── HeadersInterceptor.smali │ │ ├── HeadersKt.smali │ │ ├── JsonKt$special$$inlined$injectLazy$1$1.smali │ │ ├── JsonKt$special$$inlined$injectLazy$1.smali │ │ ├── JsonKt.smali │ │ ├── KeywordDto$$serializer.smali │ │ ├── KeywordDto$Companion.smali │ │ ├── KeywordDto.smali │ │ ├── ListDto$$serializer.smali │ │ ├── ListDto$Companion.smali │ │ ├── ListDto.smali │ │ ├── MangaDto$$serializer.smali │ │ ├── MangaDto$Companion.smali │ │ ├── MangaDto$toSManga$1$1.smali │ │ ├── MangaDto$toSMangaDetails$1$2.smali │ │ ├── MangaDto.smali │ │ ├── MangaWrapperDto$$serializer.smali │ │ ├── MangaWrapperDto$Companion.smali │ │ ├── MangaWrapperDto.smali │ │ ├── Param.smali │ │ ├── PreferencesKt$$ExternalSyntheticLambda0.smali │ │ ├── PreferencesKt$$ExternalSyntheticLambda1.smali │ │ ├── PreferencesKt$$ExternalSyntheticLambda2.smali │ │ ├── PreferencesKt.smali │ │ ├── QueryFilter.smali │ │ ├── RankFilter.smali │ │ ├── ResultDto$$serializer.smali │ │ ├── ResultDto$Companion.smali │ │ ├── ResultDto.smali │ │ ├── ResultMessageDto$$serializer.smali │ │ ├── ResultMessageDto$Companion.smali │ │ ├── ResultMessageDto.smali │ │ ├── SearchFilter.smali │ │ ├── SelectFilter.smali │ │ ├── SortFilter.smali │ │ ├── TokenKt$$ExternalSyntheticLambda0.smali │ │ ├── TokenKt$$ExternalSyntheticLambda1.smali │ │ ├── TokenKt$getToken$1$1$2$$ExternalSyntheticLambda0.smali │ │ ├── TokenKt$getToken$1$1$2.smali │ │ ├── TokenKt$getToken$lambda$2$lambda$1$$inlined$get$1.smali │ │ ├── TokenKt.smali │ │ ├── TopFilter.smali │ │ ├── UrlDto$$serializer.smali │ │ ├── UrlDto$Companion.smali │ │ ├── UrlDto.smali │ │ ├── ValueDto$$serializer.smali │ │ ├── ValueDto$Companion.smali │ │ ├── ValueDto.smali │ │ ├── VersionDto$$serializer.smali │ │ ├── VersionDto$Companion.smali │ │ ├── VersionDto.smali │ │ └── VersionUpdaterKt.smali └── unknown │ ├── META-INF │ └── com │ │ └── android │ │ └── build │ │ └── gradle │ │ └── app-metadata.properties │ ├── kotlin-tooling-metadata.json │ ├── simp.txt │ └── simplified.txt ├── README.md ├── apk ├── tachiyomi-zh.copymanga-v1.4.52-tachidesk.apk └── tachiyomi-zh.copymanga-v1.4.55.apk ├── icon └── eu.kanade.tachiyomi.extension.zh.copymanga.png ├── index.html ├── index.min.json └── repo.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: thenano 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 12 | polar: # Replace with a single Polar username 13 | buy_me_a_coffee: # Replace with a single Buy Me a Coffee username 14 | thanks_dev: # Replace with a single thanks.dev username 15 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 16 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/apktool.yml: -------------------------------------------------------------------------------- 1 | version: 2.11.1 2 | apkFileName: tachidesk-zh.copymanga-v1.4.52.apk 3 | isFrameworkApk: false 4 | usesFramework: 5 | ids: 6 | - 1 7 | tag: null 8 | sdkInfo: 9 | minSdkVersion: 21 10 | targetSdkVersion: 34 11 | packageInfo: 12 | forcedPackageId: 127 13 | renameManifestPackage: null 14 | versionInfo: 15 | versionCode: 52 16 | versionName: 1.4.52 17 | sharedLibrary: false 18 | sparseResources: false 19 | compactEntries: false 20 | doNotCompress: 21 | - arsc 22 | - png 23 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/build/apk/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/build/apk/AndroidManifest.xml -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/build/apk/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/build/apk/classes.dex -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/build/apk/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/build/apk/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/build/apk/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/build/apk/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/build/apk/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/build/apk/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/build/apk/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/build/apk/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/build/apk/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/build/apk/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/build/apk/resources.arsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/build/apk/resources.arsc -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/build/resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/build/resources.zip -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/original/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/original/AndroidManifest.xml -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/original/META-INF/CERT.RSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/original/META-INF/CERT.RSA -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/original/META-INF/CERT.SF: -------------------------------------------------------------------------------- 1 | Signature-Version: 1.0 2 | Created-By: Android Gradle 7.4.1 3 | SHA-256-Digest-Manifest: m2RGWdXAFpGVMskLTJBONIIPpH2c8SbmOP5bpWtXB2s= 4 | X-Android-APK-Signed: 2 5 | 6 | Name: AndroidManifest.xml 7 | SHA-256-Digest: YD3jFpI+15qH8OVISFrIniwsv+zUT1WrFyCorD0lJVc= 8 | 9 | Name: META-INF/com/android/build/gradle/app-metadata.properties 10 | SHA-256-Digest: y9fq2c0CocXaXZzKhjbEZfHueLxnjJ4xM0A/xFPdKRg= 11 | 12 | Name: classes.dex 13 | SHA-256-Digest: q+6WoOJkEP+MEpFztBnBV+N7Z0g9EIop7iRbRSSwOew= 14 | 15 | Name: kotlin-tooling-metadata.json 16 | SHA-256-Digest: tbmPgPpVhmfAPr7k9/G5QrEdDpSyaZJh6hJHI6RMPKE= 17 | 18 | Name: res/CG.png 19 | SHA-256-Digest: CxvUJlIJbd/4LDmFe6amgeweIsa/t72cmrgh1YJpM34= 20 | 21 | Name: res/D2.png 22 | SHA-256-Digest: y8lFIqHfIL+I7nhBy9ncOt1Boeb1FU37PnzUoHY3qFI= 23 | 24 | Name: res/SD.png 25 | SHA-256-Digest: 4aDJi9GeRLL4eGJzpqeyFalMtcdIHsldgMja+jllVJ8= 26 | 27 | Name: res/jy.png 28 | SHA-256-Digest: hp4MC/7D7Ap/6Dwedje90PIOhd/l9pqoAd5wwrpeUW0= 29 | 30 | Name: res/u3.png 31 | SHA-256-Digest: bRZkTFeMb82VL5Xr4Yyh4FAoLxCJTYET70M4OsSKdt0= 32 | 33 | Name: resources.arsc 34 | SHA-256-Digest: R+peX7yIycCVhPZZR7on0X82uu2ikphPPnOx/LHQqYw= 35 | 36 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/original/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Built-By: Signflinger 3 | Created-By: Android Gradle 7.4.1 4 | 5 | Name: AndroidManifest.xml 6 | SHA-256-Digest: qOqVQQz5m0eJcUXG2ghbsU1RTieHshwQELRiL+o5WoE= 7 | 8 | Name: META-INF/com/android/build/gradle/app-metadata.properties 9 | SHA-256-Digest: /SQZ9Ujx9VYIUzBkC2vSBQu7QN3GqLIGSAz8BV/uN/c= 10 | 11 | Name: classes.dex 12 | SHA-256-Digest: YH9nCo+Q9EV0udY5zZ/pgwzlrw4a5NtXUji2H+YgGB4= 13 | 14 | Name: kotlin-tooling-metadata.json 15 | SHA-256-Digest: 6Yp9jPAOcMRpUC1T/qNrnbwKD3bSTLCaggO86rKQzmQ= 16 | 17 | Name: res/CG.png 18 | SHA-256-Digest: pGRK0S5DF3qd86FsI4FFcRNpJ3wZ58fBAtrBD2j423Q= 19 | 20 | Name: res/D2.png 21 | SHA-256-Digest: pYXx1q0lYLkanN7N7DD1o6T8ZrIHpFClCyKF7Cf/Xk8= 22 | 23 | Name: res/SD.png 24 | SHA-256-Digest: 1kzqxNb8Xorj6KmVoaRLKp0Qr+6Hh+Xz+XOwAcjgYKI= 25 | 26 | Name: res/jy.png 27 | SHA-256-Digest: CxPWh4Ryu+37U4LAByzTTAnZps1936kJvJB/oi6vgpg= 28 | 29 | Name: res/u3.png 30 | SHA-256-Digest: wdPKhcLuaxc0lcvw9ExOoDYqZqqtsdy34f4+f9RCe6A= 31 | 32 | Name: resources.arsc 33 | SHA-256-Digest: DftZcG5iQp+6I6OO4yiW31x7vjZ7T+MeQHK2Re+S8/I= 34 | 35 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.52-copy20-tachidesk/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/res/values/public.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/BuildConfig.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/BuildConfig; 2 | .super Ljava/lang/Object; 3 | .source "BuildConfig.java" 4 | 5 | 6 | # static fields 7 | .field public static final APPLICATION_ID:Ljava/lang/String; = "eu.kanade.tachiyomi.extension.zh.copymanga" 8 | 9 | .field public static final BUILD_TYPE:Ljava/lang/String; = "release" 10 | 11 | .field public static final DEBUG:Z = false 12 | 13 | .field public static final VERSION_CODE:I = 0x34 14 | 15 | .field public static final VERSION_NAME:Ljava/lang/String; = "1.4.52" 16 | 17 | 18 | # direct methods 19 | .method public constructor ()V 20 | .locals 0 21 | 22 | .line 6 23 | invoke-direct {p0}, Ljava/lang/Object;->()V 24 | 25 | return-void 26 | .end method 27 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/R$mipmap.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/R$mipmap; 2 | .super Ljava/lang/Object; 3 | 4 | 5 | # annotations 6 | .annotation system Ldalvik/annotation/EnclosingClass; 7 | value = Leu/kanade/tachiyomi/extension/R; 8 | .end annotation 9 | 10 | .annotation system Ldalvik/annotation/InnerClass; 11 | accessFlags = 0x19 12 | name = "mipmap" 13 | .end annotation 14 | 15 | 16 | # static fields 17 | .field public static final ic_launcher:I = 0x7f010000 18 | 19 | 20 | # direct methods 21 | .method private constructor ()V 22 | .locals 0 23 | 24 | invoke-direct {p0}, Ljava/lang/Object;->()V 25 | 26 | return-void 27 | .end method 28 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/R.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/R; 2 | .super Ljava/lang/Object; 3 | 4 | 5 | # annotations 6 | .annotation system Ldalvik/annotation/MemberClasses; 7 | value = { 8 | Leu/kanade/tachiyomi/extension/R$mipmap; 9 | } 10 | .end annotation 11 | 12 | 13 | # direct methods 14 | .method private constructor ()V 15 | .locals 0 16 | 17 | invoke-direct {p0}, Ljava/lang/Object;->()V 18 | 19 | return-void 20 | .end method 21 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter.smali: -------------------------------------------------------------------------------- 1 | .class public interface abstract Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter; 2 | .super Ljava/lang/Object; 3 | .source "Filters.kt" 4 | 5 | # interfaces 6 | .implements Leu/kanade/tachiyomi/extension/zh/copymanga/QueryFilter; 7 | 8 | 9 | # annotations 10 | .annotation runtime Lkotlin/Metadata; 11 | d1 = { 12 | "\u0000\n\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008f\u0018\u00002\u00020\u0001\u00a8\u0006\u0002" 13 | } 14 | d2 = { 15 | "Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter;", 16 | "Leu/kanade/tachiyomi/extension/zh/copymanga/QueryFilter;", 17 | "tachiyomi-zh.copymanga-v1.4.52_release" 18 | } 19 | k = 0x1 20 | mv = { 21 | 0x1, 22 | 0x7, 23 | 0x1 24 | } 25 | xi = 0x30 26 | .end annotation 27 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto;", 27 | "tachiyomi-zh.copymanga-v1.4.52_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 94 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 94 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2.smali: -------------------------------------------------------------------------------- 1 | .class final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "Dto.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function0; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingClass; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x18 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function0<", 23 | "Ljava/text/SimpleDateFormat;", 24 | ">;" 25 | } 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\u0008\n\u0000\n\u0002\u0018\u0002\n\u0000\u0010\u0000\u001a\u00020\u0001H\n\u00a2\u0006\u0002\u0008\u0002" 31 | } 32 | d2 = { 33 | "", 34 | "Ljava/text/SimpleDateFormat;", 35 | "invoke" 36 | } 37 | k = 0x3 38 | mv = { 39 | 0x1, 40 | 0x7, 41 | 0x1 42 | } 43 | xi = 0x30 44 | .end annotation 45 | 46 | 47 | # static fields 48 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2; 49 | 50 | 51 | # direct methods 52 | .method static constructor ()V 53 | .locals 1 54 | 55 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2; 56 | 57 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2;->()V 58 | 59 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2; 60 | 61 | return-void 62 | .end method 63 | 64 | .method constructor ()V 65 | .locals 1 66 | 67 | const/4 v0, 0x0 68 | 69 | invoke-direct {p0, v0}, Lkotlin/jvm/internal/Lambda;->(I)V 70 | 71 | return-void 72 | .end method 73 | 74 | 75 | # virtual methods 76 | .method public bridge synthetic invoke()Ljava/lang/Object; 77 | .locals 1 78 | 79 | .line 61 80 | invoke-virtual {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2;->invoke()Ljava/text/SimpleDateFormat; 81 | 82 | move-result-object v0 83 | 84 | return-object v0 85 | .end method 86 | 87 | .method public final invoke()Ljava/text/SimpleDateFormat; 88 | .locals 3 89 | 90 | .line 61 91 | new-instance v0, Ljava/text/SimpleDateFormat; 92 | 93 | const-string v1, "yyyy-MM-dd" 94 | 95 | sget-object v2, Ljava/util/Locale;->ENGLISH:Ljava/util/Locale; 96 | 97 | invoke-direct {v0, v1, v2}, Ljava/text/SimpleDateFormat;->(Ljava/lang/String;Ljava/util/Locale;)V 98 | 99 | return-object v0 100 | .end method 101 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u001e\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0005\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\t\u001a\u0008\u0012\u0004\u0012\u00020\u000b0\nH\u00c6\u0001R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\u000c\n\u0004\u0008\u0007\u0010\u0008\u001a\u0004\u0008\u0005\u0010\u0006\u00a8\u0006\u000c" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion;", 22 | "", 23 | "()V", 24 | "dateFormat", 25 | "Ljava/text/SimpleDateFormat;", 26 | "getDateFormat", 27 | "()Ljava/text/SimpleDateFormat;", 28 | "dateFormat$delegate", 29 | "Lkotlin/Lazy;", 30 | "serializer", 31 | "Lkotlinx/serialization/KSerializer;", 32 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto;", 33 | "tachiyomi-zh.copymanga-v1.4.52_release" 34 | } 35 | k = 0x1 36 | mv = { 37 | 0x1, 38 | 0x7, 39 | 0x1 40 | } 41 | xi = 0x30 42 | .end annotation 43 | 44 | 45 | # direct methods 46 | .method private constructor ()V 47 | .locals 0 48 | 49 | .line 60 50 | invoke-direct {p0}, Ljava/lang/Object;->()V 51 | 52 | return-void 53 | .end method 54 | 55 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 56 | .locals 0 57 | 58 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion;->()V 59 | 60 | return-void 61 | .end method 62 | 63 | 64 | # virtual methods 65 | .method public final getDateFormat()Ljava/text/SimpleDateFormat; 66 | .locals 1 67 | 68 | .line 61 69 | invoke-static {}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto;->access$getDateFormat$delegate$cp()Lkotlin/Lazy; 70 | 71 | move-result-object v0 72 | 73 | invoke-interface {v0}, Lkotlin/Lazy;->getValue()Ljava/lang/Object; 74 | 75 | move-result-object v0 76 | 77 | check-cast v0, Ljava/text/SimpleDateFormat; 78 | 79 | return-object v0 80 | .end method 81 | 82 | .method public final serializer()Lkotlinx/serialization/KSerializer; 83 | .locals 1 84 | .annotation system Ldalvik/annotation/Signature; 85 | value = { 86 | "()", 87 | "Lkotlinx/serialization/KSerializer<", 88 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto;", 89 | ">;" 90 | } 91 | .end annotation 92 | 93 | .line 60 94 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$$serializer; 95 | 96 | check-cast v0, Lkotlinx/serialization/KSerializer; 97 | 98 | return-object v0 99 | .end method 100 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | # interfaces 6 | .implements Ljava/lang/Comparable; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/Signature; 11 | value = { 12 | "Ljava/lang/Object;", 13 | "Ljava/lang/Comparable<", 14 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;", 15 | ">;" 16 | } 17 | .end annotation 18 | 19 | .annotation runtime Lkotlin/Metadata; 20 | d1 = { 21 | "\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u000f\n\u0000\n\u0002\u0010\u0008\n\u0000\n\u0002\u0010\u000e\n\u0002\u0008\u0006\u0018\u00002\u0008\u0012\u0004\u0012\u00020\u00000\u0001B\u0017\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0008\u0010\u0004\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\u0002\u0010\u0006J\u0011\u0010\t\u001a\u00020\u00032\u0006\u0010\n\u001a\u00020\u0000H\u0096\u0002R\u000e\u0010\u0002\u001a\u00020\u0003X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0013\u0010\u0004\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\u0008\n\u0000\u001a\u0004\u0008\u0007\u0010\u0008\u00a8\u0006\u000b" 22 | } 23 | d2 = { 24 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;", 25 | "", 26 | "index", 27 | "", 28 | "url", 29 | "", 30 | "(ILjava/lang/String;)V", 31 | "getUrl", 32 | "()Ljava/lang/String;", 33 | "compareTo", 34 | "other", 35 | "tachiyomi-zh.copymanga-v1.4.52_release" 36 | } 37 | k = 0x1 38 | mv = { 39 | 0x1, 40 | 0x7, 41 | 0x1 42 | } 43 | xi = 0x30 44 | .end annotation 45 | 46 | 47 | # instance fields 48 | .field private final index:I 49 | 50 | .field private final url:Ljava/lang/String; 51 | 52 | 53 | # direct methods 54 | .method public constructor (ILjava/lang/String;)V 55 | .locals 0 56 | 57 | .line 90 58 | invoke-direct {p0}, Ljava/lang/Object;->()V 59 | 60 | iput p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->index:I 61 | 62 | iput-object p2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->url:Ljava/lang/String; 63 | 64 | return-void 65 | .end method 66 | 67 | 68 | # virtual methods 69 | .method public compareTo(Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;)I 70 | .locals 1 71 | 72 | const-string v0, "other" 73 | 74 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 75 | 76 | .line 91 77 | iget v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->index:I 78 | 79 | iget p1, p1, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->index:I 80 | 81 | invoke-static {v0, p1}, Lkotlin/jvm/internal/Intrinsics;->compare(II)I 82 | 83 | move-result p1 84 | 85 | return p1 86 | .end method 87 | 88 | .method public bridge synthetic compareTo(Ljava/lang/Object;)I 89 | .locals 0 90 | 91 | .line 90 92 | check-cast p1, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage; 93 | 94 | invoke-virtual {p0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->compareTo(Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;)I 95 | 96 | move-result p1 97 | 98 | return p1 99 | .end method 100 | 101 | .method public final getUrl()Ljava/lang/String; 102 | .locals 1 103 | 104 | .line 90 105 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->url:Ljava/lang/String; 106 | 107 | return-object v0 108 | .end method 109 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto;", 27 | "tachiyomi-zh.copymanga-v1.4.52_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 81 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 81 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto;", 27 | "tachiyomi-zh.copymanga-v1.4.52_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 87 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 87 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2.smali: -------------------------------------------------------------------------------- 1 | .class final Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "Constants.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function0; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingClass; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x18 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function0<", 23 | "Lkotlin/text/Regex;", 24 | ">;" 25 | } 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\u0008\n\u0000\n\u0002\u0018\u0002\n\u0000\u0010\u0000\u001a\u00020\u0001H\n\u00a2\u0006\u0002\u0008\u0002" 31 | } 32 | d2 = { 33 | "", 34 | "Lkotlin/text/Regex;", 35 | "invoke" 36 | } 37 | k = 0x3 38 | mv = { 39 | 0x1, 40 | 0x7, 41 | 0x1 42 | } 43 | xi = 0x30 44 | .end annotation 45 | 46 | 47 | # static fields 48 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2; 49 | 50 | 51 | # direct methods 52 | .method static constructor ()V 53 | .locals 1 54 | 55 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2; 56 | 57 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2;->()V 58 | 59 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2; 60 | 61 | return-void 62 | .end method 63 | 64 | .method constructor ()V 65 | .locals 1 66 | 67 | const/4 v0, 0x0 68 | 69 | invoke-direct {p0, v0}, Lkotlin/jvm/internal/Lambda;->(I)V 70 | 71 | return-void 72 | .end method 73 | 74 | 75 | # virtual methods 76 | .method public bridge synthetic invoke()Ljava/lang/Object; 77 | .locals 1 78 | 79 | .line 31 80 | invoke-virtual {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2;->invoke()Lkotlin/text/Regex; 81 | 82 | move-result-object v0 83 | 84 | return-object v0 85 | .end method 86 | 87 | .method public final invoke()Lkotlin/text/Regex; 88 | .locals 2 89 | 90 | .line 31 91 | new-instance v0, Lkotlin/text/Regex; 92 | 93 | const-string v1, "\\d+(?=x\\.(?:jpg|webp)$)" 94 | 95 | invoke-direct {v0, v1}, Lkotlin/text/Regex;->(Ljava/lang/String;)V 96 | 97 | return-object v0 98 | .end method 99 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda0.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda0; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Ljava/util/concurrent/Callable; 7 | 8 | 9 | # instance fields 10 | .field public final synthetic f$0:Leu/kanade/tachiyomi/source/model/SManga; 11 | 12 | .field public final synthetic f$1:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 13 | 14 | 15 | # direct methods 16 | .method public synthetic constructor (Leu/kanade/tachiyomi/source/model/SManga;Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;)V 17 | .locals 0 18 | 19 | invoke-direct {p0}, Ljava/lang/Object;->()V 20 | 21 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda0;->f$0:Leu/kanade/tachiyomi/source/model/SManga; 22 | 23 | iput-object p2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda0;->f$1:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 24 | 25 | return-void 26 | .end method 27 | 28 | 29 | # virtual methods 30 | .method public final call()Ljava/lang/Object; 31 | .locals 2 32 | 33 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda0;->f$0:Leu/kanade/tachiyomi/source/model/SManga; 34 | 35 | iget-object v1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda0;->f$1:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 36 | 37 | invoke-static {v0, v1}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->$r8$lambda$70H3YNtMz8fauo1NKrgoqY4zD6Y(Leu/kanade/tachiyomi/source/model/SManga;Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;)Ljava/util/List; 38 | 39 | move-result-object v0 40 | 41 | return-object v0 42 | .end method 43 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1.smali: -------------------------------------------------------------------------------- 1 | .class final Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "CopyManga.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function0; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingMethod; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->getClient()Lokhttp3/OkHttpClient; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x18 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function0<", 23 | "Lkotlin/Unit;", 24 | ">;" 25 | } 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\u0008\n\u0000\n\u0002\u0010\u0002\n\u0000\u0010\u0000\u001a\u00020\u0001H\n\u00a2\u0006\u0002\u0008\u0002" 31 | } 32 | d2 = { 33 | "", 34 | "", 35 | "invoke" 36 | } 37 | k = 0x3 38 | mv = { 39 | 0x1, 40 | 0x7, 41 | 0x1 42 | } 43 | xi = 0x30 44 | .end annotation 45 | 46 | 47 | # instance fields 48 | .field final synthetic this$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 49 | 50 | 51 | # direct methods 52 | .method constructor (Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;)V 53 | .locals 0 54 | 55 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1;->this$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 56 | 57 | const/4 p1, 0x0 58 | 59 | invoke-direct {p0, p1}, Lkotlin/jvm/internal/Lambda;->(I)V 60 | 61 | return-void 62 | .end method 63 | 64 | 65 | # virtual methods 66 | .method public bridge synthetic invoke()Ljava/lang/Object; 67 | .locals 1 68 | 69 | .line 102 70 | invoke-virtual {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1;->invoke()V 71 | 72 | sget-object v0, Lkotlin/Unit;->INSTANCE:Lkotlin/Unit; 73 | 74 | return-object v0 75 | .end method 76 | 77 | .method public final invoke()V 78 | .locals 3 79 | 80 | .line 102 81 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1;->this$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 82 | 83 | invoke-static {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->access$get_client$p(Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;)Lokhttp3/OkHttpClient; 84 | 85 | move-result-object v1 86 | 87 | iget-object v2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1;->this$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 88 | 89 | invoke-static {v2}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->access$getPreferences$p(Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;)Landroid/content/SharedPreferences; 90 | 91 | move-result-object v2 92 | 93 | invoke-static {v0, v1, v2}, Leu/kanade/tachiyomi/extension/zh/copymanga/VersionUpdaterKt;->updateVersion(Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;Lokhttp3/OkHttpClient;Landroid/content/SharedPreferences;)V 94 | 95 | return-void 96 | .end method 97 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$special$$inlined$get$1.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$special$$inlined$get$1; 2 | .super Luy/kohesive/injekt/api/FullTypeReference; 3 | .source "TypeInfo.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingMethod; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->()V 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = null 14 | .end annotation 15 | 16 | .annotation system Ldalvik/annotation/Signature; 17 | value = { 18 | "Luy/kohesive/injekt/api/FullTypeReference<", 19 | "Landroid/app/Application;", 20 | ">;" 21 | } 22 | .end annotation 23 | 24 | .annotation system Ldalvik/annotation/SourceDebugExtension; 25 | value = "SMAP\nTypeInfo.kt\nKotlin\n*S Kotlin\n*F\n+ 1 TypeInfo.kt\nuy/kohesive/injekt/api/TypeInfoKt$fullType$1\n*L\n1#1,44:1\n*E\n" 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\r\n\u0000\n\u0002\u0018\u0002\n\u0002\u0008\u0003*\u0001\u0000\u0008\n\u0018\u00002\u0008\u0012\u0004\u0012\u00028\u00000\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003\u00b8\u0006\u0004" 31 | } 32 | d2 = { 33 | "uy/kohesive/injekt/api/TypeInfoKt$fullType$1", 34 | "Luy/kohesive/injekt/api/FullTypeReference;", 35 | "()V", 36 | "injekt-api-compileKotlin", 37 | "uy/kohesive/injekt/api/FactoryKt$get$$inlined$fullType$1" 38 | } 39 | k = 0x1 40 | mv = { 41 | 0x1, 42 | 0x7, 43 | 0x1 44 | } 45 | .end annotation 46 | 47 | 48 | # direct methods 49 | .method constructor ()V 50 | .locals 0 51 | 52 | .line 27 53 | invoke-direct {p0}, Luy/kohesive/injekt/api/FullTypeReference;->()V 54 | 55 | return-void 56 | .end method 57 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/DtoKt.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/DtoKt; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation runtime Lkotlin/Metadata; 8 | d1 = { 9 | "\u0000\u0014\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u000e\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000*\"\u0010\u0000\"\u000e\u0012\u0004\u0012\u00020\u0002\u0012\u0004\u0012\u00020\u0003`\u00012\u000e\u0012\u0004\u0012\u00020\u0002\u0012\u0004\u0012\u00020\u00030\u0004\u00a8\u0006\u0005" 10 | } 11 | d2 = { 12 | "ChapterGroups", 13 | "Lkotlin/collections/LinkedHashMap;", 14 | "", 15 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;", 16 | "Ljava/util/LinkedHashMap;", 17 | "tachiyomi-zh.copymanga-v1.4.52_release" 18 | } 19 | k = 0x2 20 | mv = { 21 | 0x1, 22 | 0x7, 23 | 0x1 24 | } 25 | xi = 0x30 26 | .end annotation 27 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/GenreFilter.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/GenreFilter; 2 | .super Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter; 3 | .source "Filters.kt" 4 | 5 | # interfaces 6 | .implements Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter; 7 | 8 | 9 | # annotations 10 | .annotation runtime Lkotlin/Metadata; 11 | d1 = { 12 | "\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0011\n\u0002\u0018\u0002\n\u0002\u0008\u0002\u0018\u00002\u00020\u00012\u00020\u0002B\u0013\u0012\u000c\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004\u00a2\u0006\u0002\u0010\u0006\u00a8\u0006\u0007" 13 | } 14 | d2 = { 15 | "Leu/kanade/tachiyomi/extension/zh/copymanga/GenreFilter;", 16 | "Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;", 17 | "Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter;", 18 | "genres", 19 | "", 20 | "Leu/kanade/tachiyomi/extension/zh/copymanga/Param;", 21 | "([Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V", 22 | "tachiyomi-zh.copymanga-v1.4.52_release" 23 | } 24 | k = 0x1 25 | mv = { 26 | 0x1, 27 | 0x7, 28 | 0x1 29 | } 30 | xi = 0x30 31 | .end annotation 32 | 33 | 34 | # direct methods 35 | .method public constructor ([Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V 36 | .locals 2 37 | 38 | const-string v0, "genres" 39 | 40 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 41 | 42 | const-string v0, "\u9898\u6750" 43 | 44 | const-string v1, "theme" 45 | 46 | .line 99 47 | invoke-direct {p0, v0, v1, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;->(Ljava/lang/String;Ljava/lang/String;[Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V 48 | 49 | return-void 50 | .end method 51 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor; 2 | .super Ljava/lang/Object; 3 | .source "HeadersInterceptor.kt" 4 | 5 | # interfaces 6 | .implements Lokhttp3/Interceptor; 7 | 8 | 9 | # annotations 10 | .annotation runtime Lkotlin/Metadata; 11 | d1 = { 12 | "\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\u0008\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0016\u00a8\u0006\u0007" 13 | } 14 | d2 = { 15 | "Leu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor;", 16 | "Lokhttp3/Interceptor;", 17 | "()V", 18 | "intercept", 19 | "Lokhttp3/Response;", 20 | "chain", 21 | "Lokhttp3/Interceptor$Chain;", 22 | "tachiyomi-zh.copymanga-v1.4.52_release" 23 | } 24 | k = 0x1 25 | mv = { 26 | 0x1, 27 | 0x7, 28 | 0x1 29 | } 30 | xi = 0x30 31 | .end annotation 32 | 33 | 34 | # static fields 35 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor; 36 | 37 | 38 | # direct methods 39 | .method static constructor ()V 40 | .locals 1 41 | 42 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor; 43 | 44 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor;->()V 45 | 46 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor; 47 | 48 | return-void 49 | .end method 50 | 51 | .method private constructor ()V 52 | .locals 0 53 | 54 | .line 6 55 | invoke-direct {p0}, Ljava/lang/Object;->()V 56 | 57 | return-void 58 | .end method 59 | 60 | 61 | # virtual methods 62 | .method public intercept(Lokhttp3/Interceptor$Chain;)Lokhttp3/Response; 63 | .locals 2 64 | 65 | const-string v0, "chain" 66 | 67 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 68 | 69 | .line 8 70 | invoke-interface {p1}, Lokhttp3/Interceptor$Chain;->request()Lokhttp3/Request; 71 | 72 | move-result-object v0 73 | 74 | .line 9 75 | invoke-virtual {v0}, Lokhttp3/Request;->newBuilder()Lokhttp3/Request$Builder; 76 | 77 | move-result-object v0 78 | 79 | const-string v1, "cache-control" 80 | 81 | .line 10 82 | invoke-virtual {v0, v1}, Lokhttp3/Request$Builder;->removeHeader(Ljava/lang/String;)Lokhttp3/Request$Builder; 83 | 84 | move-result-object v0 85 | 86 | const-string v1, "if-modified-since" 87 | 88 | .line 11 89 | invoke-virtual {v0, v1}, Lokhttp3/Request$Builder;->removeHeader(Ljava/lang/String;)Lokhttp3/Request$Builder; 90 | 91 | move-result-object v0 92 | 93 | const-string v1, "cookie" 94 | 95 | .line 12 96 | invoke-virtual {v0, v1}, Lokhttp3/Request$Builder;->removeHeader(Ljava/lang/String;)Lokhttp3/Request$Builder; 97 | 98 | move-result-object v0 99 | 100 | .line 13 101 | invoke-virtual {v0}, Lokhttp3/Request$Builder;->build()Lokhttp3/Request; 102 | 103 | move-result-object v0 104 | 105 | .line 14 106 | invoke-interface {p1, v0}, Lokhttp3/Interceptor$Chain;->proceed(Lokhttp3/Request;)Lokhttp3/Response; 107 | 108 | move-result-object p1 109 | 110 | return-object p1 111 | .end method 112 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1$1.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1$1; 2 | .super Luy/kohesive/injekt/api/FullTypeReference; 3 | .source "TypeInfo.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingMethod; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1;->invoke()Ljava/lang/Object; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = null 14 | .end annotation 15 | 16 | .annotation system Ldalvik/annotation/Signature; 17 | value = { 18 | "Luy/kohesive/injekt/api/FullTypeReference<", 19 | "Lkotlinx/serialization/json/Json;", 20 | ">;" 21 | } 22 | .end annotation 23 | 24 | .annotation system Ldalvik/annotation/SourceDebugExtension; 25 | value = "SMAP\nTypeInfo.kt\nKotlin\n*S Kotlin\n*F\n+ 1 TypeInfo.kt\nuy/kohesive/injekt/api/TypeInfoKt$fullType$1\n*L\n1#1,44:1\n*E\n" 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\r\n\u0000\n\u0002\u0018\u0002\n\u0002\u0008\u0003*\u0001\u0000\u0008\n\u0018\u00002\u0008\u0012\u0004\u0012\u00028\u00000\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003\u00b8\u0006\u0004" 31 | } 32 | d2 = { 33 | "uy/kohesive/injekt/api/TypeInfoKt$fullType$1", 34 | "Luy/kohesive/injekt/api/FullTypeReference;", 35 | "()V", 36 | "injekt-api-compileKotlin", 37 | "uy/kohesive/injekt/InjektKt$injectLazy$1$$special$$inlined$fullType$1" 38 | } 39 | k = 0x1 40 | mv = { 41 | 0x1, 42 | 0x7, 43 | 0x1 44 | } 45 | .end annotation 46 | 47 | 48 | # direct methods 49 | .method constructor ()V 50 | .locals 0 51 | 52 | .line 27 53 | invoke-direct {p0}, Luy/kohesive/injekt/api/FullTypeReference;->()V 54 | 55 | return-void 56 | .end method 57 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "Injekt.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function0; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingClass; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x19 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function0<", 23 | "Lkotlinx/serialization/json/Json;", 24 | ">;" 25 | } 26 | .end annotation 27 | 28 | .annotation system Ldalvik/annotation/SourceDebugExtension; 29 | value = "SMAP\nInjekt.kt\nKotlin\n*S Kotlin\n*F\n+ 1 Injekt.kt\nuy/kohesive/injekt/InjektKt$injectLazy$1\n+ 2 TypeInfo.kt\nuy/kohesive/injekt/api/TypeInfoKt\n+ 3 Factory.kt\nuy/kohesive/injekt/api/FactoryKt\n*L\n1#1,48:1\n27#2:49\n24#3:50\n*E\n" 30 | .end annotation 31 | 32 | .annotation runtime Lkotlin/Metadata; 33 | d1 = { 34 | "\u0000\u0004\n\u0002\u0008\u0004\u0010\u0000\u001a\u00028\u0000H\n\u00a2\u0006\u0004\u0008\u0001\u0010\u0002\u00a8\u0006\u0003" 35 | } 36 | d2 = { 37 | "", 38 | "invoke", 39 | "()Ljava/lang/Object;", 40 | "uy/kohesive/injekt/InjektKt$injectLazy$1" 41 | } 42 | k = 0x3 43 | mv = { 44 | 0x1, 45 | 0x7, 46 | 0x1 47 | } 48 | .end annotation 49 | 50 | 51 | # static fields 52 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1; 53 | 54 | 55 | # direct methods 56 | .method static constructor ()V 57 | .locals 1 58 | 59 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1; 60 | 61 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1;->()V 62 | 63 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1; 64 | 65 | return-void 66 | .end method 67 | 68 | .method public constructor ()V 69 | .locals 1 70 | 71 | const/4 v0, 0x0 72 | 73 | invoke-direct {p0, v0}, Lkotlin/jvm/internal/Lambda;->(I)V 74 | 75 | return-void 76 | .end method 77 | 78 | 79 | # virtual methods 80 | .method public final invoke()Ljava/lang/Object; 81 | .locals 2 82 | .annotation system Ldalvik/annotation/Signature; 83 | value = { 84 | "()", 85 | "Lkotlinx/serialization/json/Json;" 86 | } 87 | .end annotation 88 | 89 | .line 17 90 | invoke-static {}, Luy/kohesive/injekt/InjektKt;->getInjekt()Luy/kohesive/injekt/api/InjektScope; 91 | 92 | move-result-object v0 93 | 94 | check-cast v0, Luy/kohesive/injekt/api/InjektFactory; 95 | 96 | .line 49 97 | new-instance v1, Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1$1; 98 | 99 | invoke-direct {v1}, Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1$1;->()V 100 | 101 | check-cast v1, Luy/kohesive/injekt/api/FullTypeReference; 102 | 103 | .line 17 104 | check-cast v1, Luy/kohesive/injekt/api/TypeReference; 105 | 106 | .line 50 107 | invoke-interface {v1}, Luy/kohesive/injekt/api/TypeReference;->getType()Ljava/lang/reflect/Type; 108 | 109 | move-result-object v1 110 | 111 | invoke-interface {v0, v1}, Luy/kohesive/injekt/api/InjektFactory;->getInstance(Ljava/lang/reflect/Type;)Ljava/lang/Object; 112 | 113 | move-result-object v0 114 | 115 | return-object v0 116 | .end method 117 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;", 27 | "tachiyomi-zh.copymanga-v1.4.52_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 65 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 65 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ListDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0003\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J)\u0010\u0003\u001a\u000e\u0012\n\u0012\u0008\u0012\u0004\u0012\u0002H\u00060\u00050\u0004\"\u0004\u0008\u0001\u0010\u00062\u000c\u0010\u0007\u001a\u0008\u0012\u0004\u0012\u0002H\u00060\u0004H\u00c6\u0001\u00a8\u0006\u0008" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto;", 27 | "T0", 28 | "typeSerial0", 29 | "tachiyomi-zh.copymanga-v1.4.52_release" 30 | } 31 | k = 0x1 32 | mv = { 33 | 0x1, 34 | 0x7, 35 | 0x1 36 | } 37 | xi = 0x30 38 | .end annotation 39 | 40 | 41 | # direct methods 42 | .method private constructor ()V 43 | .locals 0 44 | 45 | .line 102 46 | invoke-direct {p0}, Ljava/lang/Object;->()V 47 | 48 | return-void 49 | .end method 50 | 51 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 52 | .locals 0 53 | 54 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto$Companion;->()V 55 | 56 | return-void 57 | .end method 58 | 59 | 60 | # virtual methods 61 | .method public final serializer(Lkotlinx/serialization/KSerializer;)Lkotlinx/serialization/KSerializer; 62 | .locals 1 63 | .annotation system Ldalvik/annotation/Signature; 64 | value = { 65 | "(", 68 | "Lkotlinx/serialization/KSerializer<", 69 | "TT0;>;)", 70 | "Lkotlinx/serialization/KSerializer<", 71 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto<", 72 | "TT0;>;>;" 73 | } 74 | .end annotation 75 | 76 | const-string v0, "typeSerial0" 77 | 78 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 79 | 80 | .line 102 81 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto$$serializer; 82 | 83 | invoke-direct {v0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto$$serializer;->(Lkotlinx/serialization/KSerializer;)V 84 | 85 | check-cast v0, Lkotlinx/serialization/KSerializer; 86 | 87 | return-object v0 88 | .end method 89 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0005\u001a\u0008\u0012\u0004\u0012\u00020\u00070\u0006H\u00c6\u0001R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0008" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$Companion;", 22 | "", 23 | "()V", 24 | "URL_PREFIX", 25 | "", 26 | "serializer", 27 | "Lkotlinx/serialization/KSerializer;", 28 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto;", 29 | "tachiyomi-zh.copymanga-v1.4.52_release" 30 | } 31 | k = 0x1 32 | mv = { 33 | 0x1, 34 | 0x7, 35 | 0x1 36 | } 37 | xi = 0x30 38 | .end annotation 39 | 40 | 41 | # direct methods 42 | .method private constructor ()V 43 | .locals 0 44 | 45 | .line 42 46 | invoke-direct {p0}, Ljava/lang/Object;->()V 47 | 48 | return-void 49 | .end method 50 | 51 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 52 | .locals 0 53 | 54 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$Companion;->()V 55 | 56 | return-void 57 | .end method 58 | 59 | 60 | # virtual methods 61 | .method public final serializer()Lkotlinx/serialization/KSerializer; 62 | .locals 1 63 | .annotation system Ldalvik/annotation/Signature; 64 | value = { 65 | "()", 66 | "Lkotlinx/serialization/KSerializer<", 67 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto;", 68 | ">;" 69 | } 70 | .end annotation 71 | 72 | .line 42 73 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$$serializer; 74 | 75 | check-cast v0, Lkotlinx/serialization/KSerializer; 76 | 77 | return-object v0 78 | .end method 79 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1.smali: -------------------------------------------------------------------------------- 1 | .class final Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "Dto.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function1; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingMethod; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto;->toSManga()Leu/kanade/tachiyomi/source/model/SManga; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x18 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function1<", 23 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;", 24 | "Ljava/lang/CharSequence;", 25 | ">;" 26 | } 27 | .end annotation 28 | 29 | .annotation runtime Lkotlin/Metadata; 30 | d1 = { 31 | "\u0000\u000e\n\u0000\n\u0002\u0010\r\n\u0000\n\u0002\u0018\u0002\n\u0000\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0003H\n\u00a2\u0006\u0002\u0008\u0004" 32 | } 33 | d2 = { 34 | "", 35 | "", 36 | "it", 37 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;", 38 | "invoke" 39 | } 40 | k = 0x3 41 | mv = { 42 | 0x1, 43 | 0x7, 44 | 0x1 45 | } 46 | xi = 0x30 47 | .end annotation 48 | 49 | 50 | # static fields 51 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1; 52 | 53 | 54 | # direct methods 55 | .method static constructor ()V 56 | .locals 1 57 | 58 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1; 59 | 60 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1;->()V 61 | 62 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1; 63 | 64 | return-void 65 | .end method 66 | 67 | .method constructor ()V 68 | .locals 1 69 | 70 | const/4 v0, 0x1 71 | 72 | invoke-direct {p0, v0}, Lkotlin/jvm/internal/Lambda;->(I)V 73 | 74 | return-void 75 | .end method 76 | 77 | 78 | # virtual methods 79 | .method public final invoke(Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;)Ljava/lang/CharSequence; 80 | .locals 1 81 | 82 | const-string v0, "it" 83 | 84 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 85 | 86 | .line 23 87 | invoke-virtual {p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;->getName()Ljava/lang/String; 88 | 89 | move-result-object p1 90 | 91 | check-cast p1, Ljava/lang/CharSequence; 92 | 93 | return-object p1 94 | .end method 95 | 96 | .method public bridge synthetic invoke(Ljava/lang/Object;)Ljava/lang/Object; 97 | .locals 0 98 | 99 | .line 23 100 | check-cast p1, Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto; 101 | 102 | invoke-virtual {p0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1;->invoke(Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;)Ljava/lang/CharSequence; 103 | 104 | move-result-object p1 105 | 106 | return-object p1 107 | .end method 108 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto;", 27 | "tachiyomi-zh.copymanga-v1.4.52_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 73 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 73 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/Param.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/Param; 2 | .super Ljava/lang/Object; 3 | .source "Filters.kt" 4 | 5 | 6 | # annotations 7 | .annotation runtime Lkotlin/Metadata; 8 | d1 = { 9 | "\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\u0008\u0006\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0005R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0008\n\u0000\u001a\u0004\u0008\u0006\u0010\u0007R\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0008\n\u0000\u001a\u0004\u0008\u0008\u0010\u0007\u00a8\u0006\t" 10 | } 11 | d2 = { 12 | "Leu/kanade/tachiyomi/extension/zh/copymanga/Param;", 13 | "", 14 | "name", 15 | "", 16 | "value", 17 | "(Ljava/lang/String;Ljava/lang/String;)V", 18 | "getName", 19 | "()Ljava/lang/String;", 20 | "getValue", 21 | "tachiyomi-zh.copymanga-v1.4.52_release" 22 | } 23 | k = 0x1 24 | mv = { 25 | 0x1, 26 | 0x7, 27 | 0x1 28 | } 29 | xi = 0x30 30 | .end annotation 31 | 32 | 33 | # instance fields 34 | .field private final name:Ljava/lang/String; 35 | 36 | .field private final value:Ljava/lang/String; 37 | 38 | 39 | # direct methods 40 | .method public constructor (Ljava/lang/String;Ljava/lang/String;)V 41 | .locals 1 42 | 43 | const-string v0, "name" 44 | 45 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 46 | 47 | const-string v0, "value" 48 | 49 | invoke-static {p2, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 50 | 51 | .line 72 52 | invoke-direct {p0}, Ljava/lang/Object;->()V 53 | 54 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/Param;->name:Ljava/lang/String; 55 | 56 | iput-object p2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/Param;->value:Ljava/lang/String; 57 | 58 | return-void 59 | .end method 60 | 61 | 62 | # virtual methods 63 | .method public final getName()Ljava/lang/String; 64 | .locals 1 65 | 66 | .line 72 67 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/Param;->name:Ljava/lang/String; 68 | 69 | return-object v0 70 | .end method 71 | 72 | .method public final getValue()Ljava/lang/String; 73 | .locals 1 74 | 75 | .line 72 76 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/Param;->value:Ljava/lang/String; 77 | 78 | return-object v0 79 | .end method 80 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda0.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda0; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Landroidx/preference/Preference$OnPreferenceChangeListener; 7 | 8 | 9 | # direct methods 10 | .method public synthetic constructor ()V 11 | .locals 0 12 | 13 | invoke-direct {p0}, Ljava/lang/Object;->()V 14 | 15 | return-void 16 | .end method 17 | 18 | 19 | # virtual methods 20 | .method public final onPreferenceChange(Landroidx/preference/Preference;Ljava/lang/Object;)Z 21 | .locals 0 22 | 23 | invoke-static {p1, p2}, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt;->$r8$lambda$sXGmSXYyj7zIlezNBSFtxI6iaS0(Landroidx/preference/Preference;Ljava/lang/Object;)Z 24 | 25 | move-result p1 26 | 27 | return p1 28 | .end method 29 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Landroidx/preference/Preference$OnPreferenceChangeListener; 7 | 8 | 9 | # instance fields 10 | .field public final synthetic f$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 11 | 12 | .field public final synthetic f$1:[Ljava/lang/String; 13 | 14 | 15 | # direct methods 16 | .method public synthetic constructor (Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;[Ljava/lang/String;)V 17 | .locals 0 18 | 19 | invoke-direct {p0}, Ljava/lang/Object;->()V 20 | 21 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1;->f$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 22 | 23 | iput-object p2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1;->f$1:[Ljava/lang/String; 24 | 25 | return-void 26 | .end method 27 | 28 | 29 | # virtual methods 30 | .method public final onPreferenceChange(Landroidx/preference/Preference;Ljava/lang/Object;)Z 31 | .locals 2 32 | 33 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1;->f$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 34 | 35 | iget-object v1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1;->f$1:[Ljava/lang/String; 36 | 37 | invoke-static {v0, v1, p1, p2}, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt;->$r8$lambda$RCiZtxWl1s_k3uRdzxWoeUMZWQI(Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;[Ljava/lang/String;Landroidx/preference/Preference;Ljava/lang/Object;)Z 38 | 39 | move-result p1 40 | 41 | return p1 42 | .end method 43 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/QueryFilter.smali: -------------------------------------------------------------------------------- 1 | .class public interface abstract Leu/kanade/tachiyomi/extension/zh/copymanga/QueryFilter; 2 | .super Ljava/lang/Object; 3 | .source "Filters.kt" 4 | 5 | 6 | # annotations 7 | .annotation runtime Lkotlin/Metadata; 8 | d1 = { 9 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\u0008f\u0018\u00002\u00020\u0001J\u0010\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H&\u00a8\u0006\u0006" 10 | } 11 | d2 = { 12 | "Leu/kanade/tachiyomi/extension/zh/copymanga/QueryFilter;", 13 | "", 14 | "addQuery", 15 | "", 16 | "builder", 17 | "Lokhttp3/HttpUrl$Builder;", 18 | "tachiyomi-zh.copymanga-v1.4.52_release" 19 | } 20 | k = 0x1 21 | mv = { 22 | 0x1, 23 | 0x7, 24 | 0x1 25 | } 26 | xi = 0x30 27 | .end annotation 28 | 29 | 30 | # virtual methods 31 | .method public abstract addQuery(Lokhttp3/HttpUrl$Builder;)V 32 | .end method 33 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/RankFilter.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/RankFilter; 2 | .super Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter; 3 | .source "Filters.kt" 4 | 5 | 6 | # annotations 7 | .annotation runtime Lkotlin/Metadata; 8 | d1 = { 9 | "\u0000\u000c\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0002\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003" 10 | } 11 | d2 = { 12 | "Leu/kanade/tachiyomi/extension/zh/copymanga/RankFilter;", 13 | "Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;", 14 | "()V", 15 | "tachiyomi-zh.copymanga-v1.4.52_release" 16 | } 17 | k = 0x1 18 | mv = { 19 | 0x1, 20 | 0x7, 21 | 0x1 22 | } 23 | xi = 0x30 24 | .end annotation 25 | 26 | 27 | # direct methods 28 | .method public constructor ()V 29 | .locals 3 30 | 31 | const-string v0, "date_type" 32 | 33 | .line 131 34 | invoke-static {}, Leu/kanade/tachiyomi/extension/zh/copymanga/FiltersKt;->access$rankValues()[Leu/kanade/tachiyomi/extension/zh/copymanga/Param; 35 | 36 | move-result-object v1 37 | 38 | const-string v2, "\u6392\u884c\u699c" 39 | 40 | invoke-direct {p0, v2, v0, v1}, Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;->(Ljava/lang/String;Ljava/lang/String;[Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V 41 | 42 | return-void 43 | .end method 44 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0003\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J)\u0010\u0003\u001a\u000e\u0012\n\u0012\u0008\u0012\u0004\u0012\u0002H\u00060\u00050\u0004\"\u0004\u0008\u0001\u0010\u00062\u000c\u0010\u0007\u001a\u0008\u0012\u0004\u0012\u0002H\u00060\u0004H\u00c6\u0001\u00a8\u0006\u0008" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto;", 27 | "T0", 28 | "typeSerial0", 29 | "tachiyomi-zh.copymanga-v1.4.52_release" 30 | } 31 | k = 0x1 32 | mv = { 33 | 0x1, 34 | 0x7, 35 | 0x1 36 | } 37 | xi = 0x30 38 | .end annotation 39 | 40 | 41 | # direct methods 42 | .method private constructor ()V 43 | .locals 0 44 | 45 | .line 110 46 | invoke-direct {p0}, Ljava/lang/Object;->()V 47 | 48 | return-void 49 | .end method 50 | 51 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 52 | .locals 0 53 | 54 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$Companion;->()V 55 | 56 | return-void 57 | .end method 58 | 59 | 60 | # virtual methods 61 | .method public final serializer(Lkotlinx/serialization/KSerializer;)Lkotlinx/serialization/KSerializer; 62 | .locals 1 63 | .annotation system Ldalvik/annotation/Signature; 64 | value = { 65 | "(", 68 | "Lkotlinx/serialization/KSerializer<", 69 | "TT0;>;)", 70 | "Lkotlinx/serialization/KSerializer<", 71 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto<", 72 | "TT0;>;>;" 73 | } 74 | .end annotation 75 | 76 | const-string v0, "typeSerial0" 77 | 78 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 79 | 80 | .line 110 81 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$$serializer; 82 | 83 | invoke-direct {v0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$$serializer;->(Lkotlinx/serialization/KSerializer;)V 84 | 85 | check-cast v0, Lkotlinx/serialization/KSerializer; 86 | 87 | return-object v0 88 | .end method 89 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto;", 27 | "tachiyomi-zh.copymanga-v1.4.52_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 113 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 113 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/SearchFilter.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/SearchFilter; 2 | .super Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter; 3 | .source "Filters.kt" 4 | 5 | 6 | # annotations 7 | .annotation runtime Lkotlin/Metadata; 8 | d1 = { 9 | "\u0000\u000c\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0002\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003" 10 | } 11 | d2 = { 12 | "Leu/kanade/tachiyomi/extension/zh/copymanga/SearchFilter;", 13 | "Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;", 14 | "()V", 15 | "tachiyomi-zh.copymanga-v1.4.52_release" 16 | } 17 | k = 0x1 18 | mv = { 19 | 0x1, 20 | 0x7, 21 | 0x1 22 | } 23 | xi = 0x30 24 | .end annotation 25 | 26 | 27 | # direct methods 28 | .method public constructor ()V 29 | .locals 3 30 | 31 | const-string v0, "q_type" 32 | 33 | .line 90 34 | invoke-static {}, Leu/kanade/tachiyomi/extension/zh/copymanga/FiltersKt;->access$searchFilterValues()[Leu/kanade/tachiyomi/extension/zh/copymanga/Param; 35 | 36 | move-result-object v1 37 | 38 | const-string v2, "\u6587\u672c\u641c\u7d22\u8303\u56f4" 39 | 40 | invoke-direct {p0, v2, v0, v1}, Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;->(Ljava/lang/String;Ljava/lang/String;[Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V 41 | 42 | return-void 43 | .end method 44 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/TopFilter.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/TopFilter; 2 | .super Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter; 3 | .source "Filters.kt" 4 | 5 | # interfaces 6 | .implements Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter; 7 | 8 | 9 | # annotations 10 | .annotation runtime Lkotlin/Metadata; 11 | d1 = { 12 | "\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0002\u0018\u00002\u00020\u00012\u00020\u0002B\u0005\u00a2\u0006\u0002\u0010\u0003\u00a8\u0006\u0004" 13 | } 14 | d2 = { 15 | "Leu/kanade/tachiyomi/extension/zh/copymanga/TopFilter;", 16 | "Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;", 17 | "Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter;", 18 | "()V", 19 | "tachiyomi-zh.copymanga-v1.4.52_release" 20 | } 21 | k = 0x1 22 | mv = { 23 | 0x1, 24 | 0x7, 25 | 0x1 26 | } 27 | xi = 0x30 28 | .end annotation 29 | 30 | 31 | # direct methods 32 | .method public constructor ()V 33 | .locals 3 34 | 35 | const-string v0, "top" 36 | 37 | .line 101 38 | invoke-static {}, Leu/kanade/tachiyomi/extension/zh/copymanga/FiltersKt;->access$topValues()[Leu/kanade/tachiyomi/extension/zh/copymanga/Param; 39 | 40 | move-result-object v1 41 | 42 | const-string v2, "\u5730\u533a/\u72b6\u6001" 43 | 44 | invoke-direct {p0, v2, v0, v1}, Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;->(Ljava/lang/String;Ljava/lang/String;[Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V 45 | 46 | return-void 47 | .end method 48 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto;", 27 | "tachiyomi-zh.copymanga-v1.4.52_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 84 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 84 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto;", 27 | "tachiyomi-zh.copymanga-v1.4.52_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 70 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 70 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/smali/eu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto;", 27 | "tachiyomi-zh.copymanga-v1.4.52_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 99 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 99 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/unknown/META-INF/com/android/build/gradle/app-metadata.properties: -------------------------------------------------------------------------------- 1 | appMetadataVersion=1.1 2 | androidGradlePluginVersion=7.4.1 3 | -------------------------------------------------------------------------------- /1.4.52-copy20-tachidesk/unknown/kotlin-tooling-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": "1.1.0", 3 | "buildSystem": "Gradle", 4 | "buildSystemVersion": "8.3", 5 | "buildPlugin": "org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper", 6 | "buildPluginVersion": "1.7.21", 7 | "projectSettings": { 8 | "isHmppEnabled": true, 9 | "isCompatibilityMetadataVariantEnabled": false, 10 | "isKPMEnabled": false 11 | }, 12 | "projectTargets": [ 13 | { 14 | "target": "org.jetbrains.kotlin.gradle.plugin.mpp.KotlinAndroidTarget", 15 | "platformType": "androidJvm", 16 | "extras": { 17 | "android": { 18 | "sourceCompatibility": "1.8", 19 | "targetCompatibility": "1.8" 20 | } 21 | } 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /1.4.55-copy20/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /1.4.55-copy20/apktool.yml: -------------------------------------------------------------------------------- 1 | version: 2.11.1 2 | apkFileName: tachiyomi-zh.copymanga-v1.4.55.apk 3 | isFrameworkApk: false 4 | usesFramework: 5 | ids: 6 | - 1 7 | tag: null 8 | sdkInfo: 9 | minSdkVersion: 21 10 | targetSdkVersion: 34 11 | packageInfo: 12 | forcedPackageId: 127 13 | renameManifestPackage: null 14 | versionInfo: 15 | versionCode: 55 16 | versionName: 1.4.55 17 | sharedLibrary: false 18 | sparseResources: false 19 | compactEntries: false 20 | doNotCompress: 21 | - arsc 22 | - png 23 | -------------------------------------------------------------------------------- /1.4.55-copy20/build/apk/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/build/apk/AndroidManifest.xml -------------------------------------------------------------------------------- /1.4.55-copy20/build/apk/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/build/apk/classes.dex -------------------------------------------------------------------------------- /1.4.55-copy20/build/apk/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/build/apk/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.55-copy20/build/apk/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/build/apk/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.55-copy20/build/apk/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/build/apk/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.55-copy20/build/apk/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/build/apk/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.55-copy20/build/apk/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/build/apk/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.55-copy20/build/apk/resources.arsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/build/apk/resources.arsc -------------------------------------------------------------------------------- /1.4.55-copy20/build/resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/build/resources.zip -------------------------------------------------------------------------------- /1.4.55-copy20/original/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/original/AndroidManifest.xml -------------------------------------------------------------------------------- /1.4.55-copy20/original/META-INF/CERT.RSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/original/META-INF/CERT.RSA -------------------------------------------------------------------------------- /1.4.55-copy20/original/META-INF/CERT.SF: -------------------------------------------------------------------------------- 1 | Signature-Version: 1.0 2 | Created-By: Android Gradle 7.4.2 3 | SHA-256-Digest-Manifest: 5lCxzaRoa4zBDGf0LXt3bFdNZO+mTyQjuao3seuqqEE= 4 | X-Android-APK-Signed: 2 5 | 6 | Name: AndroidManifest.xml 7 | SHA-256-Digest: AonAidYamDy6cy+KQ5q5kl075dnbuTDv1ODXDBUdQdY= 8 | 9 | Name: META-INF/com/android/build/gradle/app-metadata.properties 10 | SHA-256-Digest: 0FOL+fr/8aZBEav/2wjEK6vVyEHG7SyqXRekTvG5poU= 11 | 12 | Name: classes.dex 13 | SHA-256-Digest: ByH29xi+S9QDgk19VKZgBv8oXsc6ZOqLi7btB2k1opA= 14 | 15 | Name: kotlin-tooling-metadata.json 16 | SHA-256-Digest: tbmPgPpVhmfAPr7k9/G5QrEdDpSyaZJh6hJHI6RMPKE= 17 | 18 | Name: res/CG.png 19 | SHA-256-Digest: CxvUJlIJbd/4LDmFe6amgeweIsa/t72cmrgh1YJpM34= 20 | 21 | Name: res/D2.png 22 | SHA-256-Digest: y8lFIqHfIL+I7nhBy9ncOt1Boeb1FU37PnzUoHY3qFI= 23 | 24 | Name: res/SD.png 25 | SHA-256-Digest: 4aDJi9GeRLL4eGJzpqeyFalMtcdIHsldgMja+jllVJ8= 26 | 27 | Name: res/jy.png 28 | SHA-256-Digest: hp4MC/7D7Ap/6Dwedje90PIOhd/l9pqoAd5wwrpeUW0= 29 | 30 | Name: res/u3.png 31 | SHA-256-Digest: bRZkTFeMb82VL5Xr4Yyh4FAoLxCJTYET70M4OsSKdt0= 32 | 33 | Name: resources.arsc 34 | SHA-256-Digest: R+peX7yIycCVhPZZR7on0X82uu2ikphPPnOx/LHQqYw= 35 | 36 | Name: simp.txt 37 | SHA-256-Digest: QBm3eykdefWz/zvru7Mc6AUoH8BtKovRJ9OmCewyqzo= 38 | 39 | Name: simplified.txt 40 | SHA-256-Digest: G5J5a2I22aw7zrCdloI4nCGIk+kxEMpdYE5K8uAo+1s= 41 | 42 | -------------------------------------------------------------------------------- /1.4.55-copy20/original/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Built-By: Signflinger 3 | Created-By: Android Gradle 7.4.2 4 | 5 | Name: AndroidManifest.xml 6 | SHA-256-Digest: TS5j4us7WFfzr9heV4kn9UjXSVpwIj9d/Q0rIAxGuu0= 7 | 8 | Name: META-INF/com/android/build/gradle/app-metadata.properties 9 | SHA-256-Digest: pKhZciiDn8swt+/oEOgU3WaZ+rlFPYNU15keygYg8Tg= 10 | 11 | Name: classes.dex 12 | SHA-256-Digest: yeGMcFqQbNAH9ye2K3CNyVSiMOuvVy4gEyCYQHwhaIo= 13 | 14 | Name: kotlin-tooling-metadata.json 15 | SHA-256-Digest: 6Yp9jPAOcMRpUC1T/qNrnbwKD3bSTLCaggO86rKQzmQ= 16 | 17 | Name: res/CG.png 18 | SHA-256-Digest: pGRK0S5DF3qd86FsI4FFcRNpJ3wZ58fBAtrBD2j423Q= 19 | 20 | Name: res/D2.png 21 | SHA-256-Digest: pYXx1q0lYLkanN7N7DD1o6T8ZrIHpFClCyKF7Cf/Xk8= 22 | 23 | Name: res/SD.png 24 | SHA-256-Digest: 1kzqxNb8Xorj6KmVoaRLKp0Qr+6Hh+Xz+XOwAcjgYKI= 25 | 26 | Name: res/jy.png 27 | SHA-256-Digest: CxPWh4Ryu+37U4LAByzTTAnZps1936kJvJB/oi6vgpg= 28 | 29 | Name: res/u3.png 30 | SHA-256-Digest: wdPKhcLuaxc0lcvw9ExOoDYqZqqtsdy34f4+f9RCe6A= 31 | 32 | Name: resources.arsc 33 | SHA-256-Digest: DftZcG5iQp+6I6OO4yiW31x7vjZ7T+MeQHK2Re+S8/I= 34 | 35 | Name: simp.txt 36 | SHA-256-Digest: Fzffnn4VM0aBjWeHekNV91DQeglIw4RVqcjQqIqrVcM= 37 | 38 | Name: simplified.txt 39 | SHA-256-Digest: FDt7O1JrI6a8SgWMRGpjZhoK9V1mmBM/WComgfXl4/Y= 40 | 41 | -------------------------------------------------------------------------------- /1.4.55-copy20/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.55-copy20/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.55-copy20/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.55-copy20/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.55-copy20/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/1.4.55-copy20/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /1.4.55-copy20/res/values/public.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/com/luhuiguo/chinese/pinyin/CaseType.smali: -------------------------------------------------------------------------------- 1 | .class public final enum Lcom/luhuiguo/chinese/pinyin/CaseType; 2 | .super Ljava/lang/Enum; 3 | .source "CaseType.java" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/Signature; 8 | value = { 9 | "Ljava/lang/Enum<", 10 | "Lcom/luhuiguo/chinese/pinyin/CaseType;", 11 | ">;" 12 | } 13 | .end annotation 14 | 15 | 16 | # static fields 17 | .field private static final synthetic $VALUES:[Lcom/luhuiguo/chinese/pinyin/CaseType; 18 | 19 | .field public static final enum CAPITALIZE:Lcom/luhuiguo/chinese/pinyin/CaseType; 20 | 21 | .field public static final enum LOWERCASE:Lcom/luhuiguo/chinese/pinyin/CaseType; 22 | 23 | .field public static final enum UPPERCASE:Lcom/luhuiguo/chinese/pinyin/CaseType; 24 | 25 | 26 | # direct methods 27 | .method static constructor ()V 28 | .locals 7 29 | 30 | .line 41 31 | new-instance v0, Lcom/luhuiguo/chinese/pinyin/CaseType; 32 | 33 | const-string v1, "LOWERCASE" 34 | 35 | const/4 v2, 0x0 36 | 37 | invoke-direct {v0, v1, v2}, Lcom/luhuiguo/chinese/pinyin/CaseType;->(Ljava/lang/String;I)V 38 | 39 | sput-object v0, Lcom/luhuiguo/chinese/pinyin/CaseType;->LOWERCASE:Lcom/luhuiguo/chinese/pinyin/CaseType; 40 | 41 | .line 46 42 | new-instance v1, Lcom/luhuiguo/chinese/pinyin/CaseType; 43 | 44 | const-string v3, "UPPERCASE" 45 | 46 | const/4 v4, 0x1 47 | 48 | invoke-direct {v1, v3, v4}, Lcom/luhuiguo/chinese/pinyin/CaseType;->(Ljava/lang/String;I)V 49 | 50 | sput-object v1, Lcom/luhuiguo/chinese/pinyin/CaseType;->UPPERCASE:Lcom/luhuiguo/chinese/pinyin/CaseType; 51 | 52 | .line 51 53 | new-instance v3, Lcom/luhuiguo/chinese/pinyin/CaseType; 54 | 55 | const-string v5, "CAPITALIZE" 56 | 57 | const/4 v6, 0x2 58 | 59 | invoke-direct {v3, v5, v6}, Lcom/luhuiguo/chinese/pinyin/CaseType;->(Ljava/lang/String;I)V 60 | 61 | sput-object v3, Lcom/luhuiguo/chinese/pinyin/CaseType;->CAPITALIZE:Lcom/luhuiguo/chinese/pinyin/CaseType; 62 | 63 | const/4 v5, 0x3 64 | 65 | new-array v5, v5, [Lcom/luhuiguo/chinese/pinyin/CaseType; 66 | 67 | aput-object v0, v5, v2 68 | 69 | aput-object v1, v5, v4 70 | 71 | aput-object v3, v5, v6 72 | 73 | .line 36 74 | sput-object v5, Lcom/luhuiguo/chinese/pinyin/CaseType;->$VALUES:[Lcom/luhuiguo/chinese/pinyin/CaseType; 75 | 76 | return-void 77 | .end method 78 | 79 | .method private constructor (Ljava/lang/String;I)V 80 | .locals 0 81 | .annotation system Ldalvik/annotation/Signature; 82 | value = { 83 | "()V" 84 | } 85 | .end annotation 86 | 87 | .line 36 88 | invoke-direct {p0, p1, p2}, Ljava/lang/Enum;->(Ljava/lang/String;I)V 89 | 90 | return-void 91 | .end method 92 | 93 | .method public static valueOf(Ljava/lang/String;)Lcom/luhuiguo/chinese/pinyin/CaseType; 94 | .locals 1 95 | 96 | .line 36 97 | const-class v0, Lcom/luhuiguo/chinese/pinyin/CaseType; 98 | 99 | invoke-static {v0, p0}, Ljava/lang/Enum;->valueOf(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Enum; 100 | 101 | move-result-object p0 102 | 103 | check-cast p0, Lcom/luhuiguo/chinese/pinyin/CaseType; 104 | 105 | return-object p0 106 | .end method 107 | 108 | .method public static values()[Lcom/luhuiguo/chinese/pinyin/CaseType; 109 | .locals 1 110 | 111 | .line 36 112 | sget-object v0, Lcom/luhuiguo/chinese/pinyin/CaseType;->$VALUES:[Lcom/luhuiguo/chinese/pinyin/CaseType; 113 | 114 | invoke-virtual {v0}, [Lcom/luhuiguo/chinese/pinyin/CaseType;->clone()Ljava/lang/Object; 115 | 116 | move-result-object v0 117 | 118 | check-cast v0, [Lcom/luhuiguo/chinese/pinyin/CaseType; 119 | 120 | return-object v0 121 | .end method 122 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/com/luhuiguo/chinese/pinyin/YuCharType.smali: -------------------------------------------------------------------------------- 1 | .class public final enum Lcom/luhuiguo/chinese/pinyin/YuCharType; 2 | .super Ljava/lang/Enum; 3 | .source "YuCharType.java" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/Signature; 8 | value = { 9 | "Ljava/lang/Enum<", 10 | "Lcom/luhuiguo/chinese/pinyin/YuCharType;", 11 | ">;" 12 | } 13 | .end annotation 14 | 15 | 16 | # static fields 17 | .field private static final synthetic $VALUES:[Lcom/luhuiguo/chinese/pinyin/YuCharType; 18 | 19 | .field public static final enum WITH_U_AND_COLON:Lcom/luhuiguo/chinese/pinyin/YuCharType; 20 | 21 | .field public static final enum WITH_U_UNICODE:Lcom/luhuiguo/chinese/pinyin/YuCharType; 22 | 23 | .field public static final enum WITH_V:Lcom/luhuiguo/chinese/pinyin/YuCharType; 24 | 25 | 26 | # direct methods 27 | .method static constructor ()V 28 | .locals 7 29 | 30 | .line 46 31 | new-instance v0, Lcom/luhuiguo/chinese/pinyin/YuCharType; 32 | 33 | const-string v1, "WITH_U_AND_COLON" 34 | 35 | const/4 v2, 0x0 36 | 37 | invoke-direct {v0, v1, v2}, Lcom/luhuiguo/chinese/pinyin/YuCharType;->(Ljava/lang/String;I)V 38 | 39 | sput-object v0, Lcom/luhuiguo/chinese/pinyin/YuCharType;->WITH_U_AND_COLON:Lcom/luhuiguo/chinese/pinyin/YuCharType; 40 | 41 | .line 51 42 | new-instance v1, Lcom/luhuiguo/chinese/pinyin/YuCharType; 43 | 44 | const-string v3, "WITH_V" 45 | 46 | const/4 v4, 0x1 47 | 48 | invoke-direct {v1, v3, v4}, Lcom/luhuiguo/chinese/pinyin/YuCharType;->(Ljava/lang/String;I)V 49 | 50 | sput-object v1, Lcom/luhuiguo/chinese/pinyin/YuCharType;->WITH_V:Lcom/luhuiguo/chinese/pinyin/YuCharType; 51 | 52 | .line 56 53 | new-instance v3, Lcom/luhuiguo/chinese/pinyin/YuCharType; 54 | 55 | const-string v5, "WITH_U_UNICODE" 56 | 57 | const/4 v6, 0x2 58 | 59 | invoke-direct {v3, v5, v6}, Lcom/luhuiguo/chinese/pinyin/YuCharType;->(Ljava/lang/String;I)V 60 | 61 | sput-object v3, Lcom/luhuiguo/chinese/pinyin/YuCharType;->WITH_U_UNICODE:Lcom/luhuiguo/chinese/pinyin/YuCharType; 62 | 63 | const/4 v5, 0x3 64 | 65 | new-array v5, v5, [Lcom/luhuiguo/chinese/pinyin/YuCharType; 66 | 67 | aput-object v0, v5, v2 68 | 69 | aput-object v1, v5, v4 70 | 71 | aput-object v3, v5, v6 72 | 73 | .line 41 74 | sput-object v5, Lcom/luhuiguo/chinese/pinyin/YuCharType;->$VALUES:[Lcom/luhuiguo/chinese/pinyin/YuCharType; 75 | 76 | return-void 77 | .end method 78 | 79 | .method private constructor (Ljava/lang/String;I)V 80 | .locals 0 81 | .annotation system Ldalvik/annotation/Signature; 82 | value = { 83 | "()V" 84 | } 85 | .end annotation 86 | 87 | .line 41 88 | invoke-direct {p0, p1, p2}, Ljava/lang/Enum;->(Ljava/lang/String;I)V 89 | 90 | return-void 91 | .end method 92 | 93 | .method public static valueOf(Ljava/lang/String;)Lcom/luhuiguo/chinese/pinyin/YuCharType; 94 | .locals 1 95 | 96 | .line 41 97 | const-class v0, Lcom/luhuiguo/chinese/pinyin/YuCharType; 98 | 99 | invoke-static {v0, p0}, Ljava/lang/Enum;->valueOf(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Enum; 100 | 101 | move-result-object p0 102 | 103 | check-cast p0, Lcom/luhuiguo/chinese/pinyin/YuCharType; 104 | 105 | return-object p0 106 | .end method 107 | 108 | .method public static values()[Lcom/luhuiguo/chinese/pinyin/YuCharType; 109 | .locals 1 110 | 111 | .line 41 112 | sget-object v0, Lcom/luhuiguo/chinese/pinyin/YuCharType;->$VALUES:[Lcom/luhuiguo/chinese/pinyin/YuCharType; 113 | 114 | invoke-virtual {v0}, [Lcom/luhuiguo/chinese/pinyin/YuCharType;->clone()Ljava/lang/Object; 115 | 116 | move-result-object v0 117 | 118 | check-cast v0, [Lcom/luhuiguo/chinese/pinyin/YuCharType; 119 | 120 | return-object v0 121 | .end method 122 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/BuildConfig.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/BuildConfig; 2 | .super Ljava/lang/Object; 3 | .source "BuildConfig.java" 4 | 5 | 6 | # static fields 7 | .field public static final APPLICATION_ID:Ljava/lang/String; = "eu.kanade.tachiyomi.extension.zh.copymanga" 8 | 9 | .field public static final BUILD_TYPE:Ljava/lang/String; = "release" 10 | 11 | .field public static final DEBUG:Z = false 12 | 13 | .field public static final VERSION_CODE:I = 0x36 14 | 15 | .field public static final VERSION_NAME:Ljava/lang/String; = "1.4.54" 16 | 17 | 18 | # direct methods 19 | .method public constructor ()V 20 | .locals 0 21 | 22 | .line 6 23 | invoke-direct {p0}, Ljava/lang/Object;->()V 24 | 25 | return-void 26 | .end method 27 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/R$mipmap.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/R$mipmap; 2 | .super Ljava/lang/Object; 3 | 4 | 5 | # annotations 6 | .annotation system Ldalvik/annotation/EnclosingClass; 7 | value = Leu/kanade/tachiyomi/extension/R; 8 | .end annotation 9 | 10 | .annotation system Ldalvik/annotation/InnerClass; 11 | accessFlags = 0x19 12 | name = "mipmap" 13 | .end annotation 14 | 15 | 16 | # static fields 17 | .field public static final ic_launcher:I = 0x7f010000 18 | 19 | 20 | # direct methods 21 | .method private constructor ()V 22 | .locals 0 23 | 24 | invoke-direct {p0}, Ljava/lang/Object;->()V 25 | 26 | return-void 27 | .end method 28 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/R.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/R; 2 | .super Ljava/lang/Object; 3 | 4 | 5 | # annotations 6 | .annotation system Ldalvik/annotation/MemberClasses; 7 | value = { 8 | Leu/kanade/tachiyomi/extension/R$mipmap; 9 | } 10 | .end annotation 11 | 12 | 13 | # direct methods 14 | .method private constructor ()V 15 | .locals 0 16 | 17 | invoke-direct {p0}, Ljava/lang/Object;->()V 18 | 19 | return-void 20 | .end method 21 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter.smali: -------------------------------------------------------------------------------- 1 | .class public interface abstract Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter; 2 | .super Ljava/lang/Object; 3 | .source "Filters.kt" 4 | 5 | # interfaces 6 | .implements Leu/kanade/tachiyomi/extension/zh/copymanga/QueryFilter; 7 | 8 | 9 | # annotations 10 | .annotation runtime Lkotlin/Metadata; 11 | d1 = { 12 | "\u0000\n\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008f\u0018\u00002\u00020\u0001\u00a8\u0006\u0002" 13 | } 14 | d2 = { 15 | "Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter;", 16 | "Leu/kanade/tachiyomi/extension/zh/copymanga/QueryFilter;", 17 | "tachiyomi-zh.copymanga-v1.4.55_release" 18 | } 19 | k = 0x1 20 | mv = { 21 | 0x1, 22 | 0x7, 23 | 0x1 24 | } 25 | xi = 0x30 26 | .end annotation 27 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto;", 27 | "tachiyomi-zh.copymanga-v1.4.55_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 97 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 97 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterCommentDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2.smali: -------------------------------------------------------------------------------- 1 | .class final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "Dto.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function0; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingClass; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x18 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function0<", 23 | "Ljava/text/SimpleDateFormat;", 24 | ">;" 25 | } 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\u0008\n\u0000\n\u0002\u0018\u0002\n\u0000\u0010\u0000\u001a\u00020\u0001H\n\u00a2\u0006\u0002\u0008\u0002" 31 | } 32 | d2 = { 33 | "", 34 | "Ljava/text/SimpleDateFormat;", 35 | "invoke" 36 | } 37 | k = 0x3 38 | mv = { 39 | 0x1, 40 | 0x7, 41 | 0x1 42 | } 43 | xi = 0x30 44 | .end annotation 45 | 46 | 47 | # static fields 48 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2; 49 | 50 | 51 | # direct methods 52 | .method static constructor ()V 53 | .locals 1 54 | 55 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2; 56 | 57 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2;->()V 58 | 59 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2; 60 | 61 | return-void 62 | .end method 63 | 64 | .method constructor ()V 65 | .locals 1 66 | 67 | const/4 v0, 0x0 68 | 69 | invoke-direct {p0, v0}, Lkotlin/jvm/internal/Lambda;->(I)V 70 | 71 | return-void 72 | .end method 73 | 74 | 75 | # virtual methods 76 | .method public bridge synthetic invoke()Ljava/lang/Object; 77 | .locals 1 78 | 79 | .line 64 80 | invoke-virtual {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion$dateFormat$2;->invoke()Ljava/text/SimpleDateFormat; 81 | 82 | move-result-object v0 83 | 84 | return-object v0 85 | .end method 86 | 87 | .method public final invoke()Ljava/text/SimpleDateFormat; 88 | .locals 3 89 | 90 | .line 64 91 | new-instance v0, Ljava/text/SimpleDateFormat; 92 | 93 | const-string v1, "yyyy-MM-dd" 94 | 95 | sget-object v2, Ljava/util/Locale;->ENGLISH:Ljava/util/Locale; 96 | 97 | invoke-direct {v0, v1, v2}, Ljava/text/SimpleDateFormat;->(Ljava/lang/String;Ljava/util/Locale;)V 98 | 99 | return-object v0 100 | .end method 101 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u001e\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0005\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\t\u001a\u0008\u0012\u0004\u0012\u00020\u000b0\nH\u00c6\u0001R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\u000c\n\u0004\u0008\u0007\u0010\u0008\u001a\u0004\u0008\u0005\u0010\u0006\u00a8\u0006\u000c" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion;", 22 | "", 23 | "()V", 24 | "dateFormat", 25 | "Ljava/text/SimpleDateFormat;", 26 | "getDateFormat", 27 | "()Ljava/text/SimpleDateFormat;", 28 | "dateFormat$delegate", 29 | "Lkotlin/Lazy;", 30 | "serializer", 31 | "Lkotlinx/serialization/KSerializer;", 32 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto;", 33 | "tachiyomi-zh.copymanga-v1.4.55_release" 34 | } 35 | k = 0x1 36 | mv = { 37 | 0x1, 38 | 0x7, 39 | 0x1 40 | } 41 | xi = 0x30 42 | .end annotation 43 | 44 | 45 | # direct methods 46 | .method private constructor ()V 47 | .locals 0 48 | 49 | .line 63 50 | invoke-direct {p0}, Ljava/lang/Object;->()V 51 | 52 | return-void 53 | .end method 54 | 55 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 56 | .locals 0 57 | 58 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$Companion;->()V 59 | 60 | return-void 61 | .end method 62 | 63 | 64 | # virtual methods 65 | .method public final getDateFormat()Ljava/text/SimpleDateFormat; 66 | .locals 1 67 | 68 | .line 64 69 | invoke-static {}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto;->access$getDateFormat$delegate$cp()Lkotlin/Lazy; 70 | 71 | move-result-object v0 72 | 73 | invoke-interface {v0}, Lkotlin/Lazy;->getValue()Ljava/lang/Object; 74 | 75 | move-result-object v0 76 | 77 | check-cast v0, Ljava/text/SimpleDateFormat; 78 | 79 | return-object v0 80 | .end method 81 | 82 | .method public final serializer()Lkotlinx/serialization/KSerializer; 83 | .locals 1 84 | .annotation system Ldalvik/annotation/Signature; 85 | value = { 86 | "()", 87 | "Lkotlinx/serialization/KSerializer<", 88 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto;", 89 | ">;" 90 | } 91 | .end annotation 92 | 93 | .line 63 94 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterDto$$serializer; 95 | 96 | check-cast v0, Lkotlinx/serialization/KSerializer; 97 | 98 | return-object v0 99 | .end method 100 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | # interfaces 6 | .implements Ljava/lang/Comparable; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/Signature; 11 | value = { 12 | "Ljava/lang/Object;", 13 | "Ljava/lang/Comparable<", 14 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;", 15 | ">;" 16 | } 17 | .end annotation 18 | 19 | .annotation runtime Lkotlin/Metadata; 20 | d1 = { 21 | "\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u000f\n\u0000\n\u0002\u0010\u0008\n\u0000\n\u0002\u0010\u000e\n\u0002\u0008\u0006\u0018\u00002\u0008\u0012\u0004\u0012\u00020\u00000\u0001B\u0017\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0008\u0010\u0004\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\u0002\u0010\u0006J\u0011\u0010\t\u001a\u00020\u00032\u0006\u0010\n\u001a\u00020\u0000H\u0096\u0002R\u000e\u0010\u0002\u001a\u00020\u0003X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0013\u0010\u0004\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\u0008\n\u0000\u001a\u0004\u0008\u0007\u0010\u0008\u00a8\u0006\u000b" 22 | } 23 | d2 = { 24 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;", 25 | "", 26 | "index", 27 | "", 28 | "url", 29 | "", 30 | "(ILjava/lang/String;)V", 31 | "getUrl", 32 | "()Ljava/lang/String;", 33 | "compareTo", 34 | "other", 35 | "tachiyomi-zh.copymanga-v1.4.55_release" 36 | } 37 | k = 0x1 38 | mv = { 39 | 0x1, 40 | 0x7, 41 | 0x1 42 | } 43 | xi = 0x30 44 | .end annotation 45 | 46 | 47 | # instance fields 48 | .field private final index:I 49 | 50 | .field private final url:Ljava/lang/String; 51 | 52 | 53 | # direct methods 54 | .method public constructor (ILjava/lang/String;)V 55 | .locals 0 56 | 57 | .line 93 58 | invoke-direct {p0}, Ljava/lang/Object;->()V 59 | 60 | iput p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->index:I 61 | 62 | iput-object p2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->url:Ljava/lang/String; 63 | 64 | return-void 65 | .end method 66 | 67 | 68 | # virtual methods 69 | .method public compareTo(Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;)I 70 | .locals 1 71 | 72 | const-string v0, "other" 73 | 74 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 75 | 76 | .line 94 77 | iget v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->index:I 78 | 79 | iget p1, p1, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->index:I 80 | 81 | invoke-static {v0, p1}, Lkotlin/jvm/internal/Intrinsics;->compare(II)I 82 | 83 | move-result p1 84 | 85 | return p1 86 | .end method 87 | 88 | .method public bridge synthetic compareTo(Ljava/lang/Object;)I 89 | .locals 0 90 | 91 | .line 93 92 | check-cast p1, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage; 93 | 94 | invoke-virtual {p0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->compareTo(Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;)I 95 | 96 | move-result p1 97 | 98 | return p1 99 | .end method 100 | 101 | .method public final getUrl()Ljava/lang/String; 102 | .locals 1 103 | 104 | .line 93 105 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPage;->url:Ljava/lang/String; 106 | 107 | return-object v0 108 | .end method 109 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto;", 27 | "tachiyomi-zh.copymanga-v1.4.55_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 84 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 84 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto;", 27 | "tachiyomi-zh.copymanga-v1.4.55_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 90 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 90 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ChapterPageListWrapperDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CommentsInterceptor$Tag.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/CommentsInterceptor$Tag; 2 | .super Ljava/lang/Object; 3 | .source "CommentsInterceptor.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/CommentsInterceptor; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Tag" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u000c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/CommentsInterceptor$Tag;", 22 | "", 23 | "()V", 24 | "tachiyomi-zh.copymanga-v1.4.55_release" 25 | } 26 | k = 0x1 27 | mv = { 28 | 0x1, 29 | 0x7, 30 | 0x1 31 | } 32 | xi = 0x30 33 | .end annotation 34 | 35 | 36 | # direct methods 37 | .method public constructor ()V 38 | .locals 0 39 | 40 | .line 17 41 | invoke-direct {p0}, Ljava/lang/Object;->()V 42 | 43 | return-void 44 | .end method 45 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2.smali: -------------------------------------------------------------------------------- 1 | .class final Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "Constants.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function0; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingClass; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x18 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function0<", 23 | "Lkotlin/text/Regex;", 24 | ">;" 25 | } 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\u0008\n\u0000\n\u0002\u0018\u0002\n\u0000\u0010\u0000\u001a\u00020\u0001H\n\u00a2\u0006\u0002\u0008\u0002" 31 | } 32 | d2 = { 33 | "", 34 | "Lkotlin/text/Regex;", 35 | "invoke" 36 | } 37 | k = 0x3 38 | mv = { 39 | 0x1, 40 | 0x7, 41 | 0x1 42 | } 43 | xi = 0x30 44 | .end annotation 45 | 46 | 47 | # static fields 48 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2; 49 | 50 | 51 | # direct methods 52 | .method static constructor ()V 53 | .locals 1 54 | 55 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2; 56 | 57 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2;->()V 58 | 59 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2; 60 | 61 | return-void 62 | .end method 63 | 64 | .method constructor ()V 65 | .locals 1 66 | 67 | const/4 v0, 0x0 68 | 69 | invoke-direct {p0, v0}, Lkotlin/jvm/internal/Lambda;->(I)V 70 | 71 | return-void 72 | .end method 73 | 74 | 75 | # virtual methods 76 | .method public bridge synthetic invoke()Ljava/lang/Object; 77 | .locals 1 78 | 79 | .line 31 80 | invoke-virtual {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ConstantsKt$resolutionRegex$2;->invoke()Lkotlin/text/Regex; 81 | 82 | move-result-object v0 83 | 84 | return-object v0 85 | .end method 86 | 87 | .method public final invoke()Lkotlin/text/Regex; 88 | .locals 2 89 | 90 | .line 31 91 | new-instance v0, Lkotlin/text/Regex; 92 | 93 | const-string v1, "\\d+(?=x\\.(?:jpg|webp)$)" 94 | 95 | invoke-direct {v0, v1}, Lkotlin/text/Regex;->(Ljava/lang/String;)V 96 | 97 | return-object v0 98 | .end method 99 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda0.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda0; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Lrx/functions/Func1; 7 | 8 | 9 | # instance fields 10 | .field public final synthetic f$0:Lkotlin/jvm/functions/Function1; 11 | 12 | 13 | # direct methods 14 | .method public synthetic constructor (Lkotlin/jvm/functions/Function1;)V 15 | .locals 0 16 | 17 | invoke-direct {p0}, Ljava/lang/Object;->()V 18 | 19 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda0;->f$0:Lkotlin/jvm/functions/Function1; 20 | 21 | return-void 22 | .end method 23 | 24 | 25 | # virtual methods 26 | .method public final call(Ljava/lang/Object;)Ljava/lang/Object; 27 | .locals 1 28 | 29 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda0;->f$0:Lkotlin/jvm/functions/Function1; 30 | 31 | invoke-static {v0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->$r8$lambda$ao4GgedQa9c-GhkUyACQ07Vf_Zw(Lkotlin/jvm/functions/Function1;Ljava/lang/Object;)Leu/kanade/tachiyomi/source/model/MangasPage; 32 | 33 | move-result-object p1 34 | 35 | return-object p1 36 | .end method 37 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda1.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda1; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Ljava/util/concurrent/Callable; 7 | 8 | 9 | # instance fields 10 | .field public final synthetic f$0:Leu/kanade/tachiyomi/source/model/SManga; 11 | 12 | .field public final synthetic f$1:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 13 | 14 | 15 | # direct methods 16 | .method public synthetic constructor (Leu/kanade/tachiyomi/source/model/SManga;Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;)V 17 | .locals 0 18 | 19 | invoke-direct {p0}, Ljava/lang/Object;->()V 20 | 21 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda1;->f$0:Leu/kanade/tachiyomi/source/model/SManga; 22 | 23 | iput-object p2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda1;->f$1:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 24 | 25 | return-void 26 | .end method 27 | 28 | 29 | # virtual methods 30 | .method public final call()Ljava/lang/Object; 31 | .locals 2 32 | 33 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda1;->f$0:Leu/kanade/tachiyomi/source/model/SManga; 34 | 35 | iget-object v1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$$ExternalSyntheticLambda1;->f$1:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 36 | 37 | invoke-static {v0, v1}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->$r8$lambda$8LLZBRnlc98tns-4zPxKkxVVWtc(Leu/kanade/tachiyomi/source/model/SManga;Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;)Ljava/util/List; 38 | 39 | move-result-object v0 40 | 41 | return-object v0 42 | .end method 43 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$_client$1$1.smali: -------------------------------------------------------------------------------- 1 | .class final Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$_client$1$1; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "CopyManga.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function1; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingMethod; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->()V 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x18 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function1<", 23 | "Lokhttp3/Interceptor;", 24 | "Ljava/lang/Boolean;", 25 | ">;" 26 | } 27 | .end annotation 28 | 29 | .annotation runtime Lkotlin/Metadata; 30 | d1 = { 31 | "\u0000\u0010\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0002\u0008\u0002\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0003H\n\u00a2\u0006\u0004\u0008\u0004\u0010\u0005" 32 | } 33 | d2 = { 34 | "", 35 | "", 36 | "it", 37 | "Lokhttp3/Interceptor;", 38 | "invoke", 39 | "(Lokhttp3/Interceptor;)Ljava/lang/Boolean;" 40 | } 41 | k = 0x3 42 | mv = { 43 | 0x1, 44 | 0x7, 45 | 0x1 46 | } 47 | xi = 0x30 48 | .end annotation 49 | 50 | 51 | # static fields 52 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$_client$1$1; 53 | 54 | 55 | # direct methods 56 | .method static constructor ()V 57 | .locals 1 58 | 59 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$_client$1$1; 60 | 61 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$_client$1$1;->()V 62 | 63 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$_client$1$1;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$_client$1$1; 64 | 65 | return-void 66 | .end method 67 | 68 | .method constructor ()V 69 | .locals 1 70 | 71 | const/4 v0, 0x1 72 | 73 | invoke-direct {p0, v0}, Lkotlin/jvm/internal/Lambda;->(I)V 74 | 75 | return-void 76 | .end method 77 | 78 | 79 | # virtual methods 80 | .method public final invoke(Lokhttp3/Interceptor;)Ljava/lang/Boolean; 81 | .locals 4 82 | 83 | const-string v0, "it" 84 | 85 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 86 | 87 | .line 106 88 | invoke-virtual {p1}, Ljava/lang/Object;->getClass()Ljava/lang/Class; 89 | 90 | move-result-object p1 91 | 92 | invoke-virtual {p1}, Ljava/lang/Class;->getSimpleName()Ljava/lang/String; 93 | 94 | move-result-object p1 95 | 96 | const-string v0, "it.javaClass.simpleName" 97 | 98 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullExpressionValue(Ljava/lang/Object;Ljava/lang/String;)V 99 | 100 | check-cast p1, Ljava/lang/CharSequence; 101 | 102 | const-string v0, "Brotli" 103 | 104 | check-cast v0, Ljava/lang/CharSequence; 105 | 106 | const/4 v1, 0x2 107 | 108 | const/4 v2, 0x0 109 | 110 | const/4 v3, 0x0 111 | 112 | invoke-static {p1, v0, v3, v1, v2}, Lkotlin/text/StringsKt;->contains$default(Ljava/lang/CharSequence;Ljava/lang/CharSequence;ZILjava/lang/Object;)Z 113 | 114 | move-result p1 115 | 116 | invoke-static {p1}, Ljava/lang/Boolean;->valueOf(Z)Ljava/lang/Boolean; 117 | 118 | move-result-object p1 119 | 120 | return-object p1 121 | .end method 122 | 123 | .method public bridge synthetic invoke(Ljava/lang/Object;)Ljava/lang/Object; 124 | .locals 0 125 | 126 | .line 106 127 | check-cast p1, Lokhttp3/Interceptor; 128 | 129 | invoke-virtual {p0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$_client$1$1;->invoke(Lokhttp3/Interceptor;)Ljava/lang/Boolean; 130 | 131 | move-result-object p1 132 | 133 | return-object p1 134 | .end method 135 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1.smali: -------------------------------------------------------------------------------- 1 | .class final Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "CopyManga.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function0; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingMethod; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->getClient()Lokhttp3/OkHttpClient; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x18 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function0<", 23 | "Lkotlin/Unit;", 24 | ">;" 25 | } 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\u0008\n\u0000\n\u0002\u0010\u0002\n\u0000\u0010\u0000\u001a\u00020\u0001H\n\u00a2\u0006\u0002\u0008\u0002" 31 | } 32 | d2 = { 33 | "", 34 | "", 35 | "invoke" 36 | } 37 | k = 0x3 38 | mv = { 39 | 0x1, 40 | 0x7, 41 | 0x1 42 | } 43 | xi = 0x30 44 | .end annotation 45 | 46 | 47 | # instance fields 48 | .field final synthetic this$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 49 | 50 | 51 | # direct methods 52 | .method constructor (Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;)V 53 | .locals 0 54 | 55 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1;->this$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 56 | 57 | const/4 p1, 0x0 58 | 59 | invoke-direct {p0, p1}, Lkotlin/jvm/internal/Lambda;->(I)V 60 | 61 | return-void 62 | .end method 63 | 64 | 65 | # virtual methods 66 | .method public bridge synthetic invoke()Ljava/lang/Object; 67 | .locals 1 68 | 69 | .line 113 70 | invoke-virtual {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1;->invoke()V 71 | 72 | sget-object v0, Lkotlin/Unit;->INSTANCE:Lkotlin/Unit; 73 | 74 | return-object v0 75 | .end method 76 | 77 | .method public final invoke()V 78 | .locals 3 79 | 80 | .line 113 81 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1;->this$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 82 | 83 | invoke-static {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->access$get_client$p(Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;)Lokhttp3/OkHttpClient; 84 | 85 | move-result-object v1 86 | 87 | iget-object v2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$client$1;->this$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 88 | 89 | invoke-static {v2}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->access$getPreferences$p(Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;)Landroid/content/SharedPreferences; 90 | 91 | move-result-object v2 92 | 93 | invoke-static {v0, v1, v2}, Leu/kanade/tachiyomi/extension/zh/copymanga/VersionUpdaterKt;->updateVersion(Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;Lokhttp3/OkHttpClient;Landroid/content/SharedPreferences;)V 94 | 95 | return-void 96 | .end method 97 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$fetchSearchManga$1$$ExternalSyntheticLambda0.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$fetchSearchManga$1$$ExternalSyntheticLambda0; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Ljava/lang/Runnable; 7 | 8 | 9 | # direct methods 10 | .method public synthetic constructor ()V 11 | .locals 0 12 | 13 | invoke-direct {p0}, Ljava/lang/Object;->()V 14 | 15 | return-void 16 | .end method 17 | 18 | 19 | # virtual methods 20 | .method public final run()V 21 | .locals 0 22 | 23 | invoke-static {}, Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$fetchSearchManga$1;->$r8$lambda$nxkqyZ_N65mJYjbp5fjB2UGkTAw()V 24 | 25 | return-void 26 | .end method 27 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$fetchSearchManga$1$invoke$lambda$1$$inlined$get$1.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$fetchSearchManga$1$invoke$lambda$1$$inlined$get$1; 2 | .super Luy/kohesive/injekt/api/FullTypeReference; 3 | .source "TypeInfo.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingMethod; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$fetchSearchManga$1;->invoke(Ljava/lang/String;)Leu/kanade/tachiyomi/source/model/MangasPage; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = null 14 | .end annotation 15 | 16 | .annotation system Ldalvik/annotation/Signature; 17 | value = { 18 | "Luy/kohesive/injekt/api/FullTypeReference<", 19 | "Landroid/app/Application;", 20 | ">;" 21 | } 22 | .end annotation 23 | 24 | .annotation system Ldalvik/annotation/SourceDebugExtension; 25 | value = "SMAP\nTypeInfo.kt\nKotlin\n*S Kotlin\n*F\n+ 1 TypeInfo.kt\nuy/kohesive/injekt/api/TypeInfoKt$fullType$1\n*L\n1#1,44:1\n*E\n" 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\r\n\u0000\n\u0002\u0018\u0002\n\u0002\u0008\u0003*\u0001\u0000\u0008\n\u0018\u00002\u0008\u0012\u0004\u0012\u00028\u00000\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003\u00b8\u0006\u0004" 31 | } 32 | d2 = { 33 | "uy/kohesive/injekt/api/TypeInfoKt$fullType$1", 34 | "Luy/kohesive/injekt/api/FullTypeReference;", 35 | "()V", 36 | "injekt-api-compileKotlin", 37 | "uy/kohesive/injekt/api/FactoryKt$get$$inlined$fullType$1" 38 | } 39 | k = 0x1 40 | mv = { 41 | 0x1, 42 | 0x7, 43 | 0x1 44 | } 45 | .end annotation 46 | 47 | 48 | # direct methods 49 | .method constructor ()V 50 | .locals 0 51 | 52 | .line 27 53 | invoke-direct {p0}, Luy/kohesive/injekt/api/FullTypeReference;->()V 54 | 55 | return-void 56 | .end method 57 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$special$$inlined$get$1.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga$special$$inlined$get$1; 2 | .super Luy/kohesive/injekt/api/FullTypeReference; 3 | .source "TypeInfo.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingMethod; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;->()V 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = null 14 | .end annotation 15 | 16 | .annotation system Ldalvik/annotation/Signature; 17 | value = { 18 | "Luy/kohesive/injekt/api/FullTypeReference<", 19 | "Landroid/app/Application;", 20 | ">;" 21 | } 22 | .end annotation 23 | 24 | .annotation system Ldalvik/annotation/SourceDebugExtension; 25 | value = "SMAP\nTypeInfo.kt\nKotlin\n*S Kotlin\n*F\n+ 1 TypeInfo.kt\nuy/kohesive/injekt/api/TypeInfoKt$fullType$1\n*L\n1#1,44:1\n*E\n" 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\r\n\u0000\n\u0002\u0018\u0002\n\u0002\u0008\u0003*\u0001\u0000\u0008\n\u0018\u00002\u0008\u0012\u0004\u0012\u00028\u00000\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003\u00b8\u0006\u0004" 31 | } 32 | d2 = { 33 | "uy/kohesive/injekt/api/TypeInfoKt$fullType$1", 34 | "Luy/kohesive/injekt/api/FullTypeReference;", 35 | "()V", 36 | "injekt-api-compileKotlin", 37 | "uy/kohesive/injekt/api/FactoryKt$get$$inlined$fullType$1" 38 | } 39 | k = 0x1 40 | mv = { 41 | 0x1, 42 | 0x7, 43 | 0x1 44 | } 45 | .end annotation 46 | 47 | 48 | # direct methods 49 | .method constructor ()V 50 | .locals 0 51 | 52 | .line 27 53 | invoke-direct {p0}, Luy/kohesive/injekt/api/FullTypeReference;->()V 54 | 55 | return-void 56 | .end method 57 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/DtoKt.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/DtoKt; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation runtime Lkotlin/Metadata; 8 | d1 = { 9 | "\u0000\u0014\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u000e\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000*\"\u0010\u0000\"\u000e\u0012\u0004\u0012\u00020\u0002\u0012\u0004\u0012\u00020\u0003`\u00012\u000e\u0012\u0004\u0012\u00020\u0002\u0012\u0004\u0012\u00020\u00030\u0004\u00a8\u0006\u0005" 10 | } 11 | d2 = { 12 | "ChapterGroups", 13 | "Lkotlin/collections/LinkedHashMap;", 14 | "", 15 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;", 16 | "Ljava/util/LinkedHashMap;", 17 | "tachiyomi-zh.copymanga-v1.4.55_release" 18 | } 19 | k = 0x2 20 | mv = { 21 | 0x1, 22 | 0x7, 23 | 0x1 24 | } 25 | xi = 0x30 26 | .end annotation 27 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/GenreFilter.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/GenreFilter; 2 | .super Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter; 3 | .source "Filters.kt" 4 | 5 | # interfaces 6 | .implements Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter; 7 | 8 | 9 | # annotations 10 | .annotation runtime Lkotlin/Metadata; 11 | d1 = { 12 | "\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0011\n\u0002\u0018\u0002\n\u0002\u0008\u0002\u0018\u00002\u00020\u00012\u00020\u0002B\u0013\u0012\u000c\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004\u00a2\u0006\u0002\u0010\u0006\u00a8\u0006\u0007" 13 | } 14 | d2 = { 15 | "Leu/kanade/tachiyomi/extension/zh/copymanga/GenreFilter;", 16 | "Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;", 17 | "Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter;", 18 | "genres", 19 | "", 20 | "Leu/kanade/tachiyomi/extension/zh/copymanga/Param;", 21 | "([Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V", 22 | "tachiyomi-zh.copymanga-v1.4.55_release" 23 | } 24 | k = 0x1 25 | mv = { 26 | 0x1, 27 | 0x7, 28 | 0x1 29 | } 30 | xi = 0x30 31 | .end annotation 32 | 33 | 34 | # direct methods 35 | .method public constructor ([Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V 36 | .locals 2 37 | 38 | const-string v0, "genres" 39 | 40 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 41 | 42 | const-string v0, "\u9898\u6750" 43 | 44 | const-string v1, "theme" 45 | 46 | .line 99 47 | invoke-direct {p0, v0, v1, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;->(Ljava/lang/String;Ljava/lang/String;[Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V 48 | 49 | return-void 50 | .end method 51 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor; 2 | .super Ljava/lang/Object; 3 | .source "Headers.kt" 4 | 5 | # interfaces 6 | .implements Lokhttp3/Interceptor; 7 | 8 | 9 | # annotations 10 | .annotation runtime Lkotlin/Metadata; 11 | d1 = { 12 | "\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0016\u00a8\u0006\u0007" 13 | } 14 | d2 = { 15 | "Leu/kanade/tachiyomi/extension/zh/copymanga/HeadersInterceptor;", 16 | "Lokhttp3/Interceptor;", 17 | "()V", 18 | "intercept", 19 | "Lokhttp3/Response;", 20 | "chain", 21 | "Lokhttp3/Interceptor$Chain;", 22 | "tachiyomi-zh.copymanga-v1.4.55_release" 23 | } 24 | k = 0x1 25 | mv = { 26 | 0x1, 27 | 0x7, 28 | 0x1 29 | } 30 | xi = 0x30 31 | .end annotation 32 | 33 | 34 | # direct methods 35 | .method public constructor ()V 36 | .locals 0 37 | 38 | .line 14 39 | invoke-direct {p0}, Ljava/lang/Object;->()V 40 | 41 | return-void 42 | .end method 43 | 44 | 45 | # virtual methods 46 | .method public intercept(Lokhttp3/Interceptor$Chain;)Lokhttp3/Response; 47 | .locals 2 48 | 49 | const-string v0, "chain" 50 | 51 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 52 | 53 | .line 16 54 | invoke-interface {p1}, Lokhttp3/Interceptor$Chain;->request()Lokhttp3/Request; 55 | 56 | move-result-object v0 57 | 58 | invoke-virtual {v0}, Lokhttp3/Request;->newBuilder()Lokhttp3/Request$Builder; 59 | 60 | move-result-object v0 61 | 62 | const-string v1, "Cache-Control" 63 | 64 | .line 17 65 | invoke-virtual {v0, v1}, Lokhttp3/Request$Builder;->removeHeader(Ljava/lang/String;)Lokhttp3/Request$Builder; 66 | 67 | move-result-object v0 68 | 69 | .line 18 70 | invoke-virtual {v0}, Lokhttp3/Request$Builder;->build()Lokhttp3/Request; 71 | 72 | move-result-object v0 73 | 74 | .line 19 75 | invoke-interface {p1, v0}, Lokhttp3/Interceptor$Chain;->proceed(Lokhttp3/Request;)Lokhttp3/Response; 76 | 77 | move-result-object p1 78 | 79 | return-object p1 80 | .end method 81 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1$1.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1$1; 2 | .super Luy/kohesive/injekt/api/FullTypeReference; 3 | .source "TypeInfo.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingMethod; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1;->invoke()Ljava/lang/Object; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = null 14 | .end annotation 15 | 16 | .annotation system Ldalvik/annotation/Signature; 17 | value = { 18 | "Luy/kohesive/injekt/api/FullTypeReference<", 19 | "Lkotlinx/serialization/json/Json;", 20 | ">;" 21 | } 22 | .end annotation 23 | 24 | .annotation system Ldalvik/annotation/SourceDebugExtension; 25 | value = "SMAP\nTypeInfo.kt\nKotlin\n*S Kotlin\n*F\n+ 1 TypeInfo.kt\nuy/kohesive/injekt/api/TypeInfoKt$fullType$1\n*L\n1#1,44:1\n*E\n" 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\r\n\u0000\n\u0002\u0018\u0002\n\u0002\u0008\u0003*\u0001\u0000\u0008\n\u0018\u00002\u0008\u0012\u0004\u0012\u00028\u00000\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003\u00b8\u0006\u0004" 31 | } 32 | d2 = { 33 | "uy/kohesive/injekt/api/TypeInfoKt$fullType$1", 34 | "Luy/kohesive/injekt/api/FullTypeReference;", 35 | "()V", 36 | "injekt-api-compileKotlin", 37 | "uy/kohesive/injekt/InjektKt$injectLazy$1$$special$$inlined$fullType$1" 38 | } 39 | k = 0x1 40 | mv = { 41 | 0x1, 42 | 0x7, 43 | 0x1 44 | } 45 | .end annotation 46 | 47 | 48 | # direct methods 49 | .method constructor ()V 50 | .locals 0 51 | 52 | .line 27 53 | invoke-direct {p0}, Luy/kohesive/injekt/api/FullTypeReference;->()V 54 | 55 | return-void 56 | .end method 57 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "Injekt.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function0; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingClass; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x19 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function0<", 23 | "Lkotlinx/serialization/json/Json;", 24 | ">;" 25 | } 26 | .end annotation 27 | 28 | .annotation system Ldalvik/annotation/SourceDebugExtension; 29 | value = "SMAP\nInjekt.kt\nKotlin\n*S Kotlin\n*F\n+ 1 Injekt.kt\nuy/kohesive/injekt/InjektKt$injectLazy$1\n+ 2 TypeInfo.kt\nuy/kohesive/injekt/api/TypeInfoKt\n+ 3 Factory.kt\nuy/kohesive/injekt/api/FactoryKt\n*L\n1#1,48:1\n27#2:49\n24#3:50\n*E\n" 30 | .end annotation 31 | 32 | .annotation runtime Lkotlin/Metadata; 33 | d1 = { 34 | "\u0000\u0004\n\u0002\u0008\u0004\u0010\u0000\u001a\u00028\u0000H\n\u00a2\u0006\u0004\u0008\u0001\u0010\u0002\u00a8\u0006\u0003" 35 | } 36 | d2 = { 37 | "", 38 | "invoke", 39 | "()Ljava/lang/Object;", 40 | "uy/kohesive/injekt/InjektKt$injectLazy$1" 41 | } 42 | k = 0x3 43 | mv = { 44 | 0x1, 45 | 0x7, 46 | 0x1 47 | } 48 | .end annotation 49 | 50 | 51 | # static fields 52 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1; 53 | 54 | 55 | # direct methods 56 | .method static constructor ()V 57 | .locals 1 58 | 59 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1; 60 | 61 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1;->()V 62 | 63 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1; 64 | 65 | return-void 66 | .end method 67 | 68 | .method public constructor ()V 69 | .locals 1 70 | 71 | const/4 v0, 0x0 72 | 73 | invoke-direct {p0, v0}, Lkotlin/jvm/internal/Lambda;->(I)V 74 | 75 | return-void 76 | .end method 77 | 78 | 79 | # virtual methods 80 | .method public final invoke()Ljava/lang/Object; 81 | .locals 2 82 | .annotation system Ldalvik/annotation/Signature; 83 | value = { 84 | "()", 85 | "Lkotlinx/serialization/json/Json;" 86 | } 87 | .end annotation 88 | 89 | .line 17 90 | invoke-static {}, Luy/kohesive/injekt/InjektKt;->getInjekt()Luy/kohesive/injekt/api/InjektScope; 91 | 92 | move-result-object v0 93 | 94 | check-cast v0, Luy/kohesive/injekt/api/InjektFactory; 95 | 96 | .line 49 97 | new-instance v1, Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1$1; 98 | 99 | invoke-direct {v1}, Leu/kanade/tachiyomi/extension/zh/copymanga/JsonKt$special$$inlined$injectLazy$1$1;->()V 100 | 101 | check-cast v1, Luy/kohesive/injekt/api/FullTypeReference; 102 | 103 | .line 17 104 | check-cast v1, Luy/kohesive/injekt/api/TypeReference; 105 | 106 | .line 50 107 | invoke-interface {v1}, Luy/kohesive/injekt/api/TypeReference;->getType()Ljava/lang/reflect/Type; 108 | 109 | move-result-object v1 110 | 111 | invoke-interface {v0, v1}, Luy/kohesive/injekt/api/InjektFactory;->getInstance(Ljava/lang/reflect/Type;)Ljava/lang/Object; 112 | 113 | move-result-object v0 114 | 115 | return-object v0 116 | .end method 117 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;", 27 | "tachiyomi-zh.copymanga-v1.4.55_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 68 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 68 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ListDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0003\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J)\u0010\u0003\u001a\u000e\u0012\n\u0012\u0008\u0012\u0004\u0012\u0002H\u00060\u00050\u0004\"\u0004\u0008\u0001\u0010\u00062\u000c\u0010\u0007\u001a\u0008\u0012\u0004\u0012\u0002H\u00060\u0004H\u00c6\u0001\u00a8\u0006\u0008" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto;", 27 | "T0", 28 | "typeSerial0", 29 | "tachiyomi-zh.copymanga-v1.4.55_release" 30 | } 31 | k = 0x1 32 | mv = { 33 | 0x1, 34 | 0x7, 35 | 0x1 36 | } 37 | xi = 0x30 38 | .end annotation 39 | 40 | 41 | # direct methods 42 | .method private constructor ()V 43 | .locals 0 44 | 45 | .line 105 46 | invoke-direct {p0}, Ljava/lang/Object;->()V 47 | 48 | return-void 49 | .end method 50 | 51 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 52 | .locals 0 53 | 54 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto$Companion;->()V 55 | 56 | return-void 57 | .end method 58 | 59 | 60 | # virtual methods 61 | .method public final serializer(Lkotlinx/serialization/KSerializer;)Lkotlinx/serialization/KSerializer; 62 | .locals 1 63 | .annotation system Ldalvik/annotation/Signature; 64 | value = { 65 | "(", 68 | "Lkotlinx/serialization/KSerializer<", 69 | "TT0;>;)", 70 | "Lkotlinx/serialization/KSerializer<", 71 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto<", 72 | "TT0;>;>;" 73 | } 74 | .end annotation 75 | 76 | const-string v0, "typeSerial0" 77 | 78 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 79 | 80 | .line 105 81 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto$$serializer; 82 | 83 | invoke-direct {v0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/ListDto$$serializer;->(Lkotlinx/serialization/KSerializer;)V 84 | 85 | check-cast v0, Lkotlinx/serialization/KSerializer; 86 | 87 | return-object v0 88 | .end method 89 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u000b\n\u0002\u0008\u0005\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u000b\u001a\u0008\u0012\u0004\u0012\u00020\r0\u000cH\u00c6\u0001R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u001a\u0010\u0005\u001a\u00020\u0006X\u0080\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\u0008\u0007\u0010\u0008\"\u0004\u0008\t\u0010\n\u00a8\u0006\u000e" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$Companion;", 22 | "", 23 | "()V", 24 | "URL_PREFIX", 25 | "", 26 | "convertToSc", 27 | "", 28 | "getConvertToSc$tachiyomi_zh_copymanga_v1_4_53_release", 29 | "()Z", 30 | "setConvertToSc$tachiyomi_zh_copymanga_v1_4_53_release", 31 | "(Z)V", 32 | "serializer", 33 | "Lkotlinx/serialization/KSerializer;", 34 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto;", 35 | "tachiyomi-zh.copymanga-v1.4.55_release" 36 | } 37 | k = 0x1 38 | mv = { 39 | 0x1, 40 | 0x7, 41 | 0x1 42 | } 43 | xi = 0x30 44 | .end annotation 45 | 46 | 47 | # direct methods 48 | .method private constructor ()V 49 | .locals 0 50 | 51 | .line 43 52 | invoke-direct {p0}, Ljava/lang/Object;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 58 | .locals 0 59 | 60 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$Companion;->()V 61 | 62 | return-void 63 | .end method 64 | 65 | 66 | # virtual methods 67 | .method public final getConvertToSc$tachiyomi_zh_copymanga_v1_4_53_release()Z 68 | .locals 1 69 | 70 | .line 44 71 | invoke-static {}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto;->access$getConvertToSc$cp()Z 72 | 73 | move-result v0 74 | 75 | return v0 76 | .end method 77 | 78 | .method public final serializer()Lkotlinx/serialization/KSerializer; 79 | .locals 1 80 | .annotation system Ldalvik/annotation/Signature; 81 | value = { 82 | "()", 83 | "Lkotlinx/serialization/KSerializer<", 84 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto;", 85 | ">;" 86 | } 87 | .end annotation 88 | 89 | .line 43 90 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$$serializer; 91 | 92 | check-cast v0, Lkotlinx/serialization/KSerializer; 93 | 94 | return-object v0 95 | .end method 96 | 97 | .method public final setConvertToSc$tachiyomi_zh_copymanga_v1_4_53_release(Z)V 98 | .locals 0 99 | 100 | .line 44 101 | invoke-static {p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto;->access$setConvertToSc$cp(Z)V 102 | 103 | return-void 104 | .end method 105 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1.smali: -------------------------------------------------------------------------------- 1 | .class final Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "Dto.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function1; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingMethod; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto;->toSManga()Leu/kanade/tachiyomi/source/model/SManga; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x18 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function1<", 23 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;", 24 | "Ljava/lang/CharSequence;", 25 | ">;" 26 | } 27 | .end annotation 28 | 29 | .annotation runtime Lkotlin/Metadata; 30 | d1 = { 31 | "\u0000\u000e\n\u0000\n\u0002\u0010\r\n\u0000\n\u0002\u0018\u0002\n\u0000\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0003H\n\u00a2\u0006\u0002\u0008\u0004" 32 | } 33 | d2 = { 34 | "", 35 | "", 36 | "it", 37 | "Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;", 38 | "invoke" 39 | } 40 | k = 0x3 41 | mv = { 42 | 0x1, 43 | 0x7, 44 | 0x1 45 | } 46 | xi = 0x30 47 | .end annotation 48 | 49 | 50 | # static fields 51 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1; 52 | 53 | 54 | # direct methods 55 | .method static constructor ()V 56 | .locals 1 57 | 58 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1; 59 | 60 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1;->()V 61 | 62 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1; 63 | 64 | return-void 65 | .end method 66 | 67 | .method constructor ()V 68 | .locals 1 69 | 70 | const/4 v0, 0x1 71 | 72 | invoke-direct {p0, v0}, Lkotlin/jvm/internal/Lambda;->(I)V 73 | 74 | return-void 75 | .end method 76 | 77 | 78 | # virtual methods 79 | .method public final invoke(Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;)Ljava/lang/CharSequence; 80 | .locals 1 81 | 82 | const-string v0, "it" 83 | 84 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 85 | 86 | .line 24 87 | invoke-virtual {p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;->getName()Ljava/lang/String; 88 | 89 | move-result-object p1 90 | 91 | check-cast p1, Ljava/lang/CharSequence; 92 | 93 | return-object p1 94 | .end method 95 | 96 | .method public bridge synthetic invoke(Ljava/lang/Object;)Ljava/lang/Object; 97 | .locals 0 98 | 99 | .line 24 100 | check-cast p1, Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto; 101 | 102 | invoke-virtual {p0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSManga$1$1;->invoke(Leu/kanade/tachiyomi/extension/zh/copymanga/KeywordDto;)Ljava/lang/CharSequence; 103 | 104 | move-result-object p1 105 | 106 | return-object p1 107 | .end method 108 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSMangaDetails$1$2.smali: -------------------------------------------------------------------------------- 1 | .class final Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSMangaDetails$1$2; 2 | .super Lkotlin/jvm/internal/Lambda; 3 | .source "Dto.kt" 4 | 5 | # interfaces 6 | .implements Lkotlin/jvm/functions/Function1; 7 | 8 | 9 | # annotations 10 | .annotation system Ldalvik/annotation/EnclosingMethod; 11 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto;->toSMangaDetails()Leu/kanade/tachiyomi/source/model/SManga; 12 | .end annotation 13 | 14 | .annotation system Ldalvik/annotation/InnerClass; 15 | accessFlags = 0x18 16 | name = null 17 | .end annotation 18 | 19 | .annotation system Ldalvik/annotation/Signature; 20 | value = { 21 | "Lkotlin/jvm/internal/Lambda;", 22 | "Lkotlin/jvm/functions/Function1<", 23 | "Ljava/lang/String;", 24 | "Ljava/lang/CharSequence;", 25 | ">;" 26 | } 27 | .end annotation 28 | 29 | .annotation runtime Lkotlin/Metadata; 30 | d1 = { 31 | "\u0000\u000e\n\u0000\n\u0002\u0010\r\n\u0000\n\u0002\u0010\u000e\n\u0000\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0003H\n\u00a2\u0006\u0002\u0008\u0004" 32 | } 33 | d2 = { 34 | "", 35 | "", 36 | "it", 37 | "", 38 | "invoke" 39 | } 40 | k = 0x3 41 | mv = { 42 | 0x1, 43 | 0x7, 44 | 0x1 45 | } 46 | xi = 0x30 47 | .end annotation 48 | 49 | 50 | # static fields 51 | .field public static final INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSMangaDetails$1$2; 52 | 53 | 54 | # direct methods 55 | .method static constructor ()V 56 | .locals 1 57 | 58 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSMangaDetails$1$2; 59 | 60 | invoke-direct {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSMangaDetails$1$2;->()V 61 | 62 | sput-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSMangaDetails$1$2;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSMangaDetails$1$2; 63 | 64 | return-void 65 | .end method 66 | 67 | .method constructor ()V 68 | .locals 1 69 | 70 | const/4 v0, 0x1 71 | 72 | invoke-direct {p0, v0}, Lkotlin/jvm/internal/Lambda;->(I)V 73 | 74 | return-void 75 | .end method 76 | 77 | 78 | # virtual methods 79 | .method public final invoke(Ljava/lang/String;)Ljava/lang/CharSequence; 80 | .locals 1 81 | 82 | const-string v0, "it" 83 | 84 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 85 | 86 | .line 33 87 | invoke-static {p1}, Lcom/luhuiguo/chinese/ChineseUtils;->toSimplified(Ljava/lang/String;)Ljava/lang/String; 88 | 89 | move-result-object p1 90 | 91 | const-string v0, "toSimplified(it)" 92 | 93 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullExpressionValue(Ljava/lang/Object;Ljava/lang/String;)V 94 | 95 | check-cast p1, Ljava/lang/CharSequence; 96 | 97 | return-object p1 98 | .end method 99 | 100 | .method public bridge synthetic invoke(Ljava/lang/Object;)Ljava/lang/Object; 101 | .locals 0 102 | 103 | .line 33 104 | check-cast p1, Ljava/lang/String; 105 | 106 | invoke-virtual {p0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaDto$toSMangaDetails$1$2;->invoke(Ljava/lang/String;)Ljava/lang/CharSequence; 107 | 108 | move-result-object p1 109 | 110 | return-object p1 111 | .end method 112 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto;", 27 | "tachiyomi-zh.copymanga-v1.4.55_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 76 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 76 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/MangaWrapperDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/Param.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/Param; 2 | .super Ljava/lang/Object; 3 | .source "Filters.kt" 4 | 5 | 6 | # annotations 7 | .annotation runtime Lkotlin/Metadata; 8 | d1 = { 9 | "\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\u0008\u0006\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0005R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0008\n\u0000\u001a\u0004\u0008\u0006\u0010\u0007R\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0008\n\u0000\u001a\u0004\u0008\u0008\u0010\u0007\u00a8\u0006\t" 10 | } 11 | d2 = { 12 | "Leu/kanade/tachiyomi/extension/zh/copymanga/Param;", 13 | "", 14 | "name", 15 | "", 16 | "value", 17 | "(Ljava/lang/String;Ljava/lang/String;)V", 18 | "getName", 19 | "()Ljava/lang/String;", 20 | "getValue", 21 | "tachiyomi-zh.copymanga-v1.4.55_release" 22 | } 23 | k = 0x1 24 | mv = { 25 | 0x1, 26 | 0x7, 27 | 0x1 28 | } 29 | xi = 0x30 30 | .end annotation 31 | 32 | 33 | # instance fields 34 | .field private final name:Ljava/lang/String; 35 | 36 | .field private final value:Ljava/lang/String; 37 | 38 | 39 | # direct methods 40 | .method public constructor (Ljava/lang/String;Ljava/lang/String;)V 41 | .locals 1 42 | 43 | const-string v0, "name" 44 | 45 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 46 | 47 | const-string v0, "value" 48 | 49 | invoke-static {p2, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 50 | 51 | .line 72 52 | invoke-direct {p0}, Ljava/lang/Object;->()V 53 | 54 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/Param;->name:Ljava/lang/String; 55 | 56 | iput-object p2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/Param;->value:Ljava/lang/String; 57 | 58 | return-void 59 | .end method 60 | 61 | 62 | # virtual methods 63 | .method public final getName()Ljava/lang/String; 64 | .locals 1 65 | 66 | .line 72 67 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/Param;->name:Ljava/lang/String; 68 | 69 | return-object v0 70 | .end method 71 | 72 | .method public final getValue()Ljava/lang/String; 73 | .locals 1 74 | 75 | .line 72 76 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/Param;->value:Ljava/lang/String; 77 | 78 | return-object v0 79 | .end method 80 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda0.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda0; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Landroidx/preference/Preference$OnPreferenceChangeListener; 7 | 8 | 9 | # direct methods 10 | .method public synthetic constructor ()V 11 | .locals 0 12 | 13 | invoke-direct {p0}, Ljava/lang/Object;->()V 14 | 15 | return-void 16 | .end method 17 | 18 | 19 | # virtual methods 20 | .method public final onPreferenceChange(Landroidx/preference/Preference;Ljava/lang/Object;)Z 21 | .locals 0 22 | 23 | invoke-static {p1, p2}, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt;->$r8$lambda$sXGmSXYyj7zIlezNBSFtxI6iaS0(Landroidx/preference/Preference;Ljava/lang/Object;)Z 24 | 25 | move-result p1 26 | 27 | return p1 28 | .end method 29 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Landroidx/preference/Preference$OnPreferenceChangeListener; 7 | 8 | 9 | # instance fields 10 | .field public final synthetic f$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 11 | 12 | .field public final synthetic f$1:[Ljava/lang/String; 13 | 14 | 15 | # direct methods 16 | .method public synthetic constructor (Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;[Ljava/lang/String;)V 17 | .locals 0 18 | 19 | invoke-direct {p0}, Ljava/lang/Object;->()V 20 | 21 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1;->f$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 22 | 23 | iput-object p2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1;->f$1:[Ljava/lang/String; 24 | 25 | return-void 26 | .end method 27 | 28 | 29 | # virtual methods 30 | .method public final onPreferenceChange(Landroidx/preference/Preference;Ljava/lang/Object;)Z 31 | .locals 2 32 | 33 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1;->f$0:Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga; 34 | 35 | iget-object v1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda1;->f$1:[Ljava/lang/String; 36 | 37 | invoke-static {v0, v1, p1, p2}, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt;->$r8$lambda$RCiZtxWl1s_k3uRdzxWoeUMZWQI(Leu/kanade/tachiyomi/extension/zh/copymanga/CopyManga;[Ljava/lang/String;Landroidx/preference/Preference;Ljava/lang/Object;)Z 38 | 39 | move-result p1 40 | 41 | return p1 42 | .end method 43 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda2.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt$$ExternalSyntheticLambda2; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Landroidx/preference/Preference$OnPreferenceChangeListener; 7 | 8 | 9 | # direct methods 10 | .method public synthetic constructor ()V 11 | .locals 0 12 | 13 | invoke-direct {p0}, Ljava/lang/Object;->()V 14 | 15 | return-void 16 | .end method 17 | 18 | 19 | # virtual methods 20 | .method public final onPreferenceChange(Landroidx/preference/Preference;Ljava/lang/Object;)Z 21 | .locals 0 22 | 23 | invoke-static {p1, p2}, Leu/kanade/tachiyomi/extension/zh/copymanga/PreferencesKt;->$r8$lambda$7W6WoE4PV-4wxy8AWWeKQp2nN4U(Landroidx/preference/Preference;Ljava/lang/Object;)Z 24 | 25 | move-result p1 26 | 27 | return p1 28 | .end method 29 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/QueryFilter.smali: -------------------------------------------------------------------------------- 1 | .class public interface abstract Leu/kanade/tachiyomi/extension/zh/copymanga/QueryFilter; 2 | .super Ljava/lang/Object; 3 | .source "Filters.kt" 4 | 5 | 6 | # annotations 7 | .annotation runtime Lkotlin/Metadata; 8 | d1 = { 9 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\u0008f\u0018\u00002\u00020\u0001J\u0010\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H&\u00a8\u0006\u0006" 10 | } 11 | d2 = { 12 | "Leu/kanade/tachiyomi/extension/zh/copymanga/QueryFilter;", 13 | "", 14 | "addQuery", 15 | "", 16 | "builder", 17 | "Lokhttp3/HttpUrl$Builder;", 18 | "tachiyomi-zh.copymanga-v1.4.55_release" 19 | } 20 | k = 0x1 21 | mv = { 22 | 0x1, 23 | 0x7, 24 | 0x1 25 | } 26 | xi = 0x30 27 | .end annotation 28 | 29 | 30 | # virtual methods 31 | .method public abstract addQuery(Lokhttp3/HttpUrl$Builder;)V 32 | .end method 33 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/RankFilter.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/RankFilter; 2 | .super Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter; 3 | .source "Filters.kt" 4 | 5 | 6 | # annotations 7 | .annotation runtime Lkotlin/Metadata; 8 | d1 = { 9 | "\u0000\u000c\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0002\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003" 10 | } 11 | d2 = { 12 | "Leu/kanade/tachiyomi/extension/zh/copymanga/RankFilter;", 13 | "Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;", 14 | "()V", 15 | "tachiyomi-zh.copymanga-v1.4.55_release" 16 | } 17 | k = 0x1 18 | mv = { 19 | 0x1, 20 | 0x7, 21 | 0x1 22 | } 23 | xi = 0x30 24 | .end annotation 25 | 26 | 27 | # direct methods 28 | .method public constructor ()V 29 | .locals 3 30 | 31 | const-string v0, "date_type" 32 | 33 | .line 131 34 | invoke-static {}, Leu/kanade/tachiyomi/extension/zh/copymanga/FiltersKt;->access$rankValues()[Leu/kanade/tachiyomi/extension/zh/copymanga/Param; 35 | 36 | move-result-object v1 37 | 38 | const-string v2, "\u6392\u884c\u699c" 39 | 40 | invoke-direct {p0, v2, v0, v1}, Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;->(Ljava/lang/String;Ljava/lang/String;[Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V 41 | 42 | return-void 43 | .end method 44 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0003\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J)\u0010\u0003\u001a\u000e\u0012\n\u0012\u0008\u0012\u0004\u0012\u0002H\u00060\u00050\u0004\"\u0004\u0008\u0001\u0010\u00062\u000c\u0010\u0007\u001a\u0008\u0012\u0004\u0012\u0002H\u00060\u0004H\u00c6\u0001\u00a8\u0006\u0008" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto;", 27 | "T0", 28 | "typeSerial0", 29 | "tachiyomi-zh.copymanga-v1.4.55_release" 30 | } 31 | k = 0x1 32 | mv = { 33 | 0x1, 34 | 0x7, 35 | 0x1 36 | } 37 | xi = 0x30 38 | .end annotation 39 | 40 | 41 | # direct methods 42 | .method private constructor ()V 43 | .locals 0 44 | 45 | .line 113 46 | invoke-direct {p0}, Ljava/lang/Object;->()V 47 | 48 | return-void 49 | .end method 50 | 51 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 52 | .locals 0 53 | 54 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$Companion;->()V 55 | 56 | return-void 57 | .end method 58 | 59 | 60 | # virtual methods 61 | .method public final serializer(Lkotlinx/serialization/KSerializer;)Lkotlinx/serialization/KSerializer; 62 | .locals 1 63 | .annotation system Ldalvik/annotation/Signature; 64 | value = { 65 | "(", 68 | "Lkotlinx/serialization/KSerializer<", 69 | "TT0;>;)", 70 | "Lkotlinx/serialization/KSerializer<", 71 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto<", 72 | "TT0;>;>;" 73 | } 74 | .end annotation 75 | 76 | const-string v0, "typeSerial0" 77 | 78 | invoke-static {p1, v0}, Lkotlin/jvm/internal/Intrinsics;->checkNotNullParameter(Ljava/lang/Object;Ljava/lang/String;)V 79 | 80 | .line 113 81 | new-instance v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$$serializer; 82 | 83 | invoke-direct {v0, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/ResultDto$$serializer;->(Lkotlinx/serialization/KSerializer;)V 84 | 85 | check-cast v0, Lkotlinx/serialization/KSerializer; 86 | 87 | return-object v0 88 | .end method 89 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto;", 27 | "tachiyomi-zh.copymanga-v1.4.55_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 116 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 116 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ResultMessageDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/SearchFilter.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/SearchFilter; 2 | .super Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter; 3 | .source "Filters.kt" 4 | 5 | 6 | # annotations 7 | .annotation runtime Lkotlin/Metadata; 8 | d1 = { 9 | "\u0000\u000c\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0002\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003" 10 | } 11 | d2 = { 12 | "Leu/kanade/tachiyomi/extension/zh/copymanga/SearchFilter;", 13 | "Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;", 14 | "()V", 15 | "tachiyomi-zh.copymanga-v1.4.55_release" 16 | } 17 | k = 0x1 18 | mv = { 19 | 0x1, 20 | 0x7, 21 | 0x1 22 | } 23 | xi = 0x30 24 | .end annotation 25 | 26 | 27 | # direct methods 28 | .method public constructor ()V 29 | .locals 3 30 | 31 | const-string v0, "q_type" 32 | 33 | .line 90 34 | invoke-static {}, Leu/kanade/tachiyomi/extension/zh/copymanga/FiltersKt;->access$searchFilterValues()[Leu/kanade/tachiyomi/extension/zh/copymanga/Param; 35 | 36 | move-result-object v1 37 | 38 | const-string v2, "\u6587\u672c\u641c\u7d22\u8303\u56f4" 39 | 40 | invoke-direct {p0, v2, v0, v1}, Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;->(Ljava/lang/String;Ljava/lang/String;[Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V 41 | 42 | return-void 43 | .end method 44 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$$ExternalSyntheticLambda0.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$$ExternalSyntheticLambda0; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Lrx/Single$OnSubscribe; 7 | 8 | 9 | # direct methods 10 | .method public synthetic constructor ()V 11 | .locals 0 12 | 13 | invoke-direct {p0}, Ljava/lang/Object;->()V 14 | 15 | return-void 16 | .end method 17 | 18 | 19 | # virtual methods 20 | .method public final call(Ljava/lang/Object;)V 21 | .locals 0 22 | 23 | check-cast p1, Lrx/SingleSubscriber; 24 | 25 | invoke-static {p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt;->$r8$lambda$1y0RZXn7R3dCUUVBIYXVxjlof4M(Lrx/SingleSubscriber;)V 26 | 27 | return-void 28 | .end method 29 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$$ExternalSyntheticLambda1.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$$ExternalSyntheticLambda1; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Ljava/lang/Runnable; 7 | 8 | 9 | # instance fields 10 | .field public final synthetic f$0:Lrx/SingleSubscriber; 11 | 12 | 13 | # direct methods 14 | .method public synthetic constructor (Lrx/SingleSubscriber;)V 15 | .locals 0 16 | 17 | invoke-direct {p0}, Ljava/lang/Object;->()V 18 | 19 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$$ExternalSyntheticLambda1;->f$0:Lrx/SingleSubscriber; 20 | 21 | return-void 22 | .end method 23 | 24 | 25 | # virtual methods 26 | .method public final run()V 27 | .locals 1 28 | 29 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$$ExternalSyntheticLambda1;->f$0:Lrx/SingleSubscriber; 30 | 31 | invoke-static {v0}, Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt;->$r8$lambda$CL7-FkO4iM62CikcQ8sajCqEmYc(Lrx/SingleSubscriber;)V 32 | 33 | return-void 34 | .end method 35 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$getToken$1$1$2$$ExternalSyntheticLambda0.smali: -------------------------------------------------------------------------------- 1 | .class public final synthetic Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$getToken$1$1$2$$ExternalSyntheticLambda0; 2 | .super Ljava/lang/Object; 3 | .source "D8$$SyntheticClass" 4 | 5 | # interfaces 6 | .implements Landroid/webkit/ValueCallback; 7 | 8 | 9 | # instance fields 10 | .field public final synthetic f$0:Landroid/webkit/WebView; 11 | 12 | .field public final synthetic f$1:Lrx/SingleSubscriber; 13 | 14 | 15 | # direct methods 16 | .method public synthetic constructor (Landroid/webkit/WebView;Lrx/SingleSubscriber;)V 17 | .locals 0 18 | 19 | invoke-direct {p0}, Ljava/lang/Object;->()V 20 | 21 | iput-object p1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$getToken$1$1$2$$ExternalSyntheticLambda0;->f$0:Landroid/webkit/WebView; 22 | 23 | iput-object p2, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$getToken$1$1$2$$ExternalSyntheticLambda0;->f$1:Lrx/SingleSubscriber; 24 | 25 | return-void 26 | .end method 27 | 28 | 29 | # virtual methods 30 | .method public final onReceiveValue(Ljava/lang/Object;)V 31 | .locals 2 32 | 33 | iget-object v0, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$getToken$1$1$2$$ExternalSyntheticLambda0;->f$0:Landroid/webkit/WebView; 34 | 35 | iget-object v1, p0, Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$getToken$1$1$2$$ExternalSyntheticLambda0;->f$1:Lrx/SingleSubscriber; 36 | 37 | check-cast p1, Ljava/lang/String; 38 | 39 | invoke-static {v0, v1, p1}, Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$getToken$1$1$2;->$r8$lambda$huJpMz9MpzmQI-OrEm8FOLsKfnk(Landroid/webkit/WebView;Lrx/SingleSubscriber;Ljava/lang/String;)V 40 | 41 | return-void 42 | .end method 43 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$getToken$lambda$2$lambda$1$$inlined$get$1.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt$getToken$lambda$2$lambda$1$$inlined$get$1; 2 | .super Luy/kohesive/injekt/api/FullTypeReference; 3 | .source "TypeInfo.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingMethod; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/TokenKt;->getToken()Lrx/Observable; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = null 14 | .end annotation 15 | 16 | .annotation system Ldalvik/annotation/Signature; 17 | value = { 18 | "Luy/kohesive/injekt/api/FullTypeReference<", 19 | "Landroid/app/Application;", 20 | ">;" 21 | } 22 | .end annotation 23 | 24 | .annotation system Ldalvik/annotation/SourceDebugExtension; 25 | value = "SMAP\nTypeInfo.kt\nKotlin\n*S Kotlin\n*F\n+ 1 TypeInfo.kt\nuy/kohesive/injekt/api/TypeInfoKt$fullType$1\n*L\n1#1,44:1\n*E\n" 26 | .end annotation 27 | 28 | .annotation runtime Lkotlin/Metadata; 29 | d1 = { 30 | "\u0000\r\n\u0000\n\u0002\u0018\u0002\n\u0002\u0008\u0003*\u0001\u0000\u0008\n\u0018\u00002\u0008\u0012\u0004\u0012\u00028\u00000\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003\u00b8\u0006\u0004" 31 | } 32 | d2 = { 33 | "uy/kohesive/injekt/api/TypeInfoKt$fullType$1", 34 | "Luy/kohesive/injekt/api/FullTypeReference;", 35 | "()V", 36 | "injekt-api-compileKotlin", 37 | "uy/kohesive/injekt/api/FactoryKt$get$$inlined$fullType$1" 38 | } 39 | k = 0x1 40 | mv = { 41 | 0x1, 42 | 0x7, 43 | 0x1 44 | } 45 | .end annotation 46 | 47 | 48 | # direct methods 49 | .method constructor ()V 50 | .locals 0 51 | 52 | .line 27 53 | invoke-direct {p0}, Luy/kohesive/injekt/api/FullTypeReference;->()V 54 | 55 | return-void 56 | .end method 57 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/TopFilter.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/TopFilter; 2 | .super Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter; 3 | .source "Filters.kt" 4 | 5 | # interfaces 6 | .implements Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter; 7 | 8 | 9 | # annotations 10 | .annotation runtime Lkotlin/Metadata; 11 | d1 = { 12 | "\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0008\u0002\u0018\u00002\u00020\u00012\u00020\u0002B\u0005\u00a2\u0006\u0002\u0010\u0003\u00a8\u0006\u0004" 13 | } 14 | d2 = { 15 | "Leu/kanade/tachiyomi/extension/zh/copymanga/TopFilter;", 16 | "Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;", 17 | "Leu/kanade/tachiyomi/extension/zh/copymanga/CategoryFilter;", 18 | "()V", 19 | "tachiyomi-zh.copymanga-v1.4.55_release" 20 | } 21 | k = 0x1 22 | mv = { 23 | 0x1, 24 | 0x7, 25 | 0x1 26 | } 27 | xi = 0x30 28 | .end annotation 29 | 30 | 31 | # direct methods 32 | .method public constructor ()V 33 | .locals 3 34 | 35 | const-string v0, "top" 36 | 37 | .line 101 38 | invoke-static {}, Leu/kanade/tachiyomi/extension/zh/copymanga/FiltersKt;->access$topValues()[Leu/kanade/tachiyomi/extension/zh/copymanga/Param; 39 | 40 | move-result-object v1 41 | 42 | const-string v2, "\u5730\u533a/\u72b6\u6001" 43 | 44 | invoke-direct {p0, v2, v0, v1}, Leu/kanade/tachiyomi/extension/zh/copymanga/SelectFilter;->(Ljava/lang/String;Ljava/lang/String;[Leu/kanade/tachiyomi/extension/zh/copymanga/Param;)V 45 | 46 | return-void 47 | .end method 48 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto;", 27 | "tachiyomi-zh.copymanga-v1.4.55_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 87 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 87 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/UrlDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto;", 27 | "tachiyomi-zh.copymanga-v1.4.55_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 73 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 73 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/ValueDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.55-copy20/smali/eu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$Companion.smali: -------------------------------------------------------------------------------- 1 | .class public final Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$Companion; 2 | .super Ljava/lang/Object; 3 | .source "Dto.kt" 4 | 5 | 6 | # annotations 7 | .annotation system Ldalvik/annotation/EnclosingClass; 8 | value = Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto; 9 | .end annotation 10 | 11 | .annotation system Ldalvik/annotation/InnerClass; 12 | accessFlags = 0x19 13 | name = "Companion" 14 | .end annotation 15 | 16 | .annotation runtime Lkotlin/Metadata; 17 | d1 = { 18 | "\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u0008\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\u0008\u0002\u00a2\u0006\u0002\u0010\u0002J\u000f\u0010\u0003\u001a\u0008\u0012\u0004\u0012\u00020\u00050\u0004H\u00c6\u0001\u00a8\u0006\u0006" 19 | } 20 | d2 = { 21 | "Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$Companion;", 22 | "", 23 | "()V", 24 | "serializer", 25 | "Lkotlinx/serialization/KSerializer;", 26 | "Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto;", 27 | "tachiyomi-zh.copymanga-v1.4.55_release" 28 | } 29 | k = 0x1 30 | mv = { 31 | 0x1, 32 | 0x7, 33 | 0x1 34 | } 35 | xi = 0x30 36 | .end annotation 37 | 38 | 39 | # direct methods 40 | .method private constructor ()V 41 | .locals 0 42 | 43 | .line 102 44 | invoke-direct {p0}, Ljava/lang/Object;->()V 45 | 46 | return-void 47 | .end method 48 | 49 | .method public synthetic constructor (Lkotlin/jvm/internal/DefaultConstructorMarker;)V 50 | .locals 0 51 | 52 | invoke-direct {p0}, Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$Companion;->()V 53 | 54 | return-void 55 | .end method 56 | 57 | 58 | # virtual methods 59 | .method public final serializer()Lkotlinx/serialization/KSerializer; 60 | .locals 1 61 | .annotation system Ldalvik/annotation/Signature; 62 | value = { 63 | "()", 64 | "Lkotlinx/serialization/KSerializer<", 65 | "Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto;", 66 | ">;" 67 | } 68 | .end annotation 69 | 70 | .line 102 71 | sget-object v0, Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$$serializer;->INSTANCE:Leu/kanade/tachiyomi/extension/zh/copymanga/VersionDto$$serializer; 72 | 73 | check-cast v0, Lkotlinx/serialization/KSerializer; 74 | 75 | return-object v0 76 | .end method 77 | -------------------------------------------------------------------------------- /1.4.55-copy20/unknown/META-INF/com/android/build/gradle/app-metadata.properties: -------------------------------------------------------------------------------- 1 | appMetadataVersion=1.1 2 | androidGradlePluginVersion=7.4.2 3 | -------------------------------------------------------------------------------- /1.4.55-copy20/unknown/kotlin-tooling-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": "1.1.0", 3 | "buildSystem": "Gradle", 4 | "buildSystemVersion": "8.3", 5 | "buildPlugin": "org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper", 6 | "buildPluginVersion": "1.7.21", 7 | "projectSettings": { 8 | "isHmppEnabled": true, 9 | "isCompatibilityMetadataVariantEnabled": false, 10 | "isKPMEnabled": false 11 | }, 12 | "projectTargets": [ 13 | { 14 | "target": "org.jetbrains.kotlin.gradle.plugin.mpp.KotlinAndroidTarget", 15 | "platformType": "androidJvm", 16 | "extras": { 17 | "android": { 18 | "sourceCompatibility": "1.8", 19 | "targetCompatibility": "1.8" 20 | } 21 | } 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 說明 2 | [**stevenyomi/copymanga**](https://github.com/stevenyomi/copymanga) 的延伸版 ,由於原作者已一年以上未更新,敝人基於其插件進行逆向與修補,使擴充套件能夠支援新域名 **https://www.copy20.com** 。 3 | 4 | ## 用法 5 | **使用倉庫更新地址** 6 | 7 | `https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/main/index.min.json` 8 | 9 | 若無法成功,則 **下載apk並安裝** , 請去 [Releases](https://github.com/LittleSurvival/copymanga-copy20/releases) 下載APK。 10 | 11 | ## 最新更新 v1.4.55 12 | 13 | - 修復 *参数已更新 请重启应用* 錯誤 14 | 15 | > 若侵犯到原作者權益立即刪除 16 | -------------------------------------------------------------------------------- /apk/tachiyomi-zh.copymanga-v1.4.52-tachidesk.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/apk/tachiyomi-zh.copymanga-v1.4.52-tachidesk.apk -------------------------------------------------------------------------------- /apk/tachiyomi-zh.copymanga-v1.4.55.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/apk/tachiyomi-zh.copymanga-v1.4.55.apk -------------------------------------------------------------------------------- /icon/eu.kanade.tachiyomi.extension.zh.copymanga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleSurvival/copymanga-copy20/c7ecc79caccd6365e2b66f5252eab5bf3b9bf08f/icon/eu.kanade.tachiyomi.extension.zh.copymanga.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | CopyManga-copy20 8 | 9 | 10 | 11 | Redirecting to 12 | https://github.com/LittleSurvival/copymanga-copy20... 14 | 15 | 16 | -------------------------------------------------------------------------------- /index.min.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Tachiyomi: CopyManga", 4 | "pkg": "eu.kanade.tachiyomi.extension.zh.copymanga", 5 | "apk": "tachiyomi-zh.copymanga-v1.4.55.apk", 6 | "lang": "zh", 7 | "code": 55, 8 | "version": "1.4.55", 9 | "nsfw": 1, 10 | "sources": [ 11 | { 12 | "id": "6696312508930833206", 13 | "lang": "zh", 14 | "name": "拷贝漫画", 15 | "baseUrl": "https://www.mangacopy.com" 16 | } 17 | ] 18 | } 19 | ] 20 | -------------------------------------------------------------------------------- /repo.json: -------------------------------------------------------------------------------- 1 | { 2 | "meta": { 3 | "name": "CopyManga", 4 | "website": "https://github.com/LittleSurvival/copymanga-copy20", 5 | "signingKeyFingerprint": "896D1CA35175C42BAF61B1A157E4354DF9568BEED4CCC82A03762D1167005E79" 6 | } 7 | } --------------------------------------------------------------------------------