├── .github └── workflows │ ├── deploy_website.yml │ └── format.yml ├── .gitignore ├── .vscode └── settings.json ├── App ├── App.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── App.xcscheme │ │ └── Clip.xcscheme ├── App │ ├── App.entitlements │ ├── App.swift │ ├── App.xctestplan │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon 1.jpg │ │ │ └── app_icon.jpg │ │ ├── AppIcon.solidimagestack │ │ │ ├── Back.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── vision_back.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── vision_front.png │ │ │ │ └── Contents.json │ │ │ └── Middle.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── vision_middle.png │ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── PrivacyInfo.xcprivacy └── Clip │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── app_icon.jpg │ └── Contents.json │ ├── Clip.entitlements │ ├── ClipApp.swift │ ├── Info.plist │ └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── CNAME ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── MyLibrary ├── .gitignore ├── Package.resolved ├── Package.swift ├── Sources │ ├── AppFeature │ │ ├── AppView.swift │ │ ├── Localizable.xcstrings │ │ └── Media.xcassets │ │ │ ├── Contents.json │ │ │ └── rikoTokyo.symbolset │ │ │ ├── Contents.json │ │ │ └── RikoTokyo.svg │ ├── BuildConfig │ │ └── BuildConfig.swift │ ├── DataClient │ │ ├── Client.swift │ │ └── Resources │ │ │ ├── 2024-day1.json │ │ │ ├── 2024-day2.json │ │ │ ├── 2024-workshop.json │ │ │ ├── 2025-day1.json │ │ │ ├── 2025-day2.json │ │ │ ├── 2025-day3.json │ │ │ ├── 2025-sponsors.json │ │ │ ├── 2026-sponsors.json │ │ │ ├── organizers.json │ │ │ └── speakers.json │ ├── DependencyExtra │ │ └── Safari.swift │ ├── GuidanceFeature │ │ ├── Guidance.swift │ │ ├── Lines.swift │ │ ├── Localizable.xcstrings │ │ ├── Media.xcassets │ │ │ ├── Contents.json │ │ │ ├── jr-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-1.jpg │ │ │ ├── jr-10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-10.jpg │ │ │ ├── jr-11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-11.jpg │ │ │ ├── jr-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-2.jpg │ │ │ ├── jr-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-3.jpg │ │ │ ├── jr-4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-4.jpg │ │ │ ├── jr-5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-5.jpg │ │ │ ├── jr-6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-6.jpg │ │ │ ├── jr-7.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-7.jpg │ │ │ ├── jr-8.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-8.jpg │ │ │ ├── jr-9.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jr-9.jpg │ │ │ └── metro-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── metro-1.png │ │ └── Util.swift │ ├── LiveTranslationFeature │ │ ├── LiveTranslation.swift │ │ ├── LiveTranslationServiceClient.swift │ │ ├── Localizable.xcstrings │ │ ├── Media.xcassets │ │ │ ├── Contents.json │ │ │ └── Flitto.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Flitto_D.png │ │ │ │ └── Flitto_W.png │ │ └── SelectLanguageSheet.swift │ ├── MapKitClient │ │ └── Client.swift │ ├── ScheduleFeature │ │ ├── Detail.swift │ │ ├── Localizable.xcstrings │ │ ├── Media.xcassets │ │ │ ├── Akimu Hirai.imageset │ │ │ │ ├── Akimu Hirai.jpg │ │ │ │ └── Contents.json │ │ │ ├── Audrey.imageset │ │ │ │ ├── Audrey.jpg │ │ │ │ └── Contents.json │ │ │ ├── Brandon Williams.imageset │ │ │ │ ├── Brandon Williams.jpg │ │ │ │ └── Contents.json │ │ │ ├── Chris Vasselli.imageset │ │ │ │ ├── Chris Vasselli.jpg │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Emad.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Emad.jpg │ │ │ ├── Hiromu Tsuruta.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Hiromu Tsuruta.jpg │ │ │ ├── Hisaki Sato.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Hisaki Sato.png │ │ │ ├── Josh Holtz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Josh Holtz.jpg │ │ │ ├── Kazuhiro Kamakura.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Kazuhiro Kamakura.jpg │ │ │ ├── Kazuya Hiruma.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Kazuya Hiruma.jpg │ │ │ ├── Lil Ossa.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Lil Ossa.jpg │ │ │ ├── Marcin Kryzyzanowski.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Marcin Kryzyzanowski.jpg │ │ │ ├── SHIMOTORI Shigure.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SHIMOTORI Shigure.png │ │ │ ├── Saleem Abdulrasool.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Saleem Abdulrasool.png │ │ │ ├── Shinichiro Oba.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shinichiro Oba.png │ │ │ ├── Shogo Yoshida.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shogo Yoshida.png │ │ │ ├── Stephen Celis.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Stephen Celis.jpg │ │ │ ├── Tim Condon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tim Condon.jpg │ │ │ ├── Xingyu Wang.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Xingyu Wang.jpg │ │ │ ├── Yunosuke Sakai.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Yunosuke Sakai.jpg │ │ │ ├── Yusuke Kita.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Yusuke Kita.png │ │ │ ├── Zamzam.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Zamzam.jpg │ │ │ ├── akihiko_sato.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── akihiko_sato.png │ │ │ ├── andrew_zheng.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── andrew_zheng.jpg │ │ │ ├── benjamin_sandofsky.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── benjamin_sandofsky.jpg │ │ │ ├── fromkk.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fromkk.jpg │ │ │ ├── giginet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── giginet.png │ │ │ ├── gui_rambo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gui_rambo.jpg │ │ │ ├── halordain.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── halordain.jpg │ │ │ ├── ikesyo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ikesyo.jpg │ │ │ ├── jeffrey_bergier.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jeffrey_bergier.png │ │ │ ├── katei.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── katei.jpg │ │ │ ├── kishikawa_katsumi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kishikawa_katsumi.png │ │ │ ├── konrad_ktoso_malawski.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── konrad_ktoso_malawski.jpg │ │ │ ├── kosala_jayasekara.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kosala_jayasekara.jpg │ │ │ ├── krzysztof_zablocki.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── krzysztof_zablocki.jpg │ │ │ ├── michael_petrie.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── michael_petrie.jpg │ │ │ ├── mikaela_caron.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mikaela_caron.png │ │ │ ├── natasha.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── natasha.jpg │ │ │ ├── nick_lockwood.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nick_lockwood.jpg │ │ │ ├── noah_martin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── noah_martin.jpg │ │ │ ├── noppe.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── noppe.jpg │ │ │ ├── ojun.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ojun.jpg │ │ │ ├── omochimetaru.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── omochimetaru.png │ │ │ ├── paul_hudson.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── paul_hudson.jpg │ │ │ ├── pradnya_nikam.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pradnya_nikam.png │ │ │ ├── rockname.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── rockname.png │ │ │ ├── ryo_igarashi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ryo_igarashi.png │ │ │ ├── ryo_yamashita.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ryo_yamashita.png │ │ │ ├── ryota_motonishi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ryota_motonishi.jpg │ │ │ ├── satoshi_hattori.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── satoshi_hattori.png │ │ │ ├── sebastiaan_de_with.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sebastiaan_de_with.jpg │ │ │ ├── si_beaumont.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── si_beaumont.jpg │ │ │ ├── sophie_hudson.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sophie_hudson.png │ │ │ ├── sugiy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sugiy.png │ │ │ ├── tochi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tochi.png │ │ │ ├── tokyo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── app_icon.jpg │ │ │ ├── usagimaru.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── usagimaru.png │ │ │ ├── vincent_pradeilles.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── vincent_pradeilles.jpg │ │ │ ├── yamaken.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── yamaken.jpg │ │ │ ├── yj_cheng.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── yj_cheng.jpg │ │ │ └── yoshimasa_niwa.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── yoshimasa_niwa.png │ │ └── Schedule.swift │ ├── SharedModels │ │ ├── Conference.swift │ │ ├── ConferenceYear.swift │ │ ├── Organizer.swift │ │ ├── Speaker.swift │ │ └── Sponsors.swift │ ├── SponsorFeature │ │ ├── Localizable.xcstrings │ │ ├── Media.xcassets │ │ │ ├── BRONZE_Luup.imageset │ │ │ │ ├── BRONZE_Luup.png │ │ │ │ └── Contents.json │ │ │ ├── BRONZE_cybozu.imageset │ │ │ │ ├── BRONZE_cybozu.png │ │ │ │ └── Contents.json │ │ │ ├── BRONZE_mirrativ.imageset │ │ │ │ ├── BRONZE_mirrativ.png │ │ │ │ └── Contents.json │ │ │ ├── BRONZE_pixiv.imageset │ │ │ │ ├── BRONZE_pixiv.png │ │ │ │ └── Contents.json │ │ │ ├── BRONZE_smartbank.imageset │ │ │ │ ├── BRONZE_smartbank.png │ │ │ │ └── Contents.json │ │ │ ├── BRONZE_zozo.imageset │ │ │ │ ├── BRONZE_zozo.png │ │ │ │ └── Contents.json │ │ │ ├── COMMUNITY_DroidKaigi.imageset │ │ │ │ ├── COMMUNITY_DroidKaigi.png │ │ │ │ └── Contents.json │ │ │ ├── COMMUNITY_Emerge-Tools.imageset │ │ │ │ ├── COMMUNITY_Emerge-Tools.png │ │ │ │ └── Contents.json │ │ │ ├── COMMUNITY_Flitto.imageset │ │ │ │ ├── COMMUNITY_Flitto.png │ │ │ │ └── Contents.json │ │ │ ├── COMMUNITY_Scivone.imageset │ │ │ │ ├── COMMUNITY_Scivone.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── GOLD_CyberAgent.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_CyberAgent.png │ │ │ ├── GOLD_DMM.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_DMM.png │ │ │ ├── GOLD_DeNA.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_DeNA.png │ │ │ ├── GOLD_LINEヤフー.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_LINEヤフー.png │ │ │ ├── GOLD_MIXI.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_MIXI.png │ │ │ ├── GOLD_MagicPod.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_MagicPod.png │ │ │ ├── GOLD_ORD.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_ORD.png │ │ │ ├── GOLD_Sentry.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_Sentry.png │ │ │ ├── GOLD_TVer.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_TVer.png │ │ │ ├── GOLD_Tramline.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_Tramline.png │ │ │ ├── GOLD_kinto-technologies.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_kinto-technologies.png │ │ │ ├── GOLD_u-next.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GOLD_u-next.png │ │ │ ├── PLATINUM_RevenueCat.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── PLATINUM_RevenueCat.png │ │ │ ├── SILVER_ moneyforward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SILVER_ moneyforward.png │ │ │ ├── SILVER_hatena.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SILVER_hatena.png │ │ │ ├── SILVER_medley.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SILVER_medley.png │ │ │ ├── SILVER_mercari.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SILVER_mercari.png │ │ │ ├── SILVER_newmo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SILVER_newmo.png │ │ │ ├── SILVER_nomura.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SILVER_nomura.png │ │ │ ├── STUDENT_SCHOLARSHIP_kishikawakatsumi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── STUDENT_SCHOLARSHIP_kishikawakatsumi.png │ │ │ ├── individual_aaron.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_aaron.jpg │ │ │ ├── individual_arasan01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_arasan01.jpg │ │ │ ├── individual_banjun.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_banjun.png │ │ │ ├── individual_econa77.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_econa77.jpg │ │ │ ├── individual_giginet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_giginet.png │ │ │ ├── individual_hcrane.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_hcrane.png │ │ │ ├── individual_jollyjoester.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_jollyjoester.png │ │ │ ├── individual_justin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_justin.jpg │ │ │ ├── individual_kishikawa_katsumi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_kishikawa_katsumi.png │ │ │ ├── individual_lihsuan_chen.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_lihsuan_chen.png │ │ │ ├── individual_lovee.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_lovee.png │ │ │ ├── individual_nao.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_nao.png │ │ │ ├── individual_noppe.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_noppe.png │ │ │ ├── individual_ooba.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_ooba.png │ │ │ ├── individual_scenee.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_scenee.jpg │ │ │ ├── individual_sean_labastille.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_sean_labastille.jpg │ │ │ ├── individual_shiz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_shiz.jpg │ │ │ ├── individual_shogo4405.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_shogo4405.png │ │ │ ├── individual_steven_hiroyuki_aoki.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_steven_hiroyuki_aoki.png │ │ │ ├── individual_tamadeveloper.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_tamadeveloper.png │ │ │ ├── individual_youichi_takatsu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_youichi_takatsu.png │ │ │ └── individual_yuji_fujisaka.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── individual_yuji_fujisaka.png │ │ └── Sponsors.swift │ └── trySwiftFeature │ │ ├── Acknowledgements.swift │ │ ├── Localizable.xcstrings │ │ ├── Media.xcassets │ │ ├── Contents.json │ │ ├── Daiki.imageset │ │ │ ├── Contents.json │ │ │ └── Daiki.jpg │ │ ├── Maru.imageset │ │ │ ├── Contents.json │ │ │ └── Maru.jpg │ │ ├── Naoki.imageset │ │ │ ├── Contents.json │ │ │ └── Naoki.png │ │ ├── Natasha.imageset │ │ │ ├── Contents.json │ │ │ └── Natasha.jpg │ │ ├── Roku.imageset │ │ │ ├── Contents.json │ │ │ └── Roku.png │ │ ├── TimOliver.imageset │ │ │ ├── Contents.json │ │ │ └── TimOliver.jpg │ │ ├── akkey.imageset │ │ │ ├── Contents.json │ │ │ └── akkey.jpg │ │ ├── elmetal.imageset │ │ │ ├── Contents.json │ │ │ └── elmetal.png │ │ ├── kazu42.imageset │ │ │ ├── Contents.json │ │ │ └── kazu42.jpg │ │ ├── logo.imageset │ │ │ ├── Contents.json │ │ │ └── event_riko.png │ │ ├── saku.imageset │ │ │ ├── Contents.json │ │ │ └── saku.png │ │ ├── satoshoco.imageset │ │ │ ├── Contents.json │ │ │ └── satoshoco.png │ │ ├── sya-ri.imageset │ │ │ ├── Contents.json │ │ │ └── sya-ri.png │ │ ├── tamaki.imageset │ │ │ ├── Contents.json │ │ │ └── tamaki.png │ │ ├── yucovin.imageset │ │ │ ├── Contents.json │ │ │ └── yucovin.png │ │ └── yutailang0119.imageset │ │ │ ├── Contents.json │ │ │ └── yutailang0119.png │ │ ├── Organizers.swift │ │ ├── Profile.swift │ │ └── trySwift.swift └── Tests │ ├── ScheduleFeatureTests │ ├── Mocks.swift │ └── ScheduleTests.swift │ ├── SponsorFeatureTests │ ├── Mocks.swift │ └── SponsorsTests.swift │ └── trySwiftFeatureTests │ ├── Mocks.swift │ └── trySwiftTests.swift ├── README.md ├── Website ├── Assets │ └── images │ │ ├── favicon.png │ │ ├── footer.png │ │ ├── head.png │ │ ├── intersect.svg │ │ └── title.png ├── Package.resolved ├── Package.swift └── Sources │ ├── Components │ ├── AccessComponent.swift │ ├── ApplicationFormsComponent.swift │ ├── CenterAlignedGrid.swift │ ├── HeaderComponent.swift │ ├── LanguageSelector.swift │ ├── MainFooter.swift │ ├── MainFooterWithBackground.swift │ ├── MainNavigationBar.swift │ ├── ModalFooterComponent.swift │ ├── OrganizerComponent.swift │ ├── OutlineComponent.swift │ ├── SectionHeader.swift │ ├── SectionListComponent.swift │ ├── SpeakerComponent.swift │ ├── SpeakerDetailComponent.swift │ ├── SponsorComponent.swift │ ├── TicketsComponent.swift │ └── TimetableComponent.swift │ ├── ConferenceWebsite.swift │ ├── Extensions │ ├── Date+.swift │ ├── Ignite.Image+.swift │ └── String+.swift │ ├── Layouts │ └── MainLayout.swift │ ├── Pages │ ├── CodeOfConduct.swift │ ├── FAQ.swift │ ├── Home.swift │ ├── HomeSections.swift │ ├── Localization.swift │ └── PrivacyPolicy.swift │ └── Resources │ └── Localizable.xcstrings ├── ci_scripts └── ci_post_clone.sh └── trySwiftTokyo.xcworkspace ├── contents.xcworkspacedata └── xcshareddata ├── IDEWorkspaceChecks.plist └── swiftpm └── Package.resolved /.github/workflows/deploy_website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/.github/workflows/deploy_website.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /App/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /App/App.xcodeproj/xcshareddata/xcschemes/Clip.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App.xcodeproj/xcshareddata/xcschemes/Clip.xcscheme -------------------------------------------------------------------------------- /App/App/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/App.entitlements -------------------------------------------------------------------------------- /App/App/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/App.swift -------------------------------------------------------------------------------- /App/App/App.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/App.xctestplan -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.appiconset/app_icon 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.appiconset/app_icon 1.jpg -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.appiconset/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.appiconset/app_icon.jpg -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/vision_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/vision_back.png -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/vision_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/vision_front.png -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/vision_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/vision_middle.png -------------------------------------------------------------------------------- /App/App/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Info.plist -------------------------------------------------------------------------------- /App/App/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /App/App/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/App/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /App/Clip/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/Clip/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /App/Clip/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/Clip/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /App/Clip/Assets.xcassets/AppIcon.appiconset/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/Clip/Assets.xcassets/AppIcon.appiconset/app_icon.jpg -------------------------------------------------------------------------------- /App/Clip/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/Clip/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /App/Clip/Clip.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/Clip/Clip.entitlements -------------------------------------------------------------------------------- /App/Clip/ClipApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/Clip/ClipApp.swift -------------------------------------------------------------------------------- /App/Clip/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/Clip/Info.plist -------------------------------------------------------------------------------- /App/Clip/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/App/Clip/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | tryswift.jp 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Makefile -------------------------------------------------------------------------------- /MyLibrary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/.gitignore -------------------------------------------------------------------------------- /MyLibrary/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Package.resolved -------------------------------------------------------------------------------- /MyLibrary/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Package.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/AppFeature/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/AppFeature/AppView.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/AppFeature/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/AppFeature/Localizable.xcstrings -------------------------------------------------------------------------------- /MyLibrary/Sources/AppFeature/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/AppFeature/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/AppFeature/Media.xcassets/rikoTokyo.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/AppFeature/Media.xcassets/rikoTokyo.symbolset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/AppFeature/Media.xcassets/rikoTokyo.symbolset/RikoTokyo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/AppFeature/Media.xcassets/rikoTokyo.symbolset/RikoTokyo.svg -------------------------------------------------------------------------------- /MyLibrary/Sources/BuildConfig/BuildConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/BuildConfig/BuildConfig.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Client.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Resources/2024-day1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Resources/2024-day1.json -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Resources/2024-day2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Resources/2024-day2.json -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Resources/2024-workshop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Resources/2024-workshop.json -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Resources/2025-day1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Resources/2025-day1.json -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Resources/2025-day2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Resources/2025-day2.json -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Resources/2025-day3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Resources/2025-day3.json -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Resources/2025-sponsors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Resources/2025-sponsors.json -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Resources/2026-sponsors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Resources/2026-sponsors.json -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Resources/organizers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Resources/organizers.json -------------------------------------------------------------------------------- /MyLibrary/Sources/DataClient/Resources/speakers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DataClient/Resources/speakers.json -------------------------------------------------------------------------------- /MyLibrary/Sources/DependencyExtra/Safari.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/DependencyExtra/Safari.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Guidance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Guidance.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Lines.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Lines.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Localizable.xcstrings -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-1.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-1.imageset/jr-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-1.imageset/jr-1.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-10.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-10.imageset/jr-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-10.imageset/jr-10.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-11.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-11.imageset/jr-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-11.imageset/jr-11.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-2.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-2.imageset/jr-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-2.imageset/jr-2.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-3.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-3.imageset/jr-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-3.imageset/jr-3.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-4.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-4.imageset/jr-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-4.imageset/jr-4.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-5.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-5.imageset/jr-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-5.imageset/jr-5.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-6.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-6.imageset/jr-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-6.imageset/jr-6.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-7.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-7.imageset/jr-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-7.imageset/jr-7.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-8.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-8.imageset/jr-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-8.imageset/jr-8.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-9.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-9.imageset/jr-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/jr-9.imageset/jr-9.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/metro-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/metro-1.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Media.xcassets/metro-1.imageset/metro-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Media.xcassets/metro-1.imageset/metro-1.png -------------------------------------------------------------------------------- /MyLibrary/Sources/GuidanceFeature/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/GuidanceFeature/Util.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/LiveTranslationFeature/LiveTranslation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/LiveTranslationFeature/LiveTranslation.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/LiveTranslationFeature/LiveTranslationServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/LiveTranslationFeature/LiveTranslationServiceClient.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/LiveTranslationFeature/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/LiveTranslationFeature/Localizable.xcstrings -------------------------------------------------------------------------------- /MyLibrary/Sources/LiveTranslationFeature/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/LiveTranslationFeature/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/LiveTranslationFeature/Media.xcassets/Flitto.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/LiveTranslationFeature/Media.xcassets/Flitto.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/LiveTranslationFeature/Media.xcassets/Flitto.imageset/Flitto_D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/LiveTranslationFeature/Media.xcassets/Flitto.imageset/Flitto_D.png -------------------------------------------------------------------------------- /MyLibrary/Sources/LiveTranslationFeature/Media.xcassets/Flitto.imageset/Flitto_W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/LiveTranslationFeature/Media.xcassets/Flitto.imageset/Flitto_W.png -------------------------------------------------------------------------------- /MyLibrary/Sources/LiveTranslationFeature/SelectLanguageSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/LiveTranslationFeature/SelectLanguageSheet.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/MapKitClient/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/MapKitClient/Client.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Detail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Detail.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Localizable.xcstrings -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Akimu Hirai.imageset/Akimu Hirai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Akimu Hirai.imageset/Akimu Hirai.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Akimu Hirai.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Akimu Hirai.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Audrey.imageset/Audrey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Audrey.imageset/Audrey.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Audrey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Audrey.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Brandon Williams.imageset/Brandon Williams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Brandon Williams.imageset/Brandon Williams.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Brandon Williams.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Brandon Williams.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Chris Vasselli.imageset/Chris Vasselli.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Chris Vasselli.imageset/Chris Vasselli.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Chris Vasselli.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Chris Vasselli.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Emad.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Emad.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Emad.imageset/Emad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Emad.imageset/Emad.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Hiromu Tsuruta.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Hiromu Tsuruta.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Hiromu Tsuruta.imageset/Hiromu Tsuruta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Hiromu Tsuruta.imageset/Hiromu Tsuruta.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Hisaki Sato.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Hisaki Sato.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Hisaki Sato.imageset/Hisaki Sato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Hisaki Sato.imageset/Hisaki Sato.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Josh Holtz.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Josh Holtz.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Josh Holtz.imageset/Josh Holtz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Josh Holtz.imageset/Josh Holtz.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Kazuhiro Kamakura.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Kazuhiro Kamakura.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Kazuhiro Kamakura.imageset/Kazuhiro Kamakura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Kazuhiro Kamakura.imageset/Kazuhiro Kamakura.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Kazuya Hiruma.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Kazuya Hiruma.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Kazuya Hiruma.imageset/Kazuya Hiruma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Kazuya Hiruma.imageset/Kazuya Hiruma.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Lil Ossa.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Lil Ossa.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Lil Ossa.imageset/Lil Ossa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Lil Ossa.imageset/Lil Ossa.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Marcin Kryzyzanowski.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Marcin Kryzyzanowski.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Marcin Kryzyzanowski.imageset/Marcin Kryzyzanowski.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Marcin Kryzyzanowski.imageset/Marcin Kryzyzanowski.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/SHIMOTORI Shigure.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/SHIMOTORI Shigure.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/SHIMOTORI Shigure.imageset/SHIMOTORI Shigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/SHIMOTORI Shigure.imageset/SHIMOTORI Shigure.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Saleem Abdulrasool.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Saleem Abdulrasool.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Saleem Abdulrasool.imageset/Saleem Abdulrasool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Saleem Abdulrasool.imageset/Saleem Abdulrasool.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Shinichiro Oba.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Shinichiro Oba.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Shinichiro Oba.imageset/Shinichiro Oba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Shinichiro Oba.imageset/Shinichiro Oba.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Shogo Yoshida.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Shogo Yoshida.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Shogo Yoshida.imageset/Shogo Yoshida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Shogo Yoshida.imageset/Shogo Yoshida.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Stephen Celis.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Stephen Celis.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Stephen Celis.imageset/Stephen Celis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Stephen Celis.imageset/Stephen Celis.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Tim Condon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Tim Condon.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Tim Condon.imageset/Tim Condon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Tim Condon.imageset/Tim Condon.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Xingyu Wang.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Xingyu Wang.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Xingyu Wang.imageset/Xingyu Wang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Xingyu Wang.imageset/Xingyu Wang.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Yunosuke Sakai.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Yunosuke Sakai.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Yunosuke Sakai.imageset/Yunosuke Sakai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Yunosuke Sakai.imageset/Yunosuke Sakai.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Yusuke Kita.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Yusuke Kita.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Yusuke Kita.imageset/Yusuke Kita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Yusuke Kita.imageset/Yusuke Kita.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Zamzam.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Zamzam.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/Zamzam.imageset/Zamzam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/Zamzam.imageset/Zamzam.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/akihiko_sato.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/akihiko_sato.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/akihiko_sato.imageset/akihiko_sato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/akihiko_sato.imageset/akihiko_sato.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/andrew_zheng.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/andrew_zheng.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/andrew_zheng.imageset/andrew_zheng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/andrew_zheng.imageset/andrew_zheng.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/benjamin_sandofsky.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/benjamin_sandofsky.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/benjamin_sandofsky.imageset/benjamin_sandofsky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/benjamin_sandofsky.imageset/benjamin_sandofsky.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/fromkk.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/fromkk.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/fromkk.imageset/fromkk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/fromkk.imageset/fromkk.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/giginet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/giginet.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/giginet.imageset/giginet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/giginet.imageset/giginet.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/gui_rambo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/gui_rambo.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/gui_rambo.imageset/gui_rambo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/gui_rambo.imageset/gui_rambo.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/halordain.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/halordain.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/halordain.imageset/halordain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/halordain.imageset/halordain.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/ikesyo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/ikesyo.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/ikesyo.imageset/ikesyo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/ikesyo.imageset/ikesyo.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/jeffrey_bergier.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/jeffrey_bergier.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/jeffrey_bergier.imageset/jeffrey_bergier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/jeffrey_bergier.imageset/jeffrey_bergier.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/katei.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/katei.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/katei.imageset/katei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/katei.imageset/katei.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/kishikawa_katsumi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/kishikawa_katsumi.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/kishikawa_katsumi.imageset/kishikawa_katsumi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/kishikawa_katsumi.imageset/kishikawa_katsumi.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/konrad_ktoso_malawski.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/konrad_ktoso_malawski.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/konrad_ktoso_malawski.imageset/konrad_ktoso_malawski.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/konrad_ktoso_malawski.imageset/konrad_ktoso_malawski.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/kosala_jayasekara.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/kosala_jayasekara.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/kosala_jayasekara.imageset/kosala_jayasekara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/kosala_jayasekara.imageset/kosala_jayasekara.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/krzysztof_zablocki.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/krzysztof_zablocki.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/krzysztof_zablocki.imageset/krzysztof_zablocki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/krzysztof_zablocki.imageset/krzysztof_zablocki.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/michael_petrie.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/michael_petrie.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/michael_petrie.imageset/michael_petrie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/michael_petrie.imageset/michael_petrie.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/mikaela_caron.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/mikaela_caron.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/mikaela_caron.imageset/mikaela_caron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/mikaela_caron.imageset/mikaela_caron.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/natasha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/natasha.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/natasha.imageset/natasha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/natasha.imageset/natasha.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/nick_lockwood.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/nick_lockwood.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/nick_lockwood.imageset/nick_lockwood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/nick_lockwood.imageset/nick_lockwood.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/noah_martin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/noah_martin.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/noah_martin.imageset/noah_martin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/noah_martin.imageset/noah_martin.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/noppe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/noppe.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/noppe.imageset/noppe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/noppe.imageset/noppe.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/ojun.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/ojun.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/ojun.imageset/ojun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/ojun.imageset/ojun.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/omochimetaru.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/omochimetaru.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/omochimetaru.imageset/omochimetaru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/omochimetaru.imageset/omochimetaru.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/paul_hudson.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/paul_hudson.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/paul_hudson.imageset/paul_hudson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/paul_hudson.imageset/paul_hudson.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/pradnya_nikam.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/pradnya_nikam.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/pradnya_nikam.imageset/pradnya_nikam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/pradnya_nikam.imageset/pradnya_nikam.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/rockname.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/rockname.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/rockname.imageset/rockname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/rockname.imageset/rockname.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryo_igarashi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryo_igarashi.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryo_igarashi.imageset/ryo_igarashi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryo_igarashi.imageset/ryo_igarashi.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryo_yamashita.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryo_yamashita.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryo_yamashita.imageset/ryo_yamashita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryo_yamashita.imageset/ryo_yamashita.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryota_motonishi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryota_motonishi.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryota_motonishi.imageset/ryota_motonishi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/ryota_motonishi.imageset/ryota_motonishi.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/satoshi_hattori.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/satoshi_hattori.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/satoshi_hattori.imageset/satoshi_hattori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/satoshi_hattori.imageset/satoshi_hattori.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/sebastiaan_de_with.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/sebastiaan_de_with.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/sebastiaan_de_with.imageset/sebastiaan_de_with.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/sebastiaan_de_with.imageset/sebastiaan_de_with.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/si_beaumont.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/si_beaumont.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/si_beaumont.imageset/si_beaumont.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/si_beaumont.imageset/si_beaumont.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/sophie_hudson.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/sophie_hudson.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/sophie_hudson.imageset/sophie_hudson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/sophie_hudson.imageset/sophie_hudson.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/sugiy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/sugiy.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/sugiy.imageset/sugiy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/sugiy.imageset/sugiy.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/tochi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/tochi.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/tochi.imageset/tochi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/tochi.imageset/tochi.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/tokyo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/tokyo.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/tokyo.imageset/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/tokyo.imageset/app_icon.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/usagimaru.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/usagimaru.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/usagimaru.imageset/usagimaru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/usagimaru.imageset/usagimaru.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/vincent_pradeilles.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/vincent_pradeilles.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/vincent_pradeilles.imageset/vincent_pradeilles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/vincent_pradeilles.imageset/vincent_pradeilles.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/yamaken.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/yamaken.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/yamaken.imageset/yamaken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/yamaken.imageset/yamaken.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/yj_cheng.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/yj_cheng.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/yj_cheng.imageset/yj_cheng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/yj_cheng.imageset/yj_cheng.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/yoshimasa_niwa.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/yoshimasa_niwa.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Media.xcassets/yoshimasa_niwa.imageset/yoshimasa_niwa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Media.xcassets/yoshimasa_niwa.imageset/yoshimasa_niwa.png -------------------------------------------------------------------------------- /MyLibrary/Sources/ScheduleFeature/Schedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/ScheduleFeature/Schedule.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/SharedModels/Conference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SharedModels/Conference.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/SharedModels/ConferenceYear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SharedModels/ConferenceYear.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/SharedModels/Organizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SharedModels/Organizer.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/SharedModels/Speaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SharedModels/Speaker.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/SharedModels/Sponsors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SharedModels/Sponsors.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Localizable.xcstrings -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_Luup.imageset/BRONZE_Luup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_Luup.imageset/BRONZE_Luup.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_Luup.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_Luup.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_cybozu.imageset/BRONZE_cybozu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_cybozu.imageset/BRONZE_cybozu.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_cybozu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_cybozu.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_mirrativ.imageset/BRONZE_mirrativ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_mirrativ.imageset/BRONZE_mirrativ.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_mirrativ.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_mirrativ.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_pixiv.imageset/BRONZE_pixiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_pixiv.imageset/BRONZE_pixiv.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_pixiv.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_pixiv.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_smartbank.imageset/BRONZE_smartbank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_smartbank.imageset/BRONZE_smartbank.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_smartbank.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_smartbank.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_zozo.imageset/BRONZE_zozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_zozo.imageset/BRONZE_zozo.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_zozo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/BRONZE_zozo.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_DroidKaigi.imageset/COMMUNITY_DroidKaigi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_DroidKaigi.imageset/COMMUNITY_DroidKaigi.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_DroidKaigi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_DroidKaigi.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Emerge-Tools.imageset/COMMUNITY_Emerge-Tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Emerge-Tools.imageset/COMMUNITY_Emerge-Tools.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Emerge-Tools.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Emerge-Tools.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Flitto.imageset/COMMUNITY_Flitto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Flitto.imageset/COMMUNITY_Flitto.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Flitto.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Flitto.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Scivone.imageset/COMMUNITY_Scivone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Scivone.imageset/COMMUNITY_Scivone.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Scivone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/COMMUNITY_Scivone.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_CyberAgent.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_CyberAgent.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_CyberAgent.imageset/GOLD_CyberAgent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_CyberAgent.imageset/GOLD_CyberAgent.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_DMM.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_DMM.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_DMM.imageset/GOLD_DMM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_DMM.imageset/GOLD_DMM.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_DeNA.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_DeNA.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_DeNA.imageset/GOLD_DeNA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_DeNA.imageset/GOLD_DeNA.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_LINEヤフー.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_LINEヤフー.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_LINEヤフー.imageset/GOLD_LINEヤフー.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_LINEヤフー.imageset/GOLD_LINEヤフー.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_MIXI.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_MIXI.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_MIXI.imageset/GOLD_MIXI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_MIXI.imageset/GOLD_MIXI.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_MagicPod.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_MagicPod.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_MagicPod.imageset/GOLD_MagicPod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_MagicPod.imageset/GOLD_MagicPod.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_ORD.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_ORD.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_ORD.imageset/GOLD_ORD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_ORD.imageset/GOLD_ORD.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_Sentry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_Sentry.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_Sentry.imageset/GOLD_Sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_Sentry.imageset/GOLD_Sentry.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_TVer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_TVer.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_TVer.imageset/GOLD_TVer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_TVer.imageset/GOLD_TVer.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_Tramline.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_Tramline.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_Tramline.imageset/GOLD_Tramline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_Tramline.imageset/GOLD_Tramline.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_kinto-technologies.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_kinto-technologies.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_kinto-technologies.imageset/GOLD_kinto-technologies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_kinto-technologies.imageset/GOLD_kinto-technologies.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_u-next.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_u-next.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_u-next.imageset/GOLD_u-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/GOLD_u-next.imageset/GOLD_u-next.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/PLATINUM_RevenueCat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/PLATINUM_RevenueCat.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/PLATINUM_RevenueCat.imageset/PLATINUM_RevenueCat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/PLATINUM_RevenueCat.imageset/PLATINUM_RevenueCat.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_ moneyforward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_ moneyforward.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_ moneyforward.imageset/SILVER_ moneyforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_ moneyforward.imageset/SILVER_ moneyforward.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_hatena.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_hatena.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_hatena.imageset/SILVER_hatena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_hatena.imageset/SILVER_hatena.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_medley.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_medley.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_medley.imageset/SILVER_medley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_medley.imageset/SILVER_medley.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_mercari.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_mercari.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_mercari.imageset/SILVER_mercari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_mercari.imageset/SILVER_mercari.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_newmo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_newmo.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_newmo.imageset/SILVER_newmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_newmo.imageset/SILVER_newmo.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_nomura.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_nomura.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_nomura.imageset/SILVER_nomura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/SILVER_nomura.imageset/SILVER_nomura.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/STUDENT_SCHOLARSHIP_kishikawakatsumi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/STUDENT_SCHOLARSHIP_kishikawakatsumi.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/STUDENT_SCHOLARSHIP_kishikawakatsumi.imageset/STUDENT_SCHOLARSHIP_kishikawakatsumi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/STUDENT_SCHOLARSHIP_kishikawakatsumi.imageset/STUDENT_SCHOLARSHIP_kishikawakatsumi.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_aaron.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_aaron.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_aaron.imageset/individual_aaron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_aaron.imageset/individual_aaron.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_arasan01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_arasan01.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_arasan01.imageset/individual_arasan01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_arasan01.imageset/individual_arasan01.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_banjun.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_banjun.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_banjun.imageset/individual_banjun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_banjun.imageset/individual_banjun.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_econa77.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_econa77.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_econa77.imageset/individual_econa77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_econa77.imageset/individual_econa77.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_giginet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_giginet.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_giginet.imageset/individual_giginet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_giginet.imageset/individual_giginet.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_hcrane.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_hcrane.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_hcrane.imageset/individual_hcrane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_hcrane.imageset/individual_hcrane.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_jollyjoester.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_jollyjoester.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_jollyjoester.imageset/individual_jollyjoester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_jollyjoester.imageset/individual_jollyjoester.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_justin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_justin.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_justin.imageset/individual_justin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_justin.imageset/individual_justin.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_kishikawa_katsumi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_kishikawa_katsumi.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_kishikawa_katsumi.imageset/individual_kishikawa_katsumi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_kishikawa_katsumi.imageset/individual_kishikawa_katsumi.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_lihsuan_chen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_lihsuan_chen.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_lihsuan_chen.imageset/individual_lihsuan_chen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_lihsuan_chen.imageset/individual_lihsuan_chen.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_lovee.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_lovee.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_lovee.imageset/individual_lovee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_lovee.imageset/individual_lovee.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_nao.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_nao.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_nao.imageset/individual_nao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_nao.imageset/individual_nao.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_noppe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_noppe.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_noppe.imageset/individual_noppe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_noppe.imageset/individual_noppe.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_ooba.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_ooba.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_ooba.imageset/individual_ooba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_ooba.imageset/individual_ooba.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_scenee.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_scenee.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_scenee.imageset/individual_scenee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_scenee.imageset/individual_scenee.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_sean_labastille.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_sean_labastille.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_sean_labastille.imageset/individual_sean_labastille.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_sean_labastille.imageset/individual_sean_labastille.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_shiz.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_shiz.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_shiz.imageset/individual_shiz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_shiz.imageset/individual_shiz.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_shogo4405.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_shogo4405.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_shogo4405.imageset/individual_shogo4405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_shogo4405.imageset/individual_shogo4405.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_steven_hiroyuki_aoki.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_steven_hiroyuki_aoki.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_steven_hiroyuki_aoki.imageset/individual_steven_hiroyuki_aoki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_steven_hiroyuki_aoki.imageset/individual_steven_hiroyuki_aoki.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_tamadeveloper.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_tamadeveloper.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_tamadeveloper.imageset/individual_tamadeveloper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_tamadeveloper.imageset/individual_tamadeveloper.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_youichi_takatsu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_youichi_takatsu.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_youichi_takatsu.imageset/individual_youichi_takatsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_youichi_takatsu.imageset/individual_youichi_takatsu.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_yuji_fujisaka.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_yuji_fujisaka.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_yuji_fujisaka.imageset/individual_yuji_fujisaka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Media.xcassets/individual_yuji_fujisaka.imageset/individual_yuji_fujisaka.png -------------------------------------------------------------------------------- /MyLibrary/Sources/SponsorFeature/Sponsors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/SponsorFeature/Sponsors.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Acknowledgements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Acknowledgements.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Localizable.xcstrings -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Daiki.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Daiki.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Daiki.imageset/Daiki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Daiki.imageset/Daiki.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Maru.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Maru.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Maru.imageset/Maru.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Maru.imageset/Maru.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Naoki.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Naoki.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Naoki.imageset/Naoki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Naoki.imageset/Naoki.png -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Natasha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Natasha.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Natasha.imageset/Natasha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Natasha.imageset/Natasha.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Roku.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Roku.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/Roku.imageset/Roku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/Roku.imageset/Roku.png -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/TimOliver.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/TimOliver.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/TimOliver.imageset/TimOliver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/TimOliver.imageset/TimOliver.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/akkey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/akkey.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/akkey.imageset/akkey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/akkey.imageset/akkey.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/elmetal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/elmetal.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/elmetal.imageset/elmetal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/elmetal.imageset/elmetal.png -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/kazu42.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/kazu42.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/kazu42.imageset/kazu42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/kazu42.imageset/kazu42.jpg -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/logo.imageset/event_riko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/logo.imageset/event_riko.png -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/saku.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/saku.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/saku.imageset/saku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/saku.imageset/saku.png -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/satoshoco.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/satoshoco.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/satoshoco.imageset/satoshoco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/satoshoco.imageset/satoshoco.png -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/sya-ri.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/sya-ri.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/sya-ri.imageset/sya-ri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/sya-ri.imageset/sya-ri.png -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/tamaki.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/tamaki.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/tamaki.imageset/tamaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/tamaki.imageset/tamaki.png -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/yucovin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/yucovin.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/yucovin.imageset/yucovin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/yucovin.imageset/yucovin.png -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/yutailang0119.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/yutailang0119.imageset/Contents.json -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Media.xcassets/yutailang0119.imageset/yutailang0119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Media.xcassets/yutailang0119.imageset/yutailang0119.png -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Organizers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Organizers.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/Profile.swift -------------------------------------------------------------------------------- /MyLibrary/Sources/trySwiftFeature/trySwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Sources/trySwiftFeature/trySwift.swift -------------------------------------------------------------------------------- /MyLibrary/Tests/ScheduleFeatureTests/Mocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Tests/ScheduleFeatureTests/Mocks.swift -------------------------------------------------------------------------------- /MyLibrary/Tests/ScheduleFeatureTests/ScheduleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Tests/ScheduleFeatureTests/ScheduleTests.swift -------------------------------------------------------------------------------- /MyLibrary/Tests/SponsorFeatureTests/Mocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Tests/SponsorFeatureTests/Mocks.swift -------------------------------------------------------------------------------- /MyLibrary/Tests/SponsorFeatureTests/SponsorsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Tests/SponsorFeatureTests/SponsorsTests.swift -------------------------------------------------------------------------------- /MyLibrary/Tests/trySwiftFeatureTests/Mocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Tests/trySwiftFeatureTests/Mocks.swift -------------------------------------------------------------------------------- /MyLibrary/Tests/trySwiftFeatureTests/trySwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/MyLibrary/Tests/trySwiftFeatureTests/trySwiftTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/README.md -------------------------------------------------------------------------------- /Website/Assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Assets/images/favicon.png -------------------------------------------------------------------------------- /Website/Assets/images/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Assets/images/footer.png -------------------------------------------------------------------------------- /Website/Assets/images/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Assets/images/head.png -------------------------------------------------------------------------------- /Website/Assets/images/intersect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Assets/images/intersect.svg -------------------------------------------------------------------------------- /Website/Assets/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Assets/images/title.png -------------------------------------------------------------------------------- /Website/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Package.resolved -------------------------------------------------------------------------------- /Website/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Package.swift -------------------------------------------------------------------------------- /Website/Sources/Components/AccessComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/AccessComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/ApplicationFormsComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/ApplicationFormsComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/CenterAlignedGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/CenterAlignedGrid.swift -------------------------------------------------------------------------------- /Website/Sources/Components/HeaderComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/HeaderComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/LanguageSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/LanguageSelector.swift -------------------------------------------------------------------------------- /Website/Sources/Components/MainFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/MainFooter.swift -------------------------------------------------------------------------------- /Website/Sources/Components/MainFooterWithBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/MainFooterWithBackground.swift -------------------------------------------------------------------------------- /Website/Sources/Components/MainNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/MainNavigationBar.swift -------------------------------------------------------------------------------- /Website/Sources/Components/ModalFooterComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/ModalFooterComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/OrganizerComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/OrganizerComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/OutlineComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/OutlineComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/SectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/SectionHeader.swift -------------------------------------------------------------------------------- /Website/Sources/Components/SectionListComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/SectionListComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/SpeakerComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/SpeakerComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/SpeakerDetailComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/SpeakerDetailComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/SponsorComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/SponsorComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/TicketsComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/TicketsComponent.swift -------------------------------------------------------------------------------- /Website/Sources/Components/TimetableComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Components/TimetableComponent.swift -------------------------------------------------------------------------------- /Website/Sources/ConferenceWebsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/ConferenceWebsite.swift -------------------------------------------------------------------------------- /Website/Sources/Extensions/Date+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Extensions/Date+.swift -------------------------------------------------------------------------------- /Website/Sources/Extensions/Ignite.Image+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Extensions/Ignite.Image+.swift -------------------------------------------------------------------------------- /Website/Sources/Extensions/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Extensions/String+.swift -------------------------------------------------------------------------------- /Website/Sources/Layouts/MainLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Layouts/MainLayout.swift -------------------------------------------------------------------------------- /Website/Sources/Pages/CodeOfConduct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Pages/CodeOfConduct.swift -------------------------------------------------------------------------------- /Website/Sources/Pages/FAQ.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Pages/FAQ.swift -------------------------------------------------------------------------------- /Website/Sources/Pages/Home.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Pages/Home.swift -------------------------------------------------------------------------------- /Website/Sources/Pages/HomeSections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Pages/HomeSections.swift -------------------------------------------------------------------------------- /Website/Sources/Pages/Localization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Pages/Localization.swift -------------------------------------------------------------------------------- /Website/Sources/Pages/PrivacyPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Pages/PrivacyPolicy.swift -------------------------------------------------------------------------------- /Website/Sources/Resources/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/Website/Sources/Resources/Localizable.xcstrings -------------------------------------------------------------------------------- /ci_scripts/ci_post_clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/ci_scripts/ci_post_clone.sh -------------------------------------------------------------------------------- /trySwiftTokyo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/trySwiftTokyo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /trySwiftTokyo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/trySwiftTokyo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /trySwiftTokyo.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryswift/try-swift-tokyo/HEAD/trySwiftTokyo.xcworkspace/xcshareddata/swiftpm/Package.resolved --------------------------------------------------------------------------------